From 6c03cce2073fcf04e583361565789d86a762be01 Mon Sep 17 00:00:00 2001 From: Peter Bierma Date: Tue, 19 May 2026 00:52:14 -0400 Subject: [PATCH] Add support for new lazy import syntax. --- grammar.js | 11 +- package-lock.json | 13 - queries/highlights.scm | 2 + src/grammar.json | 30 + src/node-types.json | 27 + src/parser.c | 123271 +++++++++++++++++----------------- test/corpus/statements.txt | 38 + 7 files changed, 62375 insertions(+), 61017 deletions(-) diff --git a/grammar.js b/grammar.js index 6d830e1c..4e7e45eb 100644 --- a/grammar.js +++ b/grammar.js @@ -134,6 +134,7 @@ module.exports = grammar({ _simple_statement: $ => choice( $.future_import_statement, $.import_statement, + $.lazy_import_statement, $.import_from_statement, $.print_statement, $.assert_statement, @@ -194,6 +195,14 @@ module.exports = grammar({ optional(','), ), + lazy_import_statement: $ => seq( + 'lazy', + choice( + $.import_statement, + $.import_from_statement, + ), + ), + aliased_import: $ => seq( field('name', $.dotted_name), 'as', @@ -1179,7 +1188,7 @@ module.exports = grammar({ $.identifier, )), alias( - choice('type', 'match'), + choice('type', 'match', 'lazy'), $.identifier, ), ), diff --git a/package-lock.json b/package-lock.json index 99d1a8ba..6225f70e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1341,19 +1341,6 @@ "node": ">=6" } }, - "node_modules/tree-sitter": { - "version": "0.25.0", - "resolved": "https://registry.npmjs.org/tree-sitter/-/tree-sitter-0.25.0.tgz", - "integrity": "sha512-PGZZzFW63eElZJDe/b/R/LbsjDDYJa5UEjLZJB59RQsMX+fo0j54fqBPn1MGKav/QNa0JR0zBiVaikYDWCj5KQ==", - "hasInstallScript": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "node-addon-api": "^8.3.0", - "node-gyp-build": "^4.8.4" - } - }, "node_modules/tree-sitter-cli": { "version": "0.25.9", "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.25.9.tgz", diff --git a/queries/highlights.scm b/queries/highlights.scm index af744484..62a21341 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -135,3 +135,5 @@ "match" "case" ] @keyword + +(lazy_import_statement "lazy" @keyword) diff --git a/src/grammar.json b/src/grammar.json index ee72fe78..52d45836 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -80,6 +80,10 @@ "type": "SYMBOL", "name": "import_statement" }, + { + "type": "SYMBOL", + "name": "lazy_import_statement" + }, { "type": "SYMBOL", "name": "import_from_statement" @@ -350,6 +354,28 @@ } ] }, + "lazy_import_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "lazy" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "import_statement" + }, + { + "type": "SYMBOL", + "name": "import_from_statement" + } + ] + } + ] + }, "aliased_import": { "type": "SEQ", "members": [ @@ -6090,6 +6116,10 @@ { "type": "STRING", "value": "match" + }, + { + "type": "STRING", + "value": "lazy" } ] }, diff --git a/src/node-types.json b/src/node-types.json index 2d6ffa7c..aa655226 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -85,6 +85,10 @@ "type": "import_statement", "named": true }, + { + "type": "lazy_import_statement", + "named": true + }, { "type": "nonlocal_statement", "named": true @@ -2236,6 +2240,25 @@ ] } }, + { + "type": "lazy_import_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "import_from_statement", + "named": true + }, + { + "type": "import_statement", + "named": true + } + ] + } + }, { "type": "list", "named": true, @@ -3660,6 +3683,10 @@ "type": "lambda", "named": false }, + { + "type": "lazy", + "named": false + }, { "type": "line_continuation", "named": true, diff --git a/src/parser.c b/src/parser.c index 2dfc1f34..9f559fd0 100644 --- a/src/parser.c +++ b/src/parser.c @@ -7,11 +7,11 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 2788 +#define STATE_COUNT 2792 #define LARGE_STATE_COUNT 185 -#define SYMBOL_COUNT 273 +#define SYMBOL_COUNT 275 #define ALIAS_COUNT 2 -#define TOKEN_COUNT 108 +#define TOKEN_COUNT 109 #define EXTERNAL_TOKEN_COUNT 12 #define FIELD_COUNT 32 #define MAX_ALIAS_SEQUENCE_LENGTH 10 @@ -29,271 +29,273 @@ enum ts_symbol_identifiers { anon_sym_LPAREN = 7, anon_sym_RPAREN = 8, anon_sym_COMMA = 9, - anon_sym_as = 10, - anon_sym_STAR = 11, - anon_sym_print = 12, - anon_sym_GT_GT = 13, - anon_sym_assert = 14, - anon_sym_COLON_EQ = 15, - anon_sym_return = 16, - anon_sym_del = 17, - anon_sym_raise = 18, - anon_sym_pass = 19, - anon_sym_break = 20, - anon_sym_continue = 21, - anon_sym_if = 22, - anon_sym_COLON = 23, - anon_sym_elif = 24, - anon_sym_else = 25, - anon_sym_match = 26, - anon_sym_case = 27, - anon_sym_async = 28, - anon_sym_for = 29, - anon_sym_in = 30, - anon_sym_while = 31, - anon_sym_try = 32, - anon_sym_except = 33, - anon_sym_STAR2 = 34, - anon_sym_finally = 35, - anon_sym_with = 36, - anon_sym_def = 37, - anon_sym_DASH_GT = 38, - anon_sym_STAR_STAR = 39, - anon_sym_global = 40, - anon_sym_nonlocal = 41, - anon_sym_exec = 42, - anon_sym_type = 43, - anon_sym_EQ = 44, - anon_sym_class = 45, - anon_sym_LBRACK = 46, - anon_sym_RBRACK = 47, - anon_sym_AT = 48, - 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_is = 65, - anon_sym_LT = 66, - anon_sym_LT_EQ = 67, - anon_sym_EQ_EQ = 68, - anon_sym_BANG_EQ = 69, - anon_sym_GT_EQ = 70, - anon_sym_GT = 71, - anon_sym_LT_GT = 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, - anon_sym_BSLASH = 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_tuple_expression = 123, - sym_named_expression = 124, - sym__named_expression_lhs = 125, - sym_return_statement = 126, - sym_delete_statement = 127, - sym_raise_statement = 128, - sym_pass_statement = 129, - sym_break_statement = 130, - sym_continue_statement = 131, - sym_if_statement = 132, - sym_elif_clause = 133, - sym_else_clause = 134, - sym_match_statement = 135, - sym__match_block = 136, - sym_case_clause = 137, - sym_for_statement = 138, - sym_while_statement = 139, - sym_try_statement = 140, - sym_except_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__not_in = 194, - sym__is_not = 195, - sym_comparison_operator = 196, - sym_lambda = 197, - sym_lambda_within_for_in_clause = 198, - sym_assignment = 199, - sym_augmented_assignment = 200, - sym_pattern_list = 201, - sym__right_hand_side = 202, - sym_yield = 203, - sym_attribute = 204, - sym_subscript = 205, - sym_slice = 206, - sym_call = 207, - sym_typed_parameter = 208, - sym_type = 209, - sym_splat_type = 210, - sym_generic_type = 211, - sym_union_type = 212, - sym_constrained_type = 213, - sym_member_type = 214, - sym_keyword_argument = 215, - sym_list = 216, - sym_set = 217, - sym_tuple = 218, - sym_dictionary = 219, - sym_pair = 220, - sym_list_comprehension = 221, - sym_dictionary_comprehension = 222, - sym_set_comprehension = 223, - sym_generator_expression = 224, - sym__comprehension_clauses = 225, - sym_parenthesized_expression = 226, - sym__collection_elements = 227, - sym_for_in_clause = 228, - sym_if_clause = 229, - sym_conditional_expression = 230, - sym_concatenated_string = 231, - sym_string = 232, - sym_string_content = 233, - sym_interpolation = 234, - sym__f_expression = 235, - sym__not_escape_sequence = 236, - sym_format_specifier = 237, - sym_await = 238, - sym_positional_separator = 239, - sym_keyword_separator = 240, - aux_sym_module_repeat1 = 241, - aux_sym__simple_statements_repeat1 = 242, - aux_sym_import_prefix_repeat1 = 243, - aux_sym__import_list_repeat1 = 244, - aux_sym_print_statement_repeat1 = 245, - aux_sym_assert_statement_repeat1 = 246, - aux_sym_if_statement_repeat1 = 247, - aux_sym_match_statement_repeat1 = 248, - aux_sym__match_block_repeat1 = 249, - aux_sym_case_clause_repeat1 = 250, - aux_sym_try_statement_repeat1 = 251, - aux_sym_except_clause_repeat1 = 252, - aux_sym_with_clause_repeat1 = 253, - aux_sym_global_statement_repeat1 = 254, - aux_sym_type_parameter_repeat1 = 255, - aux_sym_argument_list_repeat1 = 256, - aux_sym_decorated_definition_repeat1 = 257, - aux_sym_dotted_name_repeat1 = 258, - aux_sym_union_pattern_repeat1 = 259, - aux_sym_dict_pattern_repeat1 = 260, - aux_sym__parameters_repeat1 = 261, - aux_sym__patterns_repeat1 = 262, - aux_sym_comparison_operator_repeat1 = 263, - aux_sym_subscript_repeat1 = 264, - aux_sym_dictionary_repeat1 = 265, - aux_sym__comprehension_clauses_repeat1 = 266, - aux_sym__collection_elements_repeat1 = 267, - aux_sym_for_in_clause_repeat1 = 268, - aux_sym_concatenated_string_repeat1 = 269, - aux_sym_string_repeat1 = 270, - aux_sym_string_content_repeat1 = 271, - aux_sym_format_specifier_repeat1 = 272, - alias_sym_as_pattern_target = 273, - alias_sym_format_expression = 274, + anon_sym_lazy = 10, + anon_sym_as = 11, + anon_sym_STAR = 12, + anon_sym_print = 13, + anon_sym_GT_GT = 14, + anon_sym_assert = 15, + anon_sym_COLON_EQ = 16, + anon_sym_return = 17, + anon_sym_del = 18, + anon_sym_raise = 19, + anon_sym_pass = 20, + anon_sym_break = 21, + anon_sym_continue = 22, + anon_sym_if = 23, + anon_sym_COLON = 24, + anon_sym_elif = 25, + anon_sym_else = 26, + anon_sym_match = 27, + anon_sym_case = 28, + anon_sym_async = 29, + anon_sym_for = 30, + anon_sym_in = 31, + anon_sym_while = 32, + anon_sym_try = 33, + anon_sym_except = 34, + anon_sym_STAR2 = 35, + anon_sym_finally = 36, + anon_sym_with = 37, + anon_sym_def = 38, + anon_sym_DASH_GT = 39, + anon_sym_STAR_STAR = 40, + anon_sym_global = 41, + anon_sym_nonlocal = 42, + anon_sym_exec = 43, + anon_sym_type = 44, + anon_sym_EQ = 45, + anon_sym_class = 46, + anon_sym_LBRACK = 47, + anon_sym_RBRACK = 48, + anon_sym_AT = 49, + anon_sym_DASH = 50, + anon_sym__ = 51, + anon_sym_PIPE = 52, + anon_sym_LBRACE = 53, + anon_sym_RBRACE = 54, + anon_sym_PLUS = 55, + anon_sym_not = 56, + anon_sym_and = 57, + anon_sym_or = 58, + anon_sym_SLASH = 59, + anon_sym_PERCENT = 60, + anon_sym_SLASH_SLASH = 61, + anon_sym_AMP = 62, + anon_sym_CARET = 63, + anon_sym_LT_LT = 64, + anon_sym_TILDE = 65, + anon_sym_is = 66, + anon_sym_LT = 67, + anon_sym_LT_EQ = 68, + anon_sym_EQ_EQ = 69, + anon_sym_BANG_EQ = 70, + anon_sym_GT_EQ = 71, + anon_sym_GT = 72, + anon_sym_LT_GT = 73, + anon_sym_lambda = 74, + anon_sym_PLUS_EQ = 75, + anon_sym_DASH_EQ = 76, + anon_sym_STAR_EQ = 77, + anon_sym_SLASH_EQ = 78, + anon_sym_AT_EQ = 79, + anon_sym_SLASH_SLASH_EQ = 80, + anon_sym_PERCENT_EQ = 81, + anon_sym_STAR_STAR_EQ = 82, + anon_sym_GT_GT_EQ = 83, + anon_sym_LT_LT_EQ = 84, + anon_sym_AMP_EQ = 85, + anon_sym_CARET_EQ = 86, + anon_sym_PIPE_EQ = 87, + anon_sym_yield = 88, + sym_ellipsis = 89, + sym_escape_sequence = 90, + anon_sym_BSLASH = 91, + aux_sym_format_specifier_token1 = 92, + sym_type_conversion = 93, + sym_integer = 94, + sym_float = 95, + anon_sym_await = 96, + sym_true = 97, + sym_false = 98, + sym_none = 99, + sym_comment = 100, + sym_line_continuation = 101, + sym__newline = 102, + sym__indent = 103, + sym__dedent = 104, + sym_string_start = 105, + sym__string_content = 106, + sym_escape_interpolation = 107, + sym_string_end = 108, + sym_module = 109, + sym__statement = 110, + sym__simple_statements = 111, + sym_import_statement = 112, + sym_import_prefix = 113, + sym_relative_import = 114, + sym_future_import_statement = 115, + sym_import_from_statement = 116, + sym__import_list = 117, + sym_lazy_import_statement = 118, + sym_aliased_import = 119, + sym_wildcard_import = 120, + sym_print_statement = 121, + sym_chevron = 122, + sym_assert_statement = 123, + sym_expression_statement = 124, + sym_tuple_expression = 125, + sym_named_expression = 126, + sym__named_expression_lhs = 127, + sym_return_statement = 128, + sym_delete_statement = 129, + sym_raise_statement = 130, + sym_pass_statement = 131, + sym_break_statement = 132, + sym_continue_statement = 133, + sym_if_statement = 134, + sym_elif_clause = 135, + sym_else_clause = 136, + sym_match_statement = 137, + sym__match_block = 138, + sym_case_clause = 139, + sym_for_statement = 140, + sym_while_statement = 141, + sym_try_statement = 142, + sym_except_clause = 143, + sym_finally_clause = 144, + sym_with_statement = 145, + sym_with_clause = 146, + sym_with_item = 147, + sym_function_definition = 148, + sym_parameters = 149, + sym_lambda_parameters = 150, + sym_list_splat = 151, + sym_dictionary_splat = 152, + sym_global_statement = 153, + sym_nonlocal_statement = 154, + sym_exec_statement = 155, + sym_type_alias_statement = 156, + sym_class_definition = 157, + sym_type_parameter = 158, + sym_parenthesized_list_splat = 159, + sym_argument_list = 160, + sym_decorated_definition = 161, + sym_decorator = 162, + sym_block = 163, + sym_expression_list = 164, + sym_dotted_name = 165, + sym_case_pattern = 166, + sym__simple_pattern = 167, + sym__as_pattern = 168, + sym_union_pattern = 169, + sym__list_pattern = 170, + sym__tuple_pattern = 171, + sym_dict_pattern = 172, + sym__key_value_pattern = 173, + sym_keyword_pattern = 174, + sym_splat_pattern = 175, + sym_class_pattern = 176, + sym_complex_pattern = 177, + sym__parameters = 178, + sym__patterns = 179, + sym_parameter = 180, + sym_pattern = 181, + sym_tuple_pattern = 182, + sym_list_pattern = 183, + sym_default_parameter = 184, + sym_typed_default_parameter = 185, + sym_list_splat_pattern = 186, + sym_dictionary_splat_pattern = 187, + sym_as_pattern = 188, + sym__expression_within_for_in_clause = 189, + sym_expression = 190, + sym_primary_expression = 191, + sym_not_operator = 192, + sym_boolean_operator = 193, + sym_binary_operator = 194, + sym_unary_operator = 195, + sym__not_in = 196, + sym__is_not = 197, + sym_comparison_operator = 198, + sym_lambda = 199, + sym_lambda_within_for_in_clause = 200, + sym_assignment = 201, + sym_augmented_assignment = 202, + sym_pattern_list = 203, + sym__right_hand_side = 204, + sym_yield = 205, + sym_attribute = 206, + sym_subscript = 207, + sym_slice = 208, + sym_call = 209, + sym_typed_parameter = 210, + sym_type = 211, + sym_splat_type = 212, + sym_generic_type = 213, + sym_union_type = 214, + sym_constrained_type = 215, + sym_member_type = 216, + sym_keyword_argument = 217, + sym_list = 218, + sym_set = 219, + sym_tuple = 220, + sym_dictionary = 221, + sym_pair = 222, + sym_list_comprehension = 223, + sym_dictionary_comprehension = 224, + sym_set_comprehension = 225, + sym_generator_expression = 226, + sym__comprehension_clauses = 227, + sym_parenthesized_expression = 228, + sym__collection_elements = 229, + sym_for_in_clause = 230, + sym_if_clause = 231, + sym_conditional_expression = 232, + sym_concatenated_string = 233, + sym_string = 234, + sym_string_content = 235, + sym_interpolation = 236, + sym__f_expression = 237, + sym__not_escape_sequence = 238, + sym_format_specifier = 239, + sym_await = 240, + sym_positional_separator = 241, + sym_keyword_separator = 242, + aux_sym_module_repeat1 = 243, + aux_sym__simple_statements_repeat1 = 244, + aux_sym_import_prefix_repeat1 = 245, + aux_sym__import_list_repeat1 = 246, + aux_sym_print_statement_repeat1 = 247, + aux_sym_assert_statement_repeat1 = 248, + aux_sym_if_statement_repeat1 = 249, + aux_sym_match_statement_repeat1 = 250, + aux_sym__match_block_repeat1 = 251, + aux_sym_case_clause_repeat1 = 252, + aux_sym_try_statement_repeat1 = 253, + aux_sym_except_clause_repeat1 = 254, + aux_sym_with_clause_repeat1 = 255, + aux_sym_global_statement_repeat1 = 256, + aux_sym_type_parameter_repeat1 = 257, + aux_sym_argument_list_repeat1 = 258, + aux_sym_decorated_definition_repeat1 = 259, + aux_sym_dotted_name_repeat1 = 260, + aux_sym_union_pattern_repeat1 = 261, + aux_sym_dict_pattern_repeat1 = 262, + aux_sym__parameters_repeat1 = 263, + aux_sym__patterns_repeat1 = 264, + aux_sym_comparison_operator_repeat1 = 265, + aux_sym_subscript_repeat1 = 266, + aux_sym_dictionary_repeat1 = 267, + aux_sym__comprehension_clauses_repeat1 = 268, + aux_sym__collection_elements_repeat1 = 269, + aux_sym_for_in_clause_repeat1 = 270, + aux_sym_concatenated_string_repeat1 = 271, + aux_sym_string_repeat1 = 272, + aux_sym_string_content_repeat1 = 273, + aux_sym_format_specifier_repeat1 = 274, + alias_sym_as_pattern_target = 275, + alias_sym_format_expression = 276, }; static const char * const ts_symbol_names[] = { @@ -307,6 +309,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_LPAREN] = "(", [anon_sym_RPAREN] = ")", [anon_sym_COMMA] = ",", + [anon_sym_lazy] = "lazy", [anon_sym_as] = "as", [anon_sym_STAR] = "*", [anon_sym_print] = "print", @@ -414,6 +417,7 @@ static const char * const ts_symbol_names[] = { [sym_future_import_statement] = "future_import_statement", [sym_import_from_statement] = "import_from_statement", [sym__import_list] = "_import_list", + [sym_lazy_import_statement] = "lazy_import_statement", [sym_aliased_import] = "aliased_import", [sym_wildcard_import] = "wildcard_import", [sym_print_statement] = "print_statement", @@ -585,6 +589,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_LPAREN] = anon_sym_LPAREN, [anon_sym_RPAREN] = anon_sym_RPAREN, [anon_sym_COMMA] = anon_sym_COMMA, + [anon_sym_lazy] = anon_sym_lazy, [anon_sym_as] = anon_sym_as, [anon_sym_STAR] = anon_sym_STAR, [anon_sym_print] = anon_sym_print, @@ -692,6 +697,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_future_import_statement] = sym_future_import_statement, [sym_import_from_statement] = sym_import_from_statement, [sym__import_list] = sym__import_list, + [sym_lazy_import_statement] = sym_lazy_import_statement, [sym_aliased_import] = sym_aliased_import, [sym_wildcard_import] = sym_wildcard_import, [sym_print_statement] = sym_print_statement, @@ -893,6 +899,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_lazy] = { + .visible = true, + .named = false, + }, [anon_sym_as] = { .visible = true, .named = false, @@ -1321,6 +1331,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym_lazy_import_statement] = { + .visible = true, + .named = true, + }, [sym_aliased_import] = { .visible = true, .named = true, @@ -2823,7 +2837,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3] = 3, [4] = 4, [5] = 5, - [6] = 6, + [6] = 3, [7] = 7, [8] = 8, [9] = 9, @@ -2854,7 +2868,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [34] = 34, [35] = 35, [36] = 36, - [37] = 6, + [37] = 37, [38] = 7, [39] = 8, [40] = 9, @@ -2873,34 +2887,34 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [53] = 22, [54] = 23, [55] = 24, - [56] = 26, + [56] = 25, [57] = 27, [58] = 28, [59] = 29, - [60] = 2, - [61] = 32, - [62] = 33, - [63] = 35, - [64] = 3, + [60] = 30, + [61] = 33, + [62] = 62, + [63] = 34, + [64] = 37, [65] = 4, [66] = 5, - [67] = 67, + [67] = 62, [68] = 68, [69] = 69, - [70] = 68, + [70] = 69, [71] = 71, [72] = 71, - [73] = 68, + [73] = 71, [74] = 74, [75] = 75, [76] = 76, [77] = 77, [78] = 78, [79] = 79, - [80] = 76, + [80] = 79, [81] = 78, [82] = 77, - [83] = 79, + [83] = 76, [84] = 84, [85] = 84, [86] = 86, @@ -2927,42 +2941,42 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [107] = 107, [108] = 108, [109] = 109, - [110] = 89, - [111] = 97, - [112] = 105, - [113] = 113, - [114] = 114, - [115] = 88, - [116] = 116, - [117] = 117, - [118] = 118, - [119] = 92, - [120] = 93, - [121] = 95, - [122] = 98, - [123] = 99, - [124] = 101, - [125] = 103, - [126] = 104, - [127] = 107, - [128] = 109, - [129] = 118, - [130] = 130, - [131] = 90, - [132] = 108, - [133] = 114, - [134] = 134, - [135] = 130, - [136] = 94, - [137] = 96, - [138] = 106, - [139] = 139, - [140] = 116, - [141] = 134, + [110] = 110, + [111] = 111, + [112] = 108, + [113] = 97, + [114] = 88, + [115] = 115, + [116] = 100, + [117] = 101, + [118] = 104, + [119] = 119, + [120] = 107, + [121] = 110, + [122] = 115, + [123] = 123, + [124] = 124, + [125] = 94, + [126] = 89, + [127] = 90, + [128] = 91, + [129] = 93, + [130] = 95, + [131] = 96, + [132] = 98, + [133] = 99, + [134] = 102, + [135] = 105, + [136] = 106, + [137] = 123, + [138] = 124, + [139] = 119, + [140] = 140, + [141] = 141, [142] = 142, [143] = 143, - [144] = 143, - [145] = 142, + [144] = 142, + [145] = 143, [146] = 142, [147] = 143, [148] = 148, @@ -2970,331 +2984,331 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [150] = 149, [151] = 151, [152] = 152, - [153] = 153, - [154] = 149, - [155] = 151, - [156] = 152, - [157] = 151, + [153] = 151, + [154] = 151, + [155] = 149, + [156] = 156, + [157] = 152, [158] = 152, - [159] = 153, - [160] = 151, - [161] = 152, + [159] = 159, + [160] = 152, + [161] = 161, [162] = 152, - [163] = 152, - [164] = 164, - [165] = 165, - [166] = 164, - [167] = 151, - [168] = 168, - [169] = 153, - [170] = 149, - [171] = 152, - [172] = 153, - [173] = 153, - [174] = 153, - [175] = 149, - [176] = 165, - [177] = 152, - [178] = 164, - [179] = 151, - [180] = 153, - [181] = 153, - [182] = 151, - [183] = 168, + [163] = 156, + [164] = 159, + [165] = 152, + [166] = 151, + [167] = 156, + [168] = 159, + [169] = 149, + [170] = 152, + [171] = 156, + [172] = 156, + [173] = 161, + [174] = 174, + [175] = 151, + [176] = 149, + [177] = 156, + [178] = 151, + [179] = 152, + [180] = 156, + [181] = 156, + [182] = 174, + [183] = 151, [184] = 184, [185] = 185, [186] = 186, [187] = 187, - [188] = 188, - [189] = 186, + [188] = 185, + [189] = 189, [190] = 190, - [191] = 187, - [192] = 192, + [191] = 191, + [192] = 191, [193] = 190, - [194] = 194, - [195] = 187, - [196] = 188, - [197] = 186, - [198] = 187, - [199] = 188, - [200] = 186, - [201] = 187, - [202] = 188, - [203] = 186, - [204] = 187, - [205] = 188, - [206] = 186, - [207] = 187, - [208] = 188, - [209] = 186, - [210] = 187, - [211] = 188, - [212] = 186, - [213] = 187, - [214] = 188, - [215] = 188, - [216] = 188, - [217] = 188, + [194] = 187, + [195] = 190, + [196] = 187, + [197] = 197, + [198] = 191, + [199] = 190, + [200] = 187, + [201] = 191, + [202] = 190, + [203] = 187, + [204] = 191, + [205] = 190, + [206] = 187, + [207] = 191, + [208] = 190, + [209] = 187, + [210] = 191, + [211] = 190, + [212] = 187, + [213] = 191, + [214] = 190, + [215] = 190, + [216] = 190, + [217] = 191, [218] = 218, [219] = 219, [220] = 220, - [221] = 220, - [222] = 222, - [223] = 220, - [224] = 220, - [225] = 222, - [226] = 222, - [227] = 227, - [228] = 222, - [229] = 227, + [221] = 221, + [222] = 220, + [223] = 221, + [224] = 221, + [225] = 225, + [226] = 221, + [227] = 220, + [228] = 220, + [229] = 225, [230] = 230, [231] = 231, - [232] = 219, + [232] = 232, [233] = 233, [234] = 234, - [235] = 235, - [236] = 236, + [235] = 230, + [236] = 231, [237] = 237, [238] = 233, - [239] = 234, + [239] = 239, [240] = 240, [241] = 241, [242] = 242, [243] = 243, - [244] = 244, - [245] = 245, - [246] = 240, + [244] = 231, + [245] = 230, + [246] = 230, [247] = 247, - [248] = 233, - [249] = 234, + [248] = 248, + [249] = 249, [250] = 233, - [251] = 240, - [252] = 240, - [253] = 253, - [254] = 240, - [255] = 218, - [256] = 231, - [257] = 240, - [258] = 240, - [259] = 259, - [260] = 234, - [261] = 247, - [262] = 247, - [263] = 247, - [264] = 241, - [265] = 230, - [266] = 244, - [267] = 240, + [251] = 251, + [252] = 219, + [253] = 218, + [254] = 233, + [255] = 233, + [256] = 256, + [257] = 233, + [258] = 233, + [259] = 233, + [260] = 241, + [261] = 241, + [262] = 241, + [263] = 237, + [264] = 239, + [265] = 242, + [266] = 251, + [267] = 231, [268] = 268, [269] = 269, [270] = 270, - [271] = 271, - [272] = 268, - [273] = 271, - [274] = 274, + [271] = 268, + [272] = 270, + [273] = 268, + [274] = 269, [275] = 275, - [276] = 274, - [277] = 275, - [278] = 278, - [279] = 269, - [280] = 270, - [281] = 268, - [282] = 268, - [283] = 271, - [284] = 274, - [285] = 275, - [286] = 271, - [287] = 278, - [288] = 269, + [276] = 276, + [277] = 277, + [278] = 275, + [279] = 279, + [280] = 269, + [281] = 279, + [282] = 270, + [283] = 268, + [284] = 276, + [285] = 277, + [286] = 275, + [287] = 269, + [288] = 279, [289] = 270, - [290] = 278, - [291] = 269, - [292] = 278, - [293] = 274, - [294] = 275, - [295] = 278, - [296] = 269, - [297] = 278, - [298] = 269, - [299] = 270, - [300] = 268, - [301] = 271, - [302] = 274, - [303] = 275, - [304] = 278, - [305] = 269, - [306] = 270, - [307] = 268, - [308] = 271, - [309] = 274, - [310] = 275, - [311] = 278, + [290] = 276, + [291] = 277, + [292] = 279, + [293] = 276, + [294] = 269, + [295] = 279, + [296] = 270, + [297] = 268, + [298] = 277, + [299] = 276, + [300] = 277, + [301] = 275, + [302] = 269, + [303] = 279, + [304] = 270, + [305] = 268, + [306] = 276, + [307] = 277, + [308] = 275, + [309] = 269, + [310] = 279, + [311] = 270, [312] = 268, - [313] = 271, - [314] = 274, - [315] = 275, - [316] = 269, - [317] = 274, - [318] = 275, - [319] = 268, - [320] = 270, - [321] = 271, + [313] = 276, + [314] = 277, + [315] = 269, + [316] = 279, + [317] = 270, + [318] = 268, + [319] = 276, + [320] = 277, + [321] = 275, [322] = 322, [323] = 323, - [324] = 168, - [325] = 325, + [324] = 324, + [325] = 323, [326] = 326, - [327] = 325, - [328] = 326, - [329] = 329, - [330] = 330, + [327] = 322, + [328] = 328, + [329] = 323, + [330] = 326, [331] = 331, [332] = 332, [333] = 333, - [334] = 323, - [335] = 332, - [336] = 331, - [337] = 325, - [338] = 322, - [339] = 322, - [340] = 332, - [341] = 323, - [342] = 331, - [343] = 326, + [334] = 333, + [335] = 335, + [336] = 174, + [337] = 328, + [338] = 335, + [339] = 335, + [340] = 326, + [341] = 333, + [342] = 322, + [343] = 328, [344] = 344, - [345] = 344, - [346] = 344, - [347] = 347, - [348] = 348, - [349] = 347, - [350] = 350, - [351] = 350, - [352] = 243, - [353] = 344, - [354] = 347, - [355] = 243, + [345] = 345, + [346] = 346, + [347] = 344, + [348] = 344, + [349] = 346, + [350] = 344, + [351] = 345, + [352] = 345, + [353] = 346, + [354] = 344, + [355] = 345, [356] = 344, - [357] = 344, - [358] = 347, - [359] = 347, - [360] = 347, - [361] = 350, - [362] = 243, + [357] = 345, + [358] = 232, + [359] = 232, + [360] = 344, + [361] = 345, + [362] = 345, [363] = 344, - [364] = 347, - [365] = 344, - [366] = 347, + [364] = 345, + [365] = 365, + [366] = 232, [367] = 367, - [368] = 368, - [369] = 367, + [368] = 367, + [369] = 324, [370] = 370, [371] = 371, - [372] = 370, - [373] = 373, - [374] = 368, - [375] = 367, - [376] = 370, + [372] = 371, + [373] = 371, + [374] = 367, + [375] = 370, + [376] = 371, [377] = 370, - [378] = 370, - [379] = 329, - [380] = 370, - [381] = 368, - [382] = 368, - [383] = 368, - [384] = 367, - [385] = 333, - [386] = 151, - [387] = 370, - [388] = 368, - [389] = 367, - [390] = 367, - [391] = 370, - [392] = 368, - [393] = 367, - [394] = 367, - [395] = 368, - [396] = 396, - [397] = 370, - [398] = 370, - [399] = 399, - [400] = 400, - [401] = 367, - [402] = 368, - [403] = 367, - [404] = 368, + [378] = 378, + [379] = 367, + [380] = 371, + [381] = 367, + [382] = 382, + [383] = 367, + [384] = 370, + [385] = 370, + [386] = 386, + [387] = 371, + [388] = 367, + [389] = 370, + [390] = 371, + [391] = 367, + [392] = 370, + [393] = 370, + [394] = 371, + [395] = 367, + [396] = 370, + [397] = 331, + [398] = 367, + [399] = 371, + [400] = 371, + [401] = 401, + [402] = 370, + [403] = 151, + [404] = 404, [405] = 405, - [406] = 400, - [407] = 168, + [406] = 406, + [407] = 407, [408] = 408, - [409] = 409, + [409] = 151, [410] = 410, - [411] = 168, + [411] = 411, [412] = 412, [413] = 413, - [414] = 329, - [415] = 333, - [416] = 416, - [417] = 151, - [418] = 168, - [419] = 329, - [420] = 333, + [414] = 174, + [415] = 415, + [416] = 406, + [417] = 417, + [418] = 418, + [419] = 407, + [420] = 406, [421] = 421, [422] = 422, - [423] = 423, - [424] = 422, + [423] = 408, + [424] = 405, [425] = 425, [426] = 426, - [427] = 427, + [427] = 410, [428] = 428, - [429] = 429, - [430] = 427, + [429] = 324, + [430] = 430, [431] = 431, - [432] = 432, + [432] = 174, [433] = 433, - [434] = 422, - [435] = 429, - [436] = 431, - [437] = 432, - [438] = 438, - [439] = 439, - [440] = 429, + [434] = 434, + [435] = 331, + [436] = 408, + [437] = 404, + [438] = 174, + [439] = 407, + [440] = 331, [441] = 441, - [442] = 442, - [443] = 431, - [444] = 444, - [445] = 445, - [446] = 432, - [447] = 433, + [442] = 405, + [443] = 434, + [444] = 441, + [445] = 405, + [446] = 405, + [447] = 434, [448] = 405, - [449] = 433, - [450] = 433, - [451] = 433, - [452] = 433, - [453] = 433, - [454] = 433, - [455] = 433, - [456] = 433, - [457] = 444, + [449] = 405, + [450] = 405, + [451] = 405, + [452] = 405, + [453] = 453, + [454] = 431, + [455] = 455, + [456] = 456, + [457] = 455, [458] = 410, - [459] = 427, + [459] = 324, [460] = 460, [461] = 461, - [462] = 333, - [463] = 463, - [464] = 460, + [462] = 462, + [463] = 331, + [464] = 464, [465] = 465, - [466] = 465, + [466] = 460, [467] = 467, - [468] = 467, - [469] = 461, - [470] = 470, + [468] = 465, + [469] = 464, + [470] = 462, [471] = 471, - [472] = 329, - [473] = 463, - [474] = 474, - [475] = 470, - [476] = 474, - [477] = 471, + [472] = 467, + [473] = 473, + [474] = 461, + [475] = 471, + [476] = 324, + [477] = 477, [478] = 478, [479] = 479, [480] = 480, @@ -3303,245 +3317,245 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [483] = 483, [484] = 484, [485] = 485, - [486] = 486, + [486] = 478, [487] = 487, [488] = 488, [489] = 489, - [490] = 480, + [490] = 490, [491] = 491, - [492] = 479, + [492] = 492, [493] = 493, [494] = 494, - [495] = 495, + [495] = 488, [496] = 496, [497] = 497, [498] = 498, [499] = 499, - [500] = 481, + [500] = 500, [501] = 501, - [502] = 499, - [503] = 481, - [504] = 479, - [505] = 493, - [506] = 506, - [507] = 494, - [508] = 495, - [509] = 496, - [510] = 510, - [511] = 499, - [512] = 481, - [513] = 513, - [514] = 479, - [515] = 493, - [516] = 494, - [517] = 495, - [518] = 496, - [519] = 499, - [520] = 481, - [521] = 521, - [522] = 522, - [523] = 493, - [524] = 494, - [525] = 495, - [526] = 496, - [527] = 499, - [528] = 481, - [529] = 479, - [530] = 493, + [502] = 502, + [503] = 483, + [504] = 492, + [505] = 494, + [506] = 498, + [507] = 479, + [508] = 482, + [509] = 488, + [510] = 490, + [511] = 502, + [512] = 483, + [513] = 492, + [514] = 494, + [515] = 498, + [516] = 516, + [517] = 482, + [518] = 488, + [519] = 502, + [520] = 483, + [521] = 492, + [522] = 494, + [523] = 498, + [524] = 482, + [525] = 525, + [526] = 488, + [527] = 527, + [528] = 502, + [529] = 483, + [530] = 492, [531] = 494, - [532] = 495, - [533] = 496, - [534] = 499, - [535] = 481, - [536] = 479, - [537] = 493, + [532] = 498, + [533] = 482, + [534] = 488, + [535] = 502, + [536] = 483, + [537] = 492, [538] = 494, - [539] = 495, - [540] = 496, - [541] = 499, - [542] = 481, - [543] = 501, - [544] = 479, - [545] = 545, - [546] = 546, - [547] = 513, - [548] = 493, - [549] = 487, - [550] = 498, - [551] = 483, - [552] = 482, - [553] = 479, - [554] = 546, - [555] = 494, + [539] = 498, + [540] = 482, + [541] = 488, + [542] = 502, + [543] = 483, + [544] = 492, + [545] = 494, + [546] = 498, + [547] = 482, + [548] = 488, + [549] = 485, + [550] = 516, + [551] = 479, + [552] = 552, + [553] = 553, + [554] = 554, + [555] = 555, [556] = 556, - [557] = 495, - [558] = 558, - [559] = 493, - [560] = 558, - [561] = 496, - [562] = 494, - [563] = 495, - [564] = 496, - [565] = 546, - [566] = 497, - [567] = 501, - [568] = 545, - [569] = 483, - [570] = 570, - [571] = 571, - [572] = 546, - [573] = 497, - [574] = 501, - [575] = 545, - [576] = 483, - [577] = 501, - [578] = 545, - [579] = 501, - [580] = 545, - [581] = 581, - [582] = 582, - [583] = 497, - [584] = 584, - [585] = 501, + [557] = 484, + [558] = 481, + [559] = 559, + [560] = 560, + [561] = 561, + [562] = 562, + [563] = 527, + [564] = 564, + [565] = 565, + [566] = 480, + [567] = 479, + [568] = 553, + [569] = 477, + [570] = 516, + [571] = 555, + [572] = 554, + [573] = 573, + [574] = 482, + [575] = 480, + [576] = 479, + [577] = 477, + [578] = 516, + [579] = 555, + [580] = 477, + [581] = 516, + [582] = 477, + [583] = 516, + [584] = 555, + [585] = 477, [586] = 586, - [587] = 497, - [588] = 588, - [589] = 588, - [590] = 501, - [591] = 545, - [592] = 592, - [593] = 556, - [594] = 499, - [595] = 556, - [596] = 556, - [597] = 556, - [598] = 556, - [599] = 556, - [600] = 556, - [601] = 491, - [602] = 584, - [603] = 489, - [604] = 522, - [605] = 605, - [606] = 606, - [607] = 607, + [587] = 552, + [588] = 477, + [589] = 487, + [590] = 502, + [591] = 493, + [592] = 493, + [593] = 493, + [594] = 493, + [595] = 493, + [596] = 493, + [597] = 493, + [598] = 489, + [599] = 502, + [600] = 565, + [601] = 480, + [602] = 483, + [603] = 500, + [604] = 492, + [605] = 494, + [606] = 498, + [607] = 477, [608] = 608, [609] = 609, - [610] = 607, + [610] = 610, [611] = 611, - [612] = 612, + [612] = 609, [613] = 613, - [614] = 612, - [615] = 615, + [614] = 613, + [615] = 610, [616] = 616, [617] = 608, - [618] = 609, - [619] = 611, - [620] = 615, - [621] = 613, - [622] = 622, + [618] = 611, + [619] = 619, + [620] = 620, + [621] = 621, + [622] = 619, [623] = 623, [624] = 624, [625] = 625, [626] = 626, [627] = 627, - [628] = 628, - [629] = 629, + [628] = 620, + [629] = 621, [630] = 630, - [631] = 631, - [632] = 632, - [633] = 632, - [634] = 634, - [635] = 635, + [631] = 623, + [632] = 624, + [633] = 626, + [634] = 627, + [635] = 630, [636] = 636, - [637] = 628, - [638] = 622, + [637] = 637, + [638] = 638, [639] = 639, [640] = 640, - [641] = 629, + [641] = 219, [642] = 642, [643] = 643, - [644] = 640, - [645] = 631, - [646] = 623, + [644] = 644, + [645] = 645, + [646] = 646, [647] = 647, [648] = 648, - [649] = 639, - [650] = 642, - [651] = 648, + [649] = 649, + [650] = 650, + [651] = 651, [652] = 652, - [653] = 653, + [653] = 637, [654] = 654, [655] = 655, [656] = 656, [657] = 657, - [658] = 654, - [659] = 655, - [660] = 660, + [658] = 639, + [659] = 659, + [660] = 218, [661] = 661, [662] = 662, [663] = 663, [664] = 664, [665] = 665, - [666] = 660, - [667] = 663, - [668] = 664, - [669] = 669, - [670] = 656, - [671] = 671, - [672] = 672, - [673] = 653, + [666] = 666, + [667] = 667, + [668] = 668, + [669] = 657, + [670] = 670, + [671] = 649, + [672] = 655, + [673] = 666, [674] = 674, - [675] = 657, - [676] = 676, - [677] = 677, - [678] = 672, - [679] = 671, - [680] = 662, - [681] = 661, - [682] = 682, - [683] = 218, - [684] = 674, - [685] = 219, - [686] = 665, - [687] = 682, - [688] = 669, - [689] = 676, - [690] = 677, - [691] = 691, - [692] = 691, + [675] = 675, + [676] = 650, + [677] = 652, + [678] = 654, + [679] = 646, + [680] = 648, + [681] = 636, + [682] = 638, + [683] = 661, + [684] = 662, + [685] = 685, + [686] = 663, + [687] = 664, + [688] = 665, + [689] = 667, + [690] = 668, + [691] = 670, + [692] = 659, [693] = 693, [694] = 694, - [695] = 695, + [695] = 693, [696] = 696, [697] = 697, [698] = 698, - [699] = 699, - [700] = 700, - [701] = 698, + [699] = 697, + [700] = 698, + [701] = 701, [702] = 702, - [703] = 699, - [704] = 697, + [703] = 703, + [704] = 704, [705] = 705, - [706] = 693, - [707] = 702, - [708] = 708, - [709] = 696, - [710] = 695, - [711] = 705, - [712] = 708, - [713] = 700, - [714] = 714, - [715] = 714, - [716] = 694, - [717] = 717, - [718] = 718, + [706] = 704, + [707] = 707, + [708] = 696, + [709] = 709, + [710] = 710, + [711] = 710, + [712] = 703, + [713] = 702, + [714] = 709, + [715] = 694, + [716] = 705, + [717] = 701, + [718] = 707, [719] = 719, - [720] = 718, - [721] = 719, - [722] = 717, - [723] = 723, - [724] = 724, + [720] = 720, + [721] = 721, + [722] = 720, + [723] = 719, + [724] = 721, [725] = 725, [726] = 726, [727] = 727, @@ -3550,1771 +3564,1771 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [730] = 730, [731] = 731, [732] = 732, - [733] = 733, - [734] = 734, - [735] = 735, + [733] = 727, + [734] = 729, + [735] = 732, [736] = 736, - [737] = 737, + [737] = 736, [738] = 738, [739] = 739, [740] = 740, - [741] = 741, + [741] = 739, [742] = 742, - [743] = 731, - [744] = 733, + [743] = 740, + [744] = 744, [745] = 745, - [746] = 746, - [747] = 747, - [748] = 736, - [749] = 749, + [746] = 744, + [747] = 745, + [748] = 748, + [749] = 748, [750] = 750, [751] = 751, [752] = 752, - [753] = 737, + [753] = 753, [754] = 754, [755] = 755, - [756] = 754, + [756] = 756, [757] = 757, [758] = 758, - [759] = 755, - [760] = 219, - [761] = 727, + [759] = 219, + [760] = 760, + [761] = 761, [762] = 762, [763] = 763, - [764] = 741, + [764] = 764, [765] = 765, [766] = 766, [767] = 767, - [768] = 768, - [769] = 769, + [768] = 750, + [769] = 752, [770] = 770, - [771] = 725, - [772] = 728, + [771] = 753, + [772] = 754, [773] = 773, - [774] = 774, - [775] = 732, + [774] = 755, + [775] = 756, [776] = 776, - [777] = 777, + [777] = 758, [778] = 778, - [779] = 745, - [780] = 749, - [781] = 781, - [782] = 750, - [783] = 783, - [784] = 784, - [785] = 785, - [786] = 757, - [787] = 758, + [779] = 779, + [780] = 780, + [781] = 760, + [782] = 761, + [783] = 725, + [784] = 726, + [785] = 762, + [786] = 786, + [787] = 763, [788] = 788, - [789] = 762, + [789] = 764, [790] = 765, - [791] = 767, - [792] = 739, - [793] = 788, - [794] = 770, + [791] = 766, + [792] = 792, + [793] = 793, + [794] = 767, [795] = 795, - [796] = 742, - [797] = 778, + [796] = 796, + [797] = 770, [798] = 798, - [799] = 723, - [800] = 785, - [801] = 801, - [802] = 735, - [803] = 803, + [799] = 799, + [800] = 773, + [801] = 776, + [802] = 802, + [803] = 742, [804] = 804, [805] = 805, [806] = 806, [807] = 807, - [808] = 747, - [809] = 809, - [810] = 776, - [811] = 798, - [812] = 801, + [808] = 778, + [809] = 779, + [810] = 780, + [811] = 786, + [812] = 788, [813] = 813, - [814] = 766, - [815] = 738, - [816] = 730, - [817] = 734, - [818] = 804, - [819] = 805, - [820] = 774, - [821] = 783, + [814] = 814, + [815] = 815, + [816] = 816, + [817] = 793, + [818] = 738, + [819] = 795, + [820] = 796, + [821] = 798, [822] = 822, - [823] = 806, - [824] = 781, - [825] = 807, - [826] = 218, - [827] = 740, - [828] = 773, - [829] = 809, - [830] = 822, - [831] = 777, - [832] = 784, - [833] = 726, - [834] = 751, - [835] = 768, - [836] = 746, - [837] = 803, - [838] = 769, - [839] = 729, - [840] = 752, - [841] = 813, - [842] = 803, - [843] = 729, - [844] = 724, - [845] = 795, - [846] = 763, - [847] = 847, - [848] = 847, - [849] = 847, - [850] = 847, - [851] = 847, - [852] = 847, - [853] = 853, - [854] = 853, + [823] = 802, + [824] = 824, + [825] = 825, + [826] = 806, + [827] = 807, + [828] = 799, + [829] = 829, + [830] = 813, + [831] = 814, + [832] = 815, + [833] = 751, + [834] = 728, + [835] = 824, + [836] = 825, + [837] = 804, + [838] = 730, + [839] = 805, + [840] = 731, + [841] = 816, + [842] = 757, + [843] = 829, + [844] = 218, + [845] = 822, + [846] = 757, + [847] = 829, + [848] = 792, + [849] = 849, + [850] = 849, + [851] = 849, + [852] = 849, + [853] = 849, + [854] = 849, [855] = 855, [856] = 855, - [857] = 855, - [858] = 855, - [859] = 859, - [860] = 855, - [861] = 855, - [862] = 855, - [863] = 855, - [864] = 864, + [857] = 857, + [858] = 857, + [859] = 857, + [860] = 857, + [861] = 857, + [862] = 857, + [863] = 857, + [864] = 857, [865] = 865, [866] = 866, [867] = 867, - [868] = 868, - [869] = 859, - [870] = 870, + [868] = 867, + [869] = 869, + [870] = 865, [871] = 871, - [872] = 871, - [873] = 864, - [874] = 865, + [872] = 872, + [873] = 873, + [874] = 874, [875] = 866, - [876] = 876, - [877] = 877, - [878] = 878, - [879] = 879, - [880] = 878, - [881] = 865, - [882] = 866, - [883] = 867, - [884] = 877, - [885] = 868, - [886] = 864, - [887] = 878, - [888] = 877, - [889] = 879, - [890] = 865, + [876] = 867, + [877] = 871, + [878] = 873, + [879] = 869, + [880] = 869, + [881] = 873, + [882] = 871, + [883] = 872, + [884] = 873, + [885] = 874, + [886] = 866, + [887] = 867, + [888] = 874, + [889] = 866, + [890] = 874, [891] = 866, - [892] = 878, - [893] = 879, - [894] = 870, - [895] = 865, - [896] = 871, - [897] = 866, - [898] = 867, - [899] = 876, - [900] = 868, - [901] = 864, - [902] = 877, - [903] = 878, - [904] = 879, - [905] = 865, - [906] = 870, + [892] = 892, + [893] = 893, + [894] = 867, + [895] = 895, + [896] = 896, + [897] = 865, + [898] = 893, + [899] = 867, + [900] = 866, + [901] = 869, + [902] = 865, + [903] = 871, + [904] = 872, + [905] = 873, + [906] = 874, [907] = 866, - [908] = 871, - [909] = 870, - [910] = 871, - [911] = 867, - [912] = 868, - [913] = 876, - [914] = 914, - [915] = 876, - [916] = 870, - [917] = 914, - [918] = 871, - [919] = 864, - [920] = 877, - [921] = 878, - [922] = 879, - [923] = 865, - [924] = 866, - [925] = 870, - [926] = 871, - [927] = 870, - [928] = 870, - [929] = 871, + [908] = 867, + [909] = 869, + [910] = 865, + [911] = 892, + [912] = 871, + [913] = 892, + [914] = 893, + [915] = 895, + [916] = 895, + [917] = 872, + [918] = 874, + [919] = 869, + [920] = 865, + [921] = 871, + [922] = 892, + [923] = 872, + [924] = 893, + [925] = 873, + [926] = 895, + [927] = 872, + [928] = 874, + [929] = 866, [930] = 867, - [931] = 876, - [932] = 870, - [933] = 868, - [934] = 870, - [935] = 859, - [936] = 864, - [937] = 877, - [938] = 878, - [939] = 879, - [940] = 865, - [941] = 866, - [942] = 859, - [943] = 879, - [944] = 867, - [945] = 868, - [946] = 867, - [947] = 864, - [948] = 867, - [949] = 868, - [950] = 864, - [951] = 870, - [952] = 870, - [953] = 870, - [954] = 868, - [955] = 877, - [956] = 878, - [957] = 879, - [958] = 877, - [959] = 859, - [960] = 960, - [961] = 961, - [962] = 859, - [963] = 859, - [964] = 859, + [931] = 892, + [932] = 893, + [933] = 873, + [934] = 892, + [935] = 893, + [936] = 892, + [937] = 893, + [938] = 892, + [939] = 893, + [940] = 892, + [941] = 892, + [942] = 942, + [943] = 896, + [944] = 895, + [945] = 869, + [946] = 869, + [947] = 865, + [948] = 871, + [949] = 892, + [950] = 892, + [951] = 892, + [952] = 865, + [953] = 871, + [954] = 872, + [955] = 872, + [956] = 873, + [957] = 874, + [958] = 942, + [959] = 942, + [960] = 942, + [961] = 942, + [962] = 942, + [963] = 942, + [964] = 942, [965] = 965, - [966] = 960, + [966] = 966, [967] = 967, - [968] = 960, - [969] = 961, + [968] = 967, + [969] = 966, [970] = 970, - [971] = 965, - [972] = 972, - [973] = 961, - [974] = 974, + [971] = 971, + [972] = 966, + [973] = 973, + [974] = 966, [975] = 975, - [976] = 859, + [976] = 976, [977] = 977, [978] = 965, - [979] = 979, - [980] = 960, - [981] = 961, - [982] = 965, + [979] = 942, + [980] = 980, + [981] = 967, + [982] = 982, [983] = 983, - [984] = 984, + [984] = 965, [985] = 985, - [986] = 986, - [987] = 984, - [988] = 970, - [989] = 974, - [990] = 636, - [991] = 859, - [992] = 859, - [993] = 961, - [994] = 970, - [995] = 979, - [996] = 996, - [997] = 960, + [986] = 967, + [987] = 965, + [988] = 967, + [989] = 989, + [990] = 970, + [991] = 975, + [992] = 976, + [993] = 967, + [994] = 977, + [995] = 980, + [996] = 982, + [997] = 967, [998] = 983, - [999] = 967, - [1000] = 972, - [1001] = 979, - [1002] = 984, - [1003] = 983, - [1004] = 859, - [1005] = 972, - [1006] = 974, - [1007] = 1007, - [1008] = 625, - [1009] = 960, - [1010] = 985, - [1011] = 1011, - [1012] = 961, - [1013] = 634, - [1014] = 626, - [1015] = 630, - [1016] = 984, - [1017] = 961, - [1018] = 1018, - [1019] = 960, - [1020] = 975, - [1021] = 977, - [1022] = 967, - [1023] = 624, - [1024] = 977, - [1025] = 967, - [1026] = 965, + [999] = 985, + [1000] = 942, + [1001] = 1001, + [1002] = 1002, + [1003] = 973, + [1004] = 685, + [1005] = 971, + [1006] = 640, + [1007] = 643, + [1008] = 651, + [1009] = 644, + [1010] = 645, + [1011] = 942, + [1012] = 1012, + [1013] = 965, + [1014] = 970, + [1015] = 975, + [1016] = 976, + [1017] = 965, + [1018] = 977, + [1019] = 1019, + [1020] = 656, + [1021] = 980, + [1022] = 982, + [1023] = 983, + [1024] = 970, + [1025] = 973, + [1026] = 975, [1027] = 985, - [1028] = 635, - [1029] = 1029, + [1028] = 971, + [1029] = 976, [1030] = 977, - [1031] = 1031, - [1032] = 985, - [1033] = 965, - [1034] = 979, - [1035] = 970, - [1036] = 975, - [1037] = 972, - [1038] = 974, - [1039] = 983, - [1040] = 975, - [1041] = 965, - [1042] = 1042, - [1043] = 630, - [1044] = 967, - [1045] = 985, - [1046] = 970, - [1047] = 972, - [1048] = 1007, - [1049] = 974, - [1050] = 975, - [1051] = 979, - [1052] = 984, - [1053] = 983, - [1054] = 977, - [1055] = 1055, - [1056] = 634, - [1057] = 1031, - [1058] = 967, - [1059] = 985, - [1060] = 970, - [1061] = 972, - [1062] = 974, - [1063] = 975, - [1064] = 979, - [1065] = 983, - [1066] = 624, - [1067] = 625, - [1068] = 961, - [1069] = 626, - [1070] = 1018, - [1071] = 996, - [1072] = 1029, - [1073] = 635, - [1074] = 636, + [1031] = 980, + [1032] = 966, + [1033] = 982, + [1034] = 983, + [1035] = 966, + [1036] = 973, + [1037] = 1037, + [1038] = 942, + [1039] = 965, + [1040] = 971, + [1041] = 1041, + [1042] = 985, + [1043] = 966, + [1044] = 644, + [1045] = 989, + [1046] = 1046, + [1047] = 965, + [1048] = 1048, + [1049] = 967, + [1050] = 675, + [1051] = 1051, + [1052] = 973, + [1053] = 977, + [1054] = 1054, + [1055] = 971, + [1056] = 1001, + [1057] = 1057, + [1058] = 989, + [1059] = 1059, + [1060] = 1002, + [1061] = 980, + [1062] = 1062, + [1063] = 1037, + [1064] = 1041, + [1065] = 1012, + [1066] = 1019, + [1067] = 982, + [1068] = 1068, + [1069] = 1069, + [1070] = 1070, + [1071] = 983, + [1072] = 1072, + [1073] = 980, + [1074] = 985, [1075] = 1075, - [1076] = 1076, - [1077] = 1077, - [1078] = 616, - [1079] = 960, - [1080] = 965, - [1081] = 647, - [1082] = 1011, - [1083] = 986, - [1084] = 1084, - [1085] = 1085, + [1076] = 983, + [1077] = 985, + [1078] = 1078, + [1079] = 1079, + [1080] = 1080, + [1081] = 1079, + [1082] = 1082, + [1083] = 1083, + [1084] = 1019, + [1085] = 970, [1086] = 1086, [1087] = 1087, [1088] = 1088, - [1089] = 1089, - [1090] = 1090, - [1091] = 1011, - [1092] = 986, - [1093] = 1093, - [1094] = 1094, - [1095] = 1095, + [1089] = 624, + [1090] = 626, + [1091] = 685, + [1092] = 1092, + [1093] = 642, + [1094] = 647, + [1095] = 1037, [1096] = 1096, - [1097] = 1097, - [1098] = 1098, - [1099] = 984, - [1100] = 1007, + [1097] = 975, + [1098] = 1012, + [1099] = 976, + [1100] = 1037, [1101] = 1101, [1102] = 1102, - [1103] = 967, + [1103] = 1041, [1104] = 1104, - [1105] = 985, - [1106] = 970, - [1107] = 972, - [1108] = 1108, - [1109] = 1109, - [1110] = 608, - [1111] = 609, - [1112] = 643, - [1113] = 652, - [1114] = 1018, - [1115] = 1031, - [1116] = 1116, - [1117] = 996, - [1118] = 1029, - [1119] = 974, - [1120] = 1120, - [1121] = 975, - [1122] = 984, - [1123] = 979, - [1124] = 977, - [1125] = 983, - [1126] = 1007, - [1127] = 977, - [1128] = 1018, - [1129] = 996, - [1130] = 1029, - [1131] = 1131, - [1132] = 1132, - [1133] = 1133, - [1134] = 1087, - [1135] = 1042, - [1136] = 1136, - [1137] = 1137, - [1138] = 1138, - [1139] = 1031, - [1140] = 1140, - [1141] = 1141, - [1142] = 1132, - [1143] = 1094, - [1144] = 1007, - [1145] = 647, - [1146] = 1055, - [1147] = 1077, - [1148] = 984, - [1149] = 977, - [1150] = 1075, - [1151] = 1085, - [1152] = 1031, - [1153] = 1089, - [1154] = 1090, - [1155] = 967, - [1156] = 985, - [1157] = 970, - [1158] = 972, - [1159] = 974, - [1160] = 975, - [1161] = 979, - [1162] = 983, - [1163] = 643, - [1164] = 652, - [1165] = 643, - [1166] = 652, + [1105] = 1012, + [1106] = 1106, + [1107] = 977, + [1108] = 980, + [1109] = 982, + [1110] = 625, + [1111] = 982, + [1112] = 1112, + [1113] = 1113, + [1114] = 1114, + [1115] = 1115, + [1116] = 983, + [1117] = 1117, + [1118] = 985, + [1119] = 1001, + [1120] = 1002, + [1121] = 640, + [1122] = 973, + [1123] = 1123, + [1124] = 973, + [1125] = 643, + [1126] = 971, + [1127] = 971, + [1128] = 651, + [1129] = 976, + [1130] = 645, + [1131] = 966, + [1132] = 989, + [1133] = 1080, + [1134] = 970, + [1135] = 975, + [1136] = 1019, + [1137] = 976, + [1138] = 656, + [1139] = 1139, + [1140] = 977, + [1141] = 970, + [1142] = 975, + [1143] = 1041, + [1144] = 1104, + [1145] = 1019, + [1146] = 675, + [1147] = 1112, + [1148] = 973, + [1149] = 971, + [1150] = 656, + [1151] = 644, + [1152] = 1059, + [1153] = 1106, + [1154] = 989, + [1155] = 1048, + [1156] = 1086, + [1157] = 1051, + [1158] = 970, + [1159] = 975, + [1160] = 976, + [1161] = 977, + [1162] = 980, + [1163] = 982, + [1164] = 983, + [1165] = 985, + [1166] = 642, [1167] = 647, - [1168] = 647, - [1169] = 1018, - [1170] = 1018, - [1171] = 996, - [1172] = 1029, - [1173] = 1084, - [1174] = 1095, - [1175] = 1137, - [1176] = 1141, - [1177] = 1102, - [1178] = 634, - [1179] = 996, - [1180] = 1093, - [1181] = 1029, - [1182] = 1031, - [1183] = 1136, - [1184] = 609, - [1185] = 1096, - [1186] = 1101, - [1187] = 1116, - [1188] = 1120, - [1189] = 1140, - [1190] = 1133, - [1191] = 1076, - [1192] = 1097, - [1193] = 1104, - [1194] = 1138, - [1195] = 1094, - [1196] = 1055, - [1197] = 1075, - [1198] = 624, - [1199] = 1084, - [1200] = 1095, - [1201] = 1093, - [1202] = 1096, - [1203] = 1097, - [1204] = 1108, - [1205] = 1109, - [1206] = 1085, - [1207] = 625, - [1208] = 629, - [1209] = 626, - [1210] = 642, - [1211] = 640, - [1212] = 643, - [1213] = 652, - [1214] = 647, - [1215] = 616, - [1216] = 1018, - [1217] = 996, - [1218] = 1029, - [1219] = 630, - [1220] = 631, - [1221] = 1137, - [1222] = 1141, - [1223] = 1102, - [1224] = 616, - [1225] = 1087, - [1226] = 636, - [1227] = 630, - [1228] = 1042, - [1229] = 1011, - [1230] = 1136, - [1231] = 1077, - [1232] = 1101, - [1233] = 1116, - [1234] = 1120, - [1235] = 1108, - [1236] = 1109, - [1237] = 1140, - [1238] = 1133, - [1239] = 1132, - [1240] = 1104, - [1241] = 630, - [1242] = 1076, - [1243] = 986, - [1244] = 1011, - [1245] = 986, - [1246] = 1104, - [1247] = 1138, - [1248] = 1094, - [1249] = 1055, - [1250] = 1075, - [1251] = 1084, - [1252] = 1095, - [1253] = 634, - [1254] = 1093, - [1255] = 1096, - [1256] = 1097, - [1257] = 624, - [1258] = 625, - [1259] = 626, - [1260] = 1108, - [1261] = 1109, - [1262] = 635, - [1263] = 636, - [1264] = 608, - [1265] = 1085, - [1266] = 609, - [1267] = 647, - [1268] = 1077, - [1269] = 1138, - [1270] = 1137, - [1271] = 1141, - [1272] = 1102, - [1273] = 634, - [1274] = 1007, - [1275] = 635, - [1276] = 636, - [1277] = 1031, - [1278] = 624, - [1279] = 625, - [1280] = 1101, - [1281] = 626, - [1282] = 1116, - [1283] = 1120, - [1284] = 1089, - [1285] = 1090, - [1286] = 1140, - [1287] = 1133, - [1288] = 1132, - [1289] = 1076, - [1290] = 1089, - [1291] = 1090, - [1292] = 608, - [1293] = 635, - [1294] = 1007, - [1295] = 625, - [1296] = 629, - [1297] = 643, - [1298] = 630, - [1299] = 1089, - [1300] = 1090, - [1301] = 1138, - [1302] = 627, - [1303] = 631, - [1304] = 627, - [1305] = 1094, - [1306] = 1055, - [1307] = 1137, - [1308] = 1075, - [1309] = 652, - [1310] = 630, - [1311] = 1084, - [1312] = 1108, - [1313] = 1141, - [1314] = 1140, - [1315] = 1133, - [1316] = 1132, - [1317] = 1095, - [1318] = 1093, + [1168] = 642, + [1169] = 647, + [1170] = 626, + [1171] = 640, + [1172] = 1117, + [1173] = 675, + [1174] = 675, + [1175] = 1072, + [1176] = 1123, + [1177] = 643, + [1178] = 644, + [1179] = 645, + [1180] = 651, + [1181] = 656, + [1182] = 1082, + [1183] = 1059, + [1184] = 1088, + [1185] = 1106, + [1186] = 1078, + [1187] = 1051, + [1188] = 1096, + [1189] = 1069, + [1190] = 1068, + [1191] = 1057, + [1192] = 1070, + [1193] = 1139, + [1194] = 685, + [1195] = 1102, + [1196] = 1046, + [1197] = 1062, + [1198] = 640, + [1199] = 643, + [1200] = 651, + [1201] = 1083, + [1202] = 1115, + [1203] = 644, + [1204] = 645, + [1205] = 1088, + [1206] = 1048, + [1207] = 675, + [1208] = 1112, + [1209] = 1117, + [1210] = 1072, + [1211] = 1123, + [1212] = 1086, + [1213] = 1054, + [1214] = 1075, + [1215] = 1104, + [1216] = 1082, + [1217] = 1037, + [1218] = 1041, + [1219] = 1078, + [1220] = 1012, + [1221] = 1096, + [1222] = 1059, + [1223] = 1069, + [1224] = 1068, + [1225] = 624, + [1226] = 989, + [1227] = 1001, + [1228] = 645, + [1229] = 1051, + [1230] = 1002, + [1231] = 1048, + [1232] = 1086, + [1233] = 1117, + [1234] = 1072, + [1235] = 1123, + [1236] = 1057, + [1237] = 1082, + [1238] = 1070, + [1239] = 1139, + [1240] = 1102, + [1241] = 1046, + [1242] = 1062, + [1243] = 1113, + [1244] = 1078, + [1245] = 1096, + [1246] = 1069, + [1247] = 1068, + [1248] = 1057, + [1249] = 1083, + [1250] = 1070, + [1251] = 1139, + [1252] = 1115, + [1253] = 1102, + [1254] = 1046, + [1255] = 1062, + [1256] = 1083, + [1257] = 1115, + [1258] = 1088, + [1259] = 1079, + [1260] = 657, + [1261] = 659, + [1262] = 989, + [1263] = 625, + [1264] = 638, + [1265] = 1019, + [1266] = 1054, + [1267] = 642, + [1268] = 647, + [1269] = 675, + [1270] = 1080, + [1271] = 1037, + [1272] = 1041, + [1273] = 1012, + [1274] = 1113, + [1275] = 1112, + [1276] = 1075, + [1277] = 625, + [1278] = 1019, + [1279] = 624, + [1280] = 626, + [1281] = 1037, + [1282] = 1041, + [1283] = 1012, + [1284] = 656, + [1285] = 1001, + [1286] = 639, + [1287] = 1054, + [1288] = 1002, + [1289] = 1075, + [1290] = 1104, + [1291] = 685, + [1292] = 685, + [1293] = 640, + [1294] = 643, + [1295] = 651, + [1296] = 1106, + [1297] = 1082, + [1298] = 1048, + [1299] = 1048, + [1300] = 1117, + [1301] = 1072, + [1302] = 1048, + [1303] = 1086, + [1304] = 1086, + [1305] = 674, + [1306] = 642, + [1307] = 647, + [1308] = 1078, + [1309] = 657, + [1310] = 685, + [1311] = 1311, + [1312] = 1312, + [1313] = 640, + [1314] = 643, + [1315] = 1123, + [1316] = 659, + [1317] = 651, + [1318] = 656, [1319] = 1096, - [1320] = 1097, - [1321] = 1109, - [1322] = 1137, - [1323] = 634, - [1324] = 624, - [1325] = 1140, - [1326] = 626, - [1327] = 1094, - [1328] = 635, - [1329] = 636, - [1330] = 634, - [1331] = 1102, - [1332] = 1101, - [1333] = 624, - [1334] = 1085, - [1335] = 625, - [1336] = 626, - [1337] = 1077, - [1338] = 635, - [1339] = 636, - [1340] = 1093, - [1341] = 1076, - [1342] = 1088, - [1343] = 1007, - [1344] = 1098, - [1345] = 1086, - [1346] = 1018, - [1347] = 1116, - [1348] = 1085, - [1349] = 647, - [1350] = 1120, - [1351] = 1140, - [1352] = 1133, - [1353] = 1132, - [1354] = 1096, - [1355] = 1031, - [1356] = 1076, - [1357] = 647, - [1358] = 1104, - [1359] = 629, - [1360] = 1089, - [1361] = 1090, - [1362] = 642, - [1363] = 1133, - [1364] = 640, - [1365] = 647, - [1366] = 631, - [1367] = 1085, - [1368] = 1089, - [1369] = 1090, - [1370] = 1137, - [1371] = 1141, - [1372] = 1102, - [1373] = 1097, - [1374] = 642, - [1375] = 1055, - [1376] = 1104, - [1377] = 640, - [1378] = 1075, - [1379] = 647, - [1380] = 996, - [1381] = 1029, - [1382] = 1141, - [1383] = 1101, - [1384] = 1077, - [1385] = 1138, - [1386] = 1094, - [1387] = 643, - [1388] = 652, - [1389] = 1055, - [1390] = 1075, - [1391] = 1084, - [1392] = 1392, - [1393] = 1393, - [1394] = 1095, - [1395] = 1084, - [1396] = 1132, - [1397] = 1104, - [1398] = 629, - [1399] = 1138, - [1400] = 631, - [1401] = 642, - [1402] = 1093, - [1403] = 1108, - [1404] = 1109, - [1405] = 1101, - [1406] = 1102, - [1407] = 1095, + [1320] = 638, + [1321] = 1069, + [1322] = 1068, + [1323] = 1057, + [1324] = 1082, + [1325] = 1112, + [1326] = 644, + [1327] = 645, + [1328] = 1078, + [1329] = 1019, + [1330] = 1046, + [1331] = 675, + [1332] = 1086, + [1333] = 989, + [1334] = 1070, + [1335] = 657, + [1336] = 659, + [1337] = 638, + [1338] = 685, + [1339] = 1123, + [1340] = 675, + [1341] = 640, + [1342] = 639, + [1343] = 643, + [1344] = 651, + [1345] = 1083, + [1346] = 644, + [1347] = 645, + [1348] = 1087, + [1349] = 1088, + [1350] = 1096, + [1351] = 1139, + [1352] = 1069, + [1353] = 642, + [1354] = 647, + [1355] = 1068, + [1356] = 1057, + [1357] = 1037, + [1358] = 1041, + [1359] = 1012, + [1360] = 1054, + [1361] = 1112, + [1362] = 1075, + [1363] = 1102, + [1364] = 1104, + [1365] = 1059, + [1366] = 639, + [1367] = 1083, + [1368] = 1115, + [1369] = 1062, + [1370] = 1112, + [1371] = 675, + [1372] = 1092, + [1373] = 1115, + [1374] = 1059, + [1375] = 1046, + [1376] = 1106, + [1377] = 1088, + [1378] = 1114, + [1379] = 657, + [1380] = 1051, + [1381] = 659, + [1382] = 638, + [1383] = 1051, + [1384] = 1117, + [1385] = 1117, + [1386] = 642, + [1387] = 647, + [1388] = 675, + [1389] = 1072, + [1390] = 1123, + [1391] = 1062, + [1392] = 1106, + [1393] = 1082, + [1394] = 1054, + [1395] = 674, + [1396] = 639, + [1397] = 1075, + [1398] = 1054, + [1399] = 1075, + [1400] = 1059, + [1401] = 1104, + [1402] = 1104, + [1403] = 1072, + [1404] = 1106, + [1405] = 1078, + [1406] = 1070, + [1407] = 1139, [1408] = 1096, - [1409] = 1097, - [1410] = 1108, - [1411] = 643, - [1412] = 652, - [1413] = 1116, - [1414] = 1109, - [1415] = 1120, - [1416] = 1077, - [1417] = 640, - [1418] = 1116, - [1419] = 1120, - [1420] = 1076, - [1421] = 1101, - [1422] = 1075, - [1423] = 1087, - [1424] = 1042, - [1425] = 643, - [1426] = 1136, - [1427] = 627, - [1428] = 635, - [1429] = 636, - [1430] = 652, - [1431] = 1076, - [1432] = 1042, - [1433] = 1102, - [1434] = 1084, - [1435] = 1136, - [1436] = 1077, - [1437] = 1087, - [1438] = 1095, - [1439] = 1085, - [1440] = 625, - [1441] = 626, - [1442] = 1096, - [1443] = 1097, - [1444] = 1137, - [1445] = 1089, - [1446] = 1090, - [1447] = 1104, - [1448] = 1132, - [1449] = 1116, - [1450] = 1138, - [1451] = 1087, - [1452] = 1042, - [1453] = 1136, - [1454] = 1120, - [1455] = 1141, - [1456] = 647, - [1457] = 1140, - [1458] = 1133, - [1459] = 1094, - [1460] = 1055, - [1461] = 1108, - [1462] = 1109, - [1463] = 630, - [1464] = 634, - [1465] = 627, - [1466] = 624, - [1467] = 1093, - [1468] = 640, - [1469] = 1392, - [1470] = 630, - [1471] = 1393, - [1472] = 634, - [1473] = 624, - [1474] = 625, - [1475] = 629, - [1476] = 626, - [1477] = 635, - [1478] = 636, - [1479] = 643, - [1480] = 652, - [1481] = 642, - [1482] = 631, - [1483] = 647, - [1484] = 647, - [1485] = 647, - [1486] = 647, - [1487] = 1487, - [1488] = 1488, + [1409] = 1069, + [1410] = 1068, + [1411] = 1051, + [1412] = 1057, + [1413] = 1102, + [1414] = 1070, + [1415] = 1139, + [1416] = 1102, + [1417] = 1046, + [1418] = 1062, + [1419] = 656, + [1420] = 1083, + [1421] = 1115, + [1422] = 1088, + [1423] = 1075, + [1424] = 1088, + [1425] = 675, + [1426] = 1079, + [1427] = 674, + [1428] = 1083, + [1429] = 1070, + [1430] = 1078, + [1431] = 1112, + [1432] = 1139, + [1433] = 1115, + [1434] = 1080, + [1435] = 1096, + [1436] = 1069, + [1437] = 1113, + [1438] = 1102, + [1439] = 1059, + [1440] = 1046, + [1441] = 1079, + [1442] = 1106, + [1443] = 1082, + [1444] = 1080, + [1445] = 1113, + [1446] = 1068, + [1447] = 1057, + [1448] = 1062, + [1449] = 642, + [1450] = 656, + [1451] = 1048, + [1452] = 1086, + [1453] = 685, + [1454] = 640, + [1455] = 643, + [1456] = 651, + [1457] = 644, + [1458] = 645, + [1459] = 1079, + [1460] = 1080, + [1461] = 1113, + [1462] = 1117, + [1463] = 674, + [1464] = 647, + [1465] = 1104, + [1466] = 1072, + [1467] = 1123, + [1468] = 1054, + [1469] = 1051, + [1470] = 640, + [1471] = 642, + [1472] = 647, + [1473] = 651, + [1474] = 657, + [1475] = 644, + [1476] = 659, + [1477] = 675, + [1478] = 638, + [1479] = 1311, + [1480] = 645, + [1481] = 675, + [1482] = 1312, + [1483] = 675, + [1484] = 643, + [1485] = 639, + [1486] = 675, + [1487] = 685, + [1488] = 656, [1489] = 1489, [1490] = 1490, [1491] = 1491, [1492] = 1492, [1493] = 1493, [1494] = 1494, - [1495] = 1495, - [1496] = 1489, - [1497] = 1492, - [1498] = 1498, - [1499] = 1498, - [1500] = 1490, - [1501] = 1491, - [1502] = 1502, - [1503] = 1502, - [1504] = 1495, - [1505] = 1493, - [1506] = 1494, - [1507] = 1498, - [1508] = 1495, - [1509] = 1489, - [1510] = 1492, - [1511] = 1498, - [1512] = 1491, - [1513] = 1490, - [1514] = 1491, - [1515] = 1492, - [1516] = 1502, - [1517] = 1494, - [1518] = 1502, - [1519] = 1490, - [1520] = 1493, - [1521] = 1494, - [1522] = 1493, - [1523] = 1495, - [1524] = 1489, - [1525] = 1525, - [1526] = 1525, + [1495] = 1491, + [1496] = 1496, + [1497] = 1497, + [1498] = 1492, + [1499] = 1496, + [1500] = 1500, + [1501] = 1500, + [1502] = 1497, + [1503] = 1493, + [1504] = 1504, + [1505] = 1496, + [1506] = 1506, + [1507] = 1497, + [1508] = 1491, + [1509] = 1492, + [1510] = 1494, + [1511] = 1493, + [1512] = 1506, + [1513] = 1504, + [1514] = 1496, + [1515] = 1506, + [1516] = 1500, + [1517] = 1504, + [1518] = 1500, + [1519] = 1494, + [1520] = 1504, + [1521] = 1491, + [1522] = 1494, + [1523] = 1497, + [1524] = 1493, + [1525] = 1492, + [1526] = 1506, [1527] = 1527, - [1528] = 1525, - [1529] = 1529, + [1528] = 1528, + [1529] = 1528, [1530] = 1530, - [1531] = 1531, + [1531] = 1528, [1532] = 1532, [1533] = 1533, - [1534] = 1532, - [1535] = 1531, + [1534] = 1533, + [1535] = 1535, [1536] = 1536, - [1537] = 1531, - [1538] = 1531, - [1539] = 1536, - [1540] = 1536, - [1541] = 1533, - [1542] = 1530, - [1543] = 1532, - [1544] = 1530, + [1537] = 1532, + [1538] = 1532, + [1539] = 1535, + [1540] = 1540, + [1541] = 1540, + [1542] = 1532, + [1543] = 1536, + [1544] = 1536, [1545] = 1533, - [1546] = 1530, - [1547] = 1533, - [1548] = 1532, - [1549] = 1536, - [1550] = 1550, - [1551] = 1551, + [1546] = 1536, + [1547] = 1540, + [1548] = 1533, + [1549] = 1535, + [1550] = 1540, + [1551] = 1535, [1552] = 1552, [1553] = 1553, - [1554] = 1551, - [1555] = 1551, - [1556] = 1552, - [1557] = 1552, - [1558] = 1552, - [1559] = 1559, - [1560] = 1551, - [1561] = 1559, + [1554] = 1554, + [1555] = 1553, + [1556] = 1556, + [1557] = 1553, + [1558] = 1556, + [1559] = 1556, + [1560] = 1556, + [1561] = 1561, [1562] = 1553, - [1563] = 1559, - [1564] = 1553, - [1565] = 1559, - [1566] = 1553, - [1567] = 1553, - [1568] = 1553, - [1569] = 1559, - [1570] = 1559, - [1571] = 1559, - [1572] = 1553, - [1573] = 1559, - [1574] = 642, - [1575] = 629, - [1576] = 1393, - [1577] = 1577, - [1578] = 640, - [1579] = 1553, - [1580] = 631, - [1581] = 1392, - [1582] = 1582, - [1583] = 1583, - [1584] = 1584, + [1563] = 1561, + [1564] = 1554, + [1565] = 1561, + [1566] = 1554, + [1567] = 1561, + [1568] = 1554, + [1569] = 1561, + [1570] = 1561, + [1571] = 1554, + [1572] = 1572, + [1573] = 1554, + [1574] = 1561, + [1575] = 1575, + [1576] = 1554, + [1577] = 657, + [1578] = 659, + [1579] = 639, + [1580] = 1311, + [1581] = 638, + [1582] = 1554, + [1583] = 1312, + [1584] = 1561, [1585] = 1585, [1586] = 1586, [1587] = 1587, - [1588] = 643, - [1589] = 652, - [1590] = 647, - [1591] = 1392, - [1592] = 1592, - [1593] = 1393, + [1588] = 1588, + [1589] = 1589, + [1590] = 642, + [1591] = 647, + [1592] = 675, + [1593] = 1593, [1594] = 1594, - [1595] = 1392, - [1596] = 629, - [1597] = 642, - [1598] = 640, - [1599] = 631, - [1600] = 647, - [1601] = 1585, - [1602] = 1586, + [1595] = 1595, + [1596] = 1311, + [1597] = 1597, + [1598] = 657, + [1599] = 659, + [1600] = 638, + [1601] = 639, + [1602] = 675, [1603] = 1587, - [1604] = 629, - [1605] = 642, - [1606] = 640, - [1607] = 631, - [1608] = 1393, - [1609] = 629, - [1610] = 642, + [1604] = 1588, + [1605] = 1589, + [1606] = 657, + [1607] = 659, + [1608] = 638, + [1609] = 639, + [1610] = 1311, [1611] = 1611, - [1612] = 640, - [1613] = 631, - [1614] = 1614, - [1615] = 1615, - [1616] = 643, - [1617] = 652, - [1618] = 1392, - [1619] = 1393, - [1620] = 1615, - [1621] = 1615, - [1622] = 1615, - [1623] = 1615, - [1624] = 1615, - [1625] = 1615, - [1626] = 1615, - [1627] = 1615, - [1628] = 1615, - [1629] = 1592, - [1630] = 1630, - [1631] = 1584, - [1632] = 1630, - [1633] = 1633, - [1634] = 1594, - [1635] = 1635, - [1636] = 1630, - [1637] = 1630, - [1638] = 1614, - [1639] = 1639, - [1640] = 1583, - [1641] = 1630, - [1642] = 1630, - [1643] = 1611, - [1644] = 1630, - [1645] = 1635, - [1646] = 1635, - [1647] = 1630, - [1648] = 1633, + [1612] = 657, + [1613] = 659, + [1614] = 638, + [1615] = 639, + [1616] = 1312, + [1617] = 1593, + [1618] = 642, + [1619] = 647, + [1620] = 1311, + [1621] = 1312, + [1622] = 1593, + [1623] = 1593, + [1624] = 1593, + [1625] = 1593, + [1626] = 1593, + [1627] = 1593, + [1628] = 1593, + [1629] = 1593, + [1630] = 1312, + [1631] = 1631, + [1632] = 1594, + [1633] = 1611, + [1634] = 1634, + [1635] = 1634, + [1636] = 1636, + [1637] = 1597, + [1638] = 1636, + [1639] = 1586, + [1640] = 1636, + [1641] = 1636, + [1642] = 1636, + [1643] = 1636, + [1644] = 1636, + [1645] = 1631, + [1646] = 1636, + [1647] = 1595, + [1648] = 1631, [1649] = 1649, - [1650] = 1650, + [1650] = 1585, [1651] = 1651, [1652] = 1652, - [1653] = 1651, + [1653] = 1653, [1654] = 1652, - [1655] = 1655, + [1655] = 1653, [1656] = 1656, - [1657] = 1655, + [1657] = 1657, [1658] = 1658, - [1659] = 1659, + [1659] = 1657, [1660] = 1660, [1661] = 1661, [1662] = 1662, [1663] = 1663, [1664] = 1664, [1665] = 1665, - [1666] = 1666, - [1667] = 1658, - [1668] = 1658, - [1669] = 1658, - [1670] = 1658, - [1671] = 1658, - [1672] = 1658, - [1673] = 1658, + [1666] = 1663, + [1667] = 1663, + [1668] = 1663, + [1669] = 1663, + [1670] = 1670, + [1671] = 1663, + [1672] = 1672, + [1673] = 1663, [1674] = 1674, - [1675] = 1675, + [1675] = 1663, [1676] = 1676, - [1677] = 1675, - [1678] = 1678, - [1679] = 1676, - [1680] = 1680, + [1677] = 1677, + [1678] = 1660, + [1679] = 1679, + [1680] = 1677, [1681] = 1681, - [1682] = 1675, + [1682] = 1682, [1683] = 1683, - [1684] = 1678, - [1685] = 1676, - [1686] = 1681, - [1687] = 1675, - [1688] = 1678, - [1689] = 1676, - [1690] = 1681, - [1691] = 1675, - [1692] = 1678, - [1693] = 1676, - [1694] = 1681, - [1695] = 1664, - [1696] = 1675, - [1697] = 1665, - [1698] = 1678, - [1699] = 1676, - [1700] = 1681, - [1701] = 1675, - [1702] = 1678, - [1703] = 1676, - [1704] = 1681, - [1705] = 1660, - [1706] = 1675, - [1707] = 1678, - [1708] = 1676, - [1709] = 1681, - [1710] = 1675, - [1711] = 1678, + [1684] = 1683, + [1685] = 1682, + [1686] = 1686, + [1687] = 1679, + [1688] = 1682, + [1689] = 1683, + [1690] = 1686, + [1691] = 1679, + [1692] = 1682, + [1693] = 1683, + [1694] = 1686, + [1695] = 1679, + [1696] = 1682, + [1697] = 1683, + [1698] = 1686, + [1699] = 1679, + [1700] = 1661, + [1701] = 1686, + [1702] = 1683, + [1703] = 1686, + [1704] = 1679, + [1705] = 1679, + [1706] = 1682, + [1707] = 1683, + [1708] = 1686, + [1709] = 1679, + [1710] = 1664, + [1711] = 1682, [1712] = 1683, - [1713] = 1678, - [1714] = 1683, - [1715] = 1666, - [1716] = 1683, - [1717] = 1674, - [1718] = 1683, - [1719] = 1683, - [1720] = 1661, - [1721] = 1662, - [1722] = 1683, - [1723] = 1663, - [1724] = 1683, - [1725] = 1681, - [1726] = 1726, - [1727] = 1659, - [1728] = 1661, - [1729] = 1729, - [1730] = 1660, - [1731] = 1659, - [1732] = 1674, - [1733] = 1664, - [1734] = 1664, - [1735] = 1662, - [1736] = 1663, - [1737] = 1661, - [1738] = 1738, - [1739] = 1662, - [1740] = 1740, - [1741] = 1663, - [1742] = 1659, - [1743] = 1665, - [1744] = 1660, - [1745] = 1729, - [1746] = 1666, - [1747] = 1666, - [1748] = 1674, - [1749] = 1749, - [1750] = 1665, + [1713] = 1686, + [1714] = 1679, + [1715] = 1682, + [1716] = 1677, + [1717] = 1717, + [1718] = 1677, + [1719] = 1670, + [1720] = 1677, + [1721] = 1665, + [1722] = 1677, + [1723] = 1662, + [1724] = 1677, + [1725] = 1672, + [1726] = 1674, + [1727] = 1677, + [1728] = 1676, + [1729] = 1682, + [1730] = 1661, + [1731] = 1661, + [1732] = 1662, + [1733] = 1670, + [1734] = 1734, + [1735] = 1672, + [1736] = 1660, + [1737] = 1737, + [1738] = 1674, + [1739] = 1676, + [1740] = 1734, + [1741] = 1664, + [1742] = 1670, + [1743] = 1664, + [1744] = 1744, + [1745] = 1660, + [1746] = 1665, + [1747] = 1662, + [1748] = 1672, + [1749] = 1674, + [1750] = 1676, [1751] = 1751, - [1752] = 1666, - [1753] = 1665, - [1754] = 1660, - [1755] = 1674, - [1756] = 1674, - [1757] = 1729, - [1758] = 1659, - [1759] = 1674, + [1752] = 1665, + [1753] = 1753, + [1754] = 1665, + [1755] = 1664, + [1756] = 1664, + [1757] = 1665, + [1758] = 1662, + [1759] = 1734, [1760] = 1661, - [1761] = 1761, - [1762] = 1662, - [1763] = 1763, - [1764] = 1661, - [1765] = 1665, - [1766] = 1666, - [1767] = 1666, - [1768] = 1665, - [1769] = 1663, + [1761] = 1662, + [1762] = 1672, + [1763] = 1660, + [1764] = 1674, + [1765] = 1660, + [1766] = 1766, + [1767] = 1676, + [1768] = 1672, + [1769] = 1769, [1770] = 1661, - [1771] = 1664, - [1772] = 1662, - [1773] = 1660, - [1774] = 1659, - [1775] = 1659, - [1776] = 1664, - [1777] = 1660, + [1771] = 1662, + [1772] = 1672, + [1773] = 1674, + [1774] = 1676, + [1775] = 1661, + [1776] = 1674, + [1777] = 1664, [1778] = 1778, - [1779] = 1664, - [1780] = 1780, - [1781] = 1662, - [1782] = 1663, + [1779] = 1676, + [1780] = 1734, + [1781] = 1670, + [1782] = 1670, [1783] = 1783, - [1784] = 1784, - [1785] = 1729, - [1786] = 1663, + [1784] = 1670, + [1785] = 1660, + [1786] = 1786, [1787] = 1787, - [1788] = 1788, + [1788] = 1665, [1789] = 1789, - [1790] = 1784, + [1790] = 1790, [1791] = 1791, [1792] = 1792, [1793] = 1793, - [1794] = 1794, - [1795] = 1787, - [1796] = 1749, - [1797] = 1666, - [1798] = 1788, - [1799] = 1787, - [1800] = 1793, - [1801] = 1674, - [1802] = 1661, - [1803] = 1662, - [1804] = 1663, - [1805] = 1780, - [1806] = 1787, + [1794] = 1793, + [1795] = 1790, + [1796] = 1790, + [1797] = 1790, + [1798] = 1798, + [1799] = 1799, + [1800] = 1665, + [1801] = 1801, + [1802] = 1737, + [1803] = 1664, + [1804] = 1790, + [1805] = 1805, + [1806] = 1806, [1807] = 1807, - [1808] = 1794, - [1809] = 1809, + [1808] = 1670, + [1809] = 1786, [1810] = 1810, - [1811] = 1784, - [1812] = 1787, - [1813] = 1793, - [1814] = 1794, - [1815] = 1787, - [1816] = 1787, - [1817] = 1817, - [1818] = 1818, + [1811] = 1662, + [1812] = 1790, + [1813] = 1791, + [1814] = 1790, + [1815] = 1790, + [1816] = 1816, + [1817] = 1672, + [1818] = 1801, [1819] = 1819, - [1820] = 1820, - [1821] = 1787, - [1822] = 1659, - [1823] = 1787, + [1820] = 1674, + [1821] = 1790, + [1822] = 1769, + [1823] = 1791, [1824] = 1824, - [1825] = 1787, - [1826] = 1664, - [1827] = 1809, - [1828] = 1665, - [1829] = 1809, - [1830] = 1830, - [1831] = 1831, - [1832] = 1784, - [1833] = 1660, + [1825] = 1786, + [1826] = 1676, + [1827] = 1793, + [1828] = 1660, + [1829] = 1829, + [1830] = 1786, + [1831] = 1829, + [1832] = 1661, + [1833] = 1829, [1834] = 1834, - [1835] = 1835, - [1836] = 1836, + [1835] = 1790, + [1836] = 1787, [1837] = 1837, [1838] = 1838, - [1839] = 1837, + [1839] = 1787, [1840] = 1840, - [1841] = 1841, + [1841] = 1778, [1842] = 1842, - [1843] = 1789, + [1843] = 1778, [1844] = 1844, - [1845] = 1751, - [1846] = 1783, - [1847] = 1844, - [1848] = 1848, - [1849] = 1844, - [1850] = 1838, - [1851] = 1851, - [1852] = 1844, - [1853] = 1783, - [1854] = 1844, - [1855] = 1778, - [1856] = 1749, - [1857] = 1857, + [1845] = 1845, + [1846] = 1846, + [1847] = 1847, + [1848] = 1846, + [1849] = 1849, + [1850] = 1850, + [1851] = 1842, + [1852] = 1852, + [1853] = 1853, + [1854] = 1849, + [1855] = 1845, + [1856] = 1853, + [1857] = 1799, [1858] = 1858, - [1859] = 1844, - [1860] = 1860, - [1861] = 1860, - [1862] = 1844, - [1863] = 1789, + [1859] = 1753, + [1860] = 1778, + [1861] = 1858, + [1862] = 1862, + [1863] = 1837, [1864] = 1864, - [1865] = 1778, - [1866] = 1749, - [1867] = 1860, - [1868] = 1864, - [1869] = 1851, - [1870] = 1842, - [1871] = 1871, - [1872] = 1857, - [1873] = 1837, - [1874] = 1840, - [1875] = 1838, - [1876] = 1876, + [1865] = 1753, + [1866] = 1866, + [1867] = 1837, + [1868] = 1737, + [1869] = 1858, + [1870] = 1799, + [1871] = 1837, + [1872] = 1872, + [1873] = 1845, + [1874] = 1853, + [1875] = 1837, + [1876] = 1850, [1877] = 1877, - [1878] = 1848, - [1879] = 1879, - [1880] = 1783, - [1881] = 1881, - [1882] = 1882, - [1883] = 1751, - [1884] = 1844, - [1885] = 1751, - [1886] = 1789, - [1887] = 1848, - [1888] = 1778, - [1889] = 1889, - [1890] = 1890, + [1878] = 1878, + [1879] = 1847, + [1880] = 1880, + [1881] = 1837, + [1882] = 1852, + [1883] = 1787, + [1884] = 1799, + [1885] = 1885, + [1886] = 1737, + [1887] = 1837, + [1888] = 1753, + [1889] = 1846, + [1890] = 1837, [1891] = 1891, [1892] = 1892, [1893] = 1893, [1894] = 1894, [1895] = 1895, - [1896] = 1780, + [1896] = 1787, [1897] = 1897, - [1898] = 1898, - [1899] = 1899, + [1898] = 1586, + [1899] = 1778, [1900] = 1900, [1901] = 1901, [1902] = 1902, [1903] = 1903, [1904] = 1904, [1905] = 1905, - [1906] = 1889, + [1906] = 1906, [1907] = 1907, - [1908] = 1834, - [1909] = 1901, - [1910] = 1763, + [1908] = 1908, + [1909] = 1753, + [1910] = 1834, [1911] = 1911, - [1912] = 1901, - [1913] = 1913, - [1914] = 1902, - [1915] = 1902, - [1916] = 1893, - [1917] = 1858, + [1912] = 1912, + [1913] = 1897, + [1914] = 1914, + [1915] = 1915, + [1916] = 1916, + [1917] = 1917, [1918] = 1918, [1919] = 1919, - [1920] = 1920, - [1921] = 1890, - [1922] = 1922, - [1923] = 1783, - [1924] = 1810, + [1920] = 1891, + [1921] = 1921, + [1922] = 1844, + [1923] = 1766, + [1924] = 1924, [1925] = 1925, [1926] = 1926, - [1927] = 1858, - [1928] = 1780, + [1927] = 1927, + [1928] = 1928, [1929] = 1929, - [1930] = 1922, - [1931] = 1858, - [1932] = 1929, - [1933] = 1933, - [1934] = 1934, - [1935] = 1935, - [1936] = 1936, + [1930] = 1891, + [1931] = 1792, + [1932] = 1932, + [1933] = 1919, + [1934] = 1915, + [1935] = 1912, + [1936] = 1769, [1937] = 1937, - [1938] = 1751, - [1939] = 1939, + [1938] = 1938, + [1939] = 1895, [1940] = 1940, [1941] = 1941, [1942] = 1942, - [1943] = 1831, + [1943] = 1943, [1944] = 1944, - [1945] = 1945, - [1946] = 1892, - [1947] = 1942, - [1948] = 1948, - [1949] = 1893, + [1945] = 1880, + [1946] = 1944, + [1947] = 1904, + [1948] = 1880, + [1949] = 1949, [1950] = 1950, - [1951] = 1951, - [1952] = 1893, - [1953] = 1763, - [1954] = 1954, - [1955] = 1955, - [1956] = 1918, + [1951] = 1915, + [1952] = 1952, + [1953] = 1844, + [1954] = 1917, + [1955] = 1918, + [1956] = 1956, [1957] = 1957, - [1958] = 1903, - [1959] = 1911, - [1960] = 1913, - [1961] = 1948, - [1962] = 1920, - [1963] = 1890, - [1964] = 1939, - [1965] = 1948, - [1966] = 1584, + [1958] = 1958, + [1959] = 1792, + [1960] = 1960, + [1961] = 1961, + [1962] = 1962, + [1963] = 1769, + [1964] = 1964, + [1965] = 1964, + [1966] = 1894, [1967] = 1967, - [1968] = 1968, - [1969] = 1969, + [1968] = 1949, + [1969] = 1952, [1970] = 1970, - [1971] = 1941, - [1972] = 1763, - [1973] = 1942, - [1974] = 1929, - [1975] = 1583, - [1976] = 1976, + [1971] = 1844, + [1972] = 1766, + [1973] = 1766, + [1974] = 1880, + [1975] = 1894, + [1976] = 1915, [1977] = 1977, - [1978] = 1978, - [1979] = 1979, - [1980] = 1834, - [1981] = 1945, - [1982] = 1982, - [1983] = 1983, - [1984] = 1889, - [1985] = 1918, - [1986] = 1986, - [1987] = 1834, - [1988] = 1810, - [1989] = 1939, - [1990] = 1810, - [1991] = 1780, - [1992] = 1936, - [1993] = 1937, - [1994] = 1940, - [1995] = 1778, - [1996] = 1920, - [1997] = 1951, - [1998] = 1998, - [1999] = 1999, - [2000] = 2000, - [2001] = 1936, - [2002] = 1937, - [2003] = 1940, - [2004] = 2004, - [2005] = 2005, - [2006] = 1999, - [2007] = 1905, - [2008] = 2008, - [2009] = 1929, - [2010] = 2010, - [2011] = 2011, - [2012] = 1907, - [2013] = 1837, - [2014] = 1925, - [2015] = 1905, - [2016] = 1925, - [2017] = 1939, - [2018] = 1968, + [1978] = 1895, + [1979] = 1970, + [1980] = 1912, + [1981] = 1917, + [1982] = 1956, + [1983] = 1957, + [1984] = 1958, + [1985] = 1900, + [1986] = 1918, + [1987] = 1967, + [1988] = 1988, + [1989] = 1585, + [1990] = 1990, + [1991] = 1991, + [1992] = 1949, + [1993] = 1952, + [1994] = 1919, + [1995] = 1995, + [1996] = 1792, + [1997] = 1769, + [1998] = 1902, + [1999] = 1903, + [2000] = 1944, + [2001] = 2001, + [2002] = 1792, + [2003] = 2003, + [2004] = 1958, + [2005] = 1892, + [2006] = 2006, + [2007] = 2007, + [2008] = 1970, + [2009] = 1902, + [2010] = 1904, + [2011] = 1893, + [2012] = 2012, + [2013] = 2013, + [2014] = 2003, + [2015] = 2015, + [2016] = 1895, + [2017] = 2017, + [2018] = 2018, [2019] = 2019, - [2020] = 2020, - [2021] = 2021, - [2022] = 2005, + [2020] = 1960, + [2021] = 1962, + [2022] = 1921, [2023] = 2023, - [2024] = 2024, - [2025] = 1907, - [2026] = 1942, - [2027] = 2027, - [2028] = 2008, - [2029] = 2011, - [2030] = 1999, - [2031] = 2031, - [2032] = 1968, - [2033] = 1982, - [2034] = 1983, - [2035] = 2010, - [2036] = 1810, - [2037] = 1982, - [2038] = 2005, - [2039] = 2039, - [2040] = 2040, - [2041] = 1983, + [2024] = 2006, + [2025] = 1894, + [2026] = 2026, + [2027] = 1926, + [2028] = 2028, + [2029] = 1845, + [2030] = 2003, + [2031] = 1927, + [2032] = 2032, + [2033] = 2033, + [2034] = 2013, + [2035] = 2035, + [2036] = 1892, + [2037] = 1912, + [2038] = 2038, + [2039] = 1960, + [2040] = 2013, + [2041] = 2041, [2042] = 2042, - [2043] = 1941, - [2044] = 1594, - [2045] = 2045, - [2046] = 1941, - [2047] = 2047, - [2048] = 1968, - [2049] = 2049, - [2050] = 2005, - [2051] = 2051, + [2043] = 1911, + [2044] = 1921, + [2045] = 1926, + [2046] = 1927, + [2047] = 2018, + [2048] = 2038, + [2049] = 1962, + [2050] = 2050, + [2051] = 2003, [2052] = 2052, - [2053] = 2005, - [2054] = 1907, - [2055] = 1982, - [2056] = 1983, - [2057] = 2005, - [2058] = 2005, + [2053] = 2041, + [2054] = 2054, + [2055] = 2055, + [2056] = 2056, + [2057] = 1597, + [2058] = 2058, [2059] = 2059, [2060] = 2060, - [2061] = 2061, + [2061] = 2003, [2062] = 2062, [2063] = 2063, - [2064] = 2064, - [2065] = 2005, - [2066] = 2008, + [2064] = 2003, + [2065] = 2065, + [2066] = 2066, [2067] = 2067, - [2068] = 2068, - [2069] = 2011, + [2068] = 2013, + [2069] = 1892, [2070] = 2070, - [2071] = 1936, - [2072] = 1611, - [2073] = 2073, - [2074] = 1937, + [2071] = 2071, + [2072] = 2003, + [2073] = 1956, + [2074] = 2074, [2075] = 2075, [2076] = 2076, - [2077] = 2077, - [2078] = 2078, - [2079] = 2073, - [2080] = 2052, - [2081] = 2081, - [2082] = 2082, + [2077] = 1957, + [2078] = 1958, + [2079] = 2079, + [2080] = 2080, + [2081] = 1611, + [2082] = 1902, [2083] = 2083, [2084] = 2084, - [2085] = 1940, - [2086] = 2010, - [2087] = 2087, - [2088] = 1903, + [2085] = 2050, + [2086] = 2086, + [2087] = 2038, + [2088] = 2041, [2089] = 2089, - [2090] = 1614, - [2091] = 1999, - [2092] = 1911, + [2090] = 2090, + [2091] = 2023, + [2092] = 1950, [2093] = 1903, - [2094] = 1913, - [2095] = 1911, - [2096] = 1913, - [2097] = 1592, - [2098] = 2098, - [2099] = 2099, - [2100] = 1925, - [2101] = 2031, + [2094] = 1594, + [2095] = 2095, + [2096] = 1904, + [2097] = 1921, + [2098] = 1926, + [2099] = 1927, + [2100] = 1595, + [2101] = 2003, [2102] = 2102, - [2103] = 2039, - [2104] = 2089, - [2105] = 2105, + [2103] = 1960, + [2104] = 1962, + [2105] = 1970, [2106] = 2106, - [2107] = 1898, - [2108] = 1926, + [2107] = 2018, + [2108] = 2086, [2109] = 2109, - [2110] = 1944, - [2111] = 1905, - [2112] = 2078, - [2113] = 2099, - [2114] = 2114, - [2115] = 2081, - [2116] = 2116, - [2117] = 2031, - [2118] = 2020, - [2119] = 2119, - [2120] = 2109, - [2121] = 2121, - [2122] = 2024, - [2123] = 2123, - [2124] = 2027, - [2125] = 2040, - [2126] = 2042, - [2127] = 2127, - [2128] = 2045, - [2129] = 2106, - [2130] = 2130, - [2131] = 2087, - [2132] = 2132, - [2133] = 2133, - [2134] = 2064, - [2135] = 2084, + [2110] = 2110, + [2111] = 2084, + [2112] = 1956, + [2113] = 1957, + [2114] = 2109, + [2115] = 1903, + [2116] = 2017, + [2117] = 2117, + [2118] = 2118, + [2119] = 2017, + [2120] = 2060, + [2121] = 2066, + [2122] = 2122, + [2123] = 2071, + [2124] = 2106, + [2125] = 2033, + [2126] = 2126, + [2127] = 2035, + [2128] = 2042, + [2129] = 2129, + [2130] = 2054, + [2131] = 2055, + [2132] = 2058, + [2133] = 2059, + [2134] = 2070, + [2135] = 2071, [2136] = 2136, [2137] = 2137, [2138] = 2138, [2139] = 2139, - [2140] = 2081, + [2140] = 2074, [2141] = 2141, - [2142] = 2106, + [2142] = 2141, [2143] = 2143, - [2144] = 2144, - [2145] = 2061, - [2146] = 2146, - [2147] = 2047, - [2148] = 2102, - [2149] = 2149, - [2150] = 2150, - [2151] = 2151, - [2152] = 2076, - [2153] = 2067, - [2154] = 2060, - [2155] = 2070, - [2156] = 2077, - [2157] = 2082, - [2158] = 2083, - [2159] = 2062, - [2160] = 2063, - [2161] = 2161, - [2162] = 2161, - [2163] = 2163, - [2164] = 2116, - [2165] = 2084, - [2166] = 2070, - [2167] = 2087, - [2168] = 2109, - [2169] = 2137, - [2170] = 2149, + [2144] = 2106, + [2145] = 2006, + [2146] = 2007, + [2147] = 2147, + [2148] = 2141, + [2149] = 2017, + [2150] = 2147, + [2151] = 2075, + [2152] = 2147, + [2153] = 2074, + [2154] = 2076, + [2155] = 2083, + [2156] = 2058, + [2157] = 2147, + [2158] = 2158, + [2159] = 2028, + [2160] = 2056, + [2161] = 2060, + [2162] = 2162, + [2163] = 2063, + [2164] = 2065, + [2165] = 2066, + [2166] = 2080, + [2167] = 2080, + [2168] = 2162, + [2169] = 2169, + [2170] = 2170, [2171] = 2171, - [2172] = 2172, - [2173] = 2081, - [2174] = 2150, - [2175] = 2019, - [2176] = 2064, - [2177] = 2082, - [2178] = 2083, - [2179] = 2149, - [2180] = 2020, - [2181] = 2060, - [2182] = 2024, - [2183] = 2027, - [2184] = 2040, + [2172] = 2162, + [2173] = 2173, + [2174] = 2162, + [2175] = 2175, + [2176] = 2056, + [2177] = 2177, + [2178] = 2139, + [2179] = 2090, + [2180] = 2075, + [2181] = 2170, + [2182] = 2182, + [2183] = 2183, + [2184] = 2076, [2185] = 2185, - [2186] = 2149, - [2187] = 2042, - [2188] = 2150, - [2189] = 2045, - [2190] = 2087, - [2191] = 2084, - [2192] = 2049, - [2193] = 2067, - [2194] = 2047, + [2186] = 2026, + [2187] = 2007, + [2188] = 2007, + [2189] = 2035, + [2190] = 2190, + [2191] = 2042, + [2192] = 2054, + [2193] = 2193, + [2194] = 2055, [2195] = 2195, - [2196] = 2060, - [2197] = 2116, - [2198] = 2076, + [2196] = 2063, + [2197] = 2197, + [2198] = 2198, [2199] = 2199, [2200] = 2200, - [2201] = 2201, - [2202] = 2062, + [2201] = 2056, + [2202] = 2060, [2203] = 2063, - [2204] = 2064, - [2205] = 2116, - [2206] = 2031, - [2207] = 2067, - [2208] = 2076, - [2209] = 2083, - [2210] = 2210, - [2211] = 2019, - [2212] = 2212, - [2213] = 2020, - [2214] = 2024, - [2215] = 2215, - [2216] = 2062, - [2217] = 2070, - [2218] = 2218, - [2219] = 2219, - [2220] = 2027, - [2221] = 2040, - [2222] = 2042, - [2223] = 2223, - [2224] = 2133, - [2225] = 2045, - [2226] = 2077, - [2227] = 2201, - [2228] = 2130, - [2229] = 2019, + [2204] = 2065, + [2205] = 2066, + [2206] = 2206, + [2207] = 2080, + [2208] = 2055, + [2209] = 2058, + [2210] = 2059, + [2211] = 2211, + [2212] = 2070, + [2213] = 2071, + [2214] = 2214, + [2215] = 2117, + [2216] = 2074, + [2217] = 2217, + [2218] = 2059, + [2219] = 2083, + [2220] = 2012, + [2221] = 2032, + [2222] = 2075, + [2223] = 2076, + [2224] = 2065, + [2225] = 2225, + [2226] = 2083, + [2227] = 2141, + [2228] = 2026, + [2229] = 2033, [2230] = 2230, - [2231] = 2231, - [2232] = 2082, - [2233] = 2077, - [2234] = 2047, - [2235] = 2063, - [2236] = 2236, - [2237] = 2150, - [2238] = 2109, - [2239] = 2051, - [2240] = 2106, - [2241] = 2241, - [2242] = 2242, - [2243] = 2243, - [2244] = 2244, + [2231] = 2198, + [2232] = 2158, + [2233] = 2233, + [2234] = 2026, + [2235] = 2035, + [2236] = 2070, + [2237] = 2042, + [2238] = 2238, + [2239] = 2052, + [2240] = 2240, + [2241] = 2106, + [2242] = 2006, + [2243] = 2054, + [2244] = 2033, [2245] = 2245, [2246] = 2246, - [2247] = 2247, + [2247] = 2182, [2248] = 2248, [2249] = 2249, [2250] = 2250, [2251] = 2251, [2252] = 2252, - [2253] = 2199, + [2253] = 2253, [2254] = 2254, [2255] = 2255, [2256] = 2256, [2257] = 2257, - [2258] = 2200, - [2259] = 2215, - [2260] = 2260, + [2258] = 2258, + [2259] = 2259, + [2260] = 2169, [2261] = 2261, [2262] = 2262, - [2263] = 2263, - [2264] = 2264, + [2263] = 2182, + [2264] = 2214, [2265] = 2265, [2266] = 2266, - [2267] = 1926, - [2268] = 2268, - [2269] = 2242, + [2267] = 2267, + [2268] = 2250, + [2269] = 2269, [2270] = 2270, - [2271] = 2243, + [2271] = 2271, [2272] = 2272, - [2273] = 2218, - [2274] = 2274, - [2275] = 2260, - [2276] = 2261, + [2273] = 2273, + [2274] = 2253, + [2275] = 2255, + [2276] = 1893, [2277] = 2277, - [2278] = 1933, + [2278] = 2278, [2279] = 2279, [2280] = 2280, - [2281] = 2281, + [2281] = 2270, [2282] = 2282, [2283] = 2283, [2284] = 2284, [2285] = 2285, - [2286] = 2241, - [2287] = 2200, + [2286] = 2286, + [2287] = 2261, [2288] = 2288, - [2289] = 1976, - [2290] = 1977, - [2291] = 1978, - [2292] = 2119, + [2289] = 2289, + [2290] = 1908, + [2291] = 2257, + [2292] = 2292, [2293] = 2293, - [2294] = 2143, - [2295] = 2295, - [2296] = 2277, - [2297] = 2297, - [2298] = 2248, - [2299] = 2299, - [2300] = 2252, - [2301] = 2301, - [2302] = 2257, - [2303] = 2260, - [2304] = 2261, - [2305] = 2263, - [2306] = 2299, - [2307] = 2143, - [2308] = 2266, - [2309] = 2264, - [2310] = 2268, - [2311] = 2270, - [2312] = 2243, - [2313] = 2313, - [2314] = 2272, - [2315] = 2263, - [2316] = 2316, - [2317] = 2277, + [2294] = 2294, + [2295] = 2185, + [2296] = 1941, + [2297] = 1942, + [2298] = 1943, + [2299] = 2173, + [2300] = 2300, + [2301] = 2118, + [2302] = 2302, + [2303] = 2282, + [2304] = 2252, + [2305] = 2305, + [2306] = 2254, + [2307] = 2262, + [2308] = 2259, + [2309] = 2261, + [2310] = 2262, + [2311] = 2265, + [2312] = 2269, + [2313] = 2238, + [2314] = 2270, + [2315] = 2272, + [2316] = 2253, + [2317] = 2255, [2318] = 2318, - [2319] = 2279, + [2319] = 2278, [2320] = 2320, - [2321] = 2280, - [2322] = 2281, - [2323] = 2283, - [2324] = 2272, - [2325] = 2325, + [2321] = 2321, + [2322] = 2118, + [2323] = 2265, + [2324] = 2324, + [2325] = 2248, [2326] = 2282, - [2327] = 2248, - [2328] = 2199, - [2329] = 2200, - [2330] = 2288, - [2331] = 2215, - [2332] = 2254, - [2333] = 2242, - [2334] = 2334, - [2335] = 2335, - [2336] = 2246, - [2337] = 2257, - [2338] = 2338, - [2339] = 2248, - [2340] = 2340, - [2341] = 2252, - [2342] = 2248, + [2327] = 2284, + [2328] = 2286, + [2329] = 2288, + [2330] = 2289, + [2331] = 2331, + [2332] = 2332, + [2333] = 2278, + [2334] = 2294, + [2335] = 2169, + [2336] = 2182, + [2337] = 2214, + [2338] = 2285, + [2339] = 2293, + [2340] = 2250, + [2341] = 2341, + [2342] = 2252, [2343] = 2343, - [2344] = 2257, - [2345] = 2260, - [2346] = 2261, - [2347] = 2347, - [2348] = 2263, - [2349] = 2266, + [2344] = 2344, + [2345] = 2254, + [2346] = 2252, + [2347] = 2259, + [2348] = 2261, + [2349] = 2262, [2350] = 2350, - [2351] = 2268, - [2352] = 2270, - [2353] = 2243, - [2354] = 2354, - [2355] = 2252, - [2356] = 2356, - [2357] = 2357, - [2358] = 2358, - [2359] = 2359, - [2360] = 2301, - [2361] = 2254, - [2362] = 1584, - [2363] = 1926, - [2364] = 2248, - [2365] = 2288, - [2366] = 1007, - [2367] = 2252, - [2368] = 2255, - [2369] = 2256, - [2370] = 2257, - [2371] = 2260, - [2372] = 2261, + [2351] = 2259, + [2352] = 2265, + [2353] = 2353, + [2354] = 2270, + [2355] = 2272, + [2356] = 2253, + [2357] = 2255, + [2358] = 2254, + [2359] = 2320, + [2360] = 2360, + [2361] = 2361, + [2362] = 2256, + [2363] = 1586, + [2364] = 2364, + [2365] = 2252, + [2366] = 2254, + [2367] = 2257, + [2368] = 1019, + [2369] = 2259, + [2370] = 2258, + [2371] = 2261, + [2372] = 2262, [2373] = 2373, - [2374] = 2249, - [2375] = 2263, - [2376] = 2250, - [2377] = 2266, - [2378] = 2270, - [2379] = 2268, - [2380] = 2270, - [2381] = 2243, - [2382] = 2252, + [2374] = 2265, + [2375] = 2277, + [2376] = 2294, + [2377] = 2270, + [2378] = 2272, + [2379] = 2279, + [2380] = 2253, + [2381] = 2285, + [2382] = 1893, [2383] = 2383, - [2384] = 2257, - [2385] = 2385, - [2386] = 2248, + [2384] = 2245, + [2385] = 2383, + [2386] = 2259, [2387] = 2252, - [2388] = 2212, - [2389] = 2389, - [2390] = 1583, - [2391] = 2257, - [2392] = 1900, - [2393] = 2260, - [2394] = 2261, - [2395] = 2172, - [2396] = 2263, - [2397] = 2266, - [2398] = 2398, - [2399] = 2268, - [2400] = 2400, - [2401] = 2270, - [2402] = 2243, - [2403] = 2260, - [2404] = 2261, - [2405] = 2268, - [2406] = 2263, - [2407] = 2373, - [2408] = 2340, - [2409] = 2274, - [2410] = 2248, + [2388] = 2388, + [2389] = 2254, + [2390] = 2324, + [2391] = 2259, + [2392] = 1585, + [2393] = 2261, + [2394] = 2262, + [2395] = 2265, + [2396] = 2396, + [2397] = 2261, + [2398] = 2270, + [2399] = 2262, + [2400] = 2272, + [2401] = 2253, + [2402] = 2255, + [2403] = 2403, + [2404] = 2195, + [2405] = 2265, + [2406] = 2193, + [2407] = 2360, + [2408] = 1991, + [2409] = 2409, + [2410] = 2283, [2411] = 2252, [2412] = 2412, - [2413] = 2257, - [2414] = 2260, - [2415] = 2261, - [2416] = 2143, - [2417] = 2417, - [2418] = 2263, - [2419] = 2389, - [2420] = 2266, - [2421] = 2268, - [2422] = 2270, - [2423] = 2243, + [2413] = 2254, + [2414] = 2414, + [2415] = 2259, + [2416] = 2261, + [2417] = 2262, + [2418] = 2258, + [2419] = 2265, + [2420] = 2396, + [2421] = 2270, + [2422] = 2272, + [2423] = 2253, [2424] = 2255, - [2425] = 2425, - [2426] = 1031, - [2427] = 2266, - [2428] = 2263, - [2429] = 2270, - [2430] = 2243, - [2431] = 2268, - [2432] = 2270, - [2433] = 2243, - [2434] = 2284, - [2435] = 2263, - [2436] = 2270, - [2437] = 2243, - [2438] = 1898, - [2439] = 2256, - [2440] = 2247, - [2441] = 2279, - [2442] = 2442, + [2425] = 2270, + [2426] = 2118, + [2427] = 2272, + [2428] = 2265, + [2429] = 2253, + [2430] = 2255, + [2431] = 989, + [2432] = 2432, + [2433] = 2433, + [2434] = 2253, + [2435] = 2265, + [2436] = 2436, + [2437] = 2253, + [2438] = 2255, + [2439] = 2255, + [2440] = 2292, + [2441] = 2441, + [2442] = 2441, [2443] = 2272, - [2444] = 2265, - [2445] = 2445, - [2446] = 2446, - [2447] = 2280, - [2448] = 2338, - [2449] = 2264, - [2450] = 2334, - [2451] = 2335, - [2452] = 2356, - [2453] = 2442, - [2454] = 2454, - [2455] = 2318, - [2456] = 2343, - [2457] = 2335, - [2458] = 2281, - [2459] = 1611, - [2460] = 2246, - [2461] = 2445, - [2462] = 2338, - [2463] = 2283, - [2464] = 1898, - [2465] = 1583, - [2466] = 2417, - [2467] = 2467, - [2468] = 2277, - [2469] = 2266, - [2470] = 1979, - [2471] = 2445, - [2472] = 1986, - [2473] = 2279, - [2474] = 2454, - [2475] = 2280, - [2476] = 1904, - [2477] = 2281, - [2478] = 2283, - [2479] = 2316, - [2480] = 1898, - [2481] = 2481, - [2482] = 2141, - [2483] = 1583, - [2484] = 2288, - [2485] = 1926, - [2486] = 2320, - [2487] = 2487, - [2488] = 2412, - [2489] = 2251, - [2490] = 2297, - [2491] = 2354, - [2492] = 2492, - [2493] = 2493, - [2494] = 2494, - [2495] = 648, + [2444] = 1950, + [2445] = 2254, + [2446] = 2300, + [2447] = 2447, + [2448] = 2278, + [2449] = 2245, + [2450] = 2284, + [2451] = 2267, + [2452] = 2341, + [2453] = 2453, + [2454] = 2286, + [2455] = 2373, + [2456] = 2453, + [2457] = 2457, + [2458] = 2331, + [2459] = 2353, + [2460] = 2252, + [2461] = 2432, + [2462] = 2447, + [2463] = 2463, + [2464] = 2344, + [2465] = 2288, + [2466] = 2269, + [2467] = 2289, + [2468] = 1950, + [2469] = 2282, + [2470] = 2470, + [2471] = 1585, + [2472] = 2432, + [2473] = 1901, + [2474] = 2284, + [2475] = 2256, + [2476] = 2286, + [2477] = 2457, + [2478] = 2288, + [2479] = 2289, + [2480] = 1905, + [2481] = 1914, + [2482] = 2332, + [2483] = 1611, + [2484] = 1585, + [2485] = 2294, + [2486] = 2197, + [2487] = 1950, + [2488] = 1893, + [2489] = 2246, + [2490] = 2490, + [2491] = 2447, + [2492] = 2266, + [2493] = 2280, + [2494] = 2255, + [2495] = 2495, [2496] = 2496, - [2497] = 2497, + [2497] = 623, [2498] = 2498, [2499] = 2499, [2500] = 2500, @@ -5323,288 +5337,292 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2503] = 2503, [2504] = 2504, [2505] = 2505, - [2506] = 2506, - [2507] = 2501, + [2506] = 2500, + [2507] = 2498, [2508] = 2508, [2509] = 2509, [2510] = 2510, - [2511] = 622, + [2511] = 2511, [2512] = 2512, - [2513] = 2385, - [2514] = 2494, - [2515] = 2059, - [2516] = 2516, - [2517] = 2059, - [2518] = 2508, - [2519] = 2519, - [2520] = 2505, - [2521] = 2512, + [2513] = 627, + [2514] = 2514, + [2515] = 2515, + [2516] = 2505, + [2517] = 2508, + [2518] = 2510, + [2519] = 2067, + [2520] = 2496, + [2521] = 621, [2522] = 2522, - [2523] = 2059, - [2524] = 2524, - [2525] = 1594, + [2523] = 2523, + [2524] = 2508, + [2525] = 2496, [2526] = 2526, - [2527] = 2527, - [2528] = 639, - [2529] = 2508, - [2530] = 2530, + [2527] = 1597, + [2528] = 2528, + [2529] = 2529, + [2530] = 2511, [2531] = 2531, - [2532] = 2512, + [2532] = 2532, [2533] = 2533, - [2534] = 2534, - [2535] = 2531, + [2534] = 2067, + [2535] = 2535, [2536] = 2536, [2537] = 2537, - [2538] = 2538, - [2539] = 2539, - [2540] = 1614, - [2541] = 2541, - [2542] = 2542, + [2538] = 2510, + [2539] = 2503, + [2540] = 2540, + [2541] = 1594, + [2542] = 2414, [2543] = 2543, - [2544] = 2544, + [2544] = 2537, [2545] = 2545, - [2546] = 632, - [2547] = 2539, - [2548] = 2510, - [2549] = 2496, - [2550] = 2498, + [2546] = 620, + [2547] = 2547, + [2548] = 2548, + [2549] = 2549, + [2550] = 2550, [2551] = 2551, [2552] = 2552, - [2553] = 2359, + [2553] = 2553, [2554] = 2554, - [2555] = 2504, - [2556] = 2505, + [2555] = 2498, + [2556] = 2556, [2557] = 2557, - [2558] = 2519, - [2559] = 2559, - [2560] = 2560, - [2561] = 2539, + [2558] = 2558, + [2559] = 2523, + [2560] = 2514, + [2561] = 2503, [2562] = 2543, - [2563] = 1592, - [2564] = 2564, - [2565] = 1611, - [2566] = 2508, - [2567] = 2512, + [2563] = 2495, + [2564] = 2504, + [2565] = 2504, + [2566] = 2537, + [2567] = 2567, [2568] = 2568, - [2569] = 2569, - [2570] = 2570, - [2571] = 2531, - [2572] = 2572, - [2573] = 2383, - [2574] = 1614, - [2575] = 2498, - [2576] = 2539, - [2577] = 2577, - [2578] = 1594, + [2569] = 2388, + [2570] = 2508, + [2571] = 2571, + [2572] = 2510, + [2573] = 1611, + [2574] = 2548, + [2575] = 2575, + [2576] = 1595, + [2577] = 2496, + [2578] = 2578, [2579] = 2579, [2580] = 2580, - [2581] = 2581, - [2582] = 2504, - [2583] = 623, - [2584] = 1592, - [2585] = 2524, - [2586] = 2493, + [2581] = 1594, + [2582] = 2537, + [2583] = 2409, + [2584] = 2584, + [2585] = 1597, + [2586] = 2586, [2587] = 2587, - [2588] = 2531, - [2589] = 2559, - [2590] = 2590, - [2591] = 2591, - [2592] = 2560, - [2593] = 2593, + [2588] = 630, + [2589] = 2589, + [2590] = 2526, + [2591] = 1595, + [2592] = 2592, + [2593] = 2547, [2594] = 2594, [2595] = 2595, - [2596] = 2596, + [2596] = 2067, [2597] = 2597, [2598] = 2598, [2599] = 2599, [2600] = 2600, [2601] = 2601, - [2602] = 2602, - [2603] = 2593, + [2602] = 2597, + [2603] = 2603, [2604] = 2604, [2605] = 2605, [2606] = 2606, [2607] = 2607, [2608] = 2608, [2609] = 2609, - [2610] = 2610, - [2611] = 2598, - [2612] = 2606, - [2613] = 2613, + [2610] = 2607, + [2611] = 2611, + [2612] = 2612, + [2613] = 2598, [2614] = 2614, - [2615] = 2615, - [2616] = 2616, - [2617] = 2617, + [2615] = 2605, + [2616] = 2606, + [2617] = 2604, [2618] = 2618, - [2619] = 2619, - [2620] = 2615, - [2621] = 2621, + [2619] = 2603, + [2620] = 2618, + [2621] = 2603, [2622] = 2622, [2623] = 2623, - [2624] = 2616, - [2625] = 2596, - [2626] = 2626, - [2627] = 2597, + [2624] = 2624, + [2625] = 2618, + [2626] = 2608, + [2627] = 2622, [2628] = 2628, - [2629] = 2593, - [2630] = 2599, - [2631] = 2631, - [2632] = 2632, - [2633] = 2600, + [2629] = 2629, + [2630] = 2624, + [2631] = 2605, + [2632] = 2611, + [2633] = 2633, [2634] = 2634, - [2635] = 2622, - [2636] = 2618, - [2637] = 2606, + [2635] = 2612, + [2636] = 2598, + [2637] = 2612, [2638] = 2638, [2639] = 2639, [2640] = 2640, - [2641] = 2609, - [2642] = 2615, - [2643] = 2616, - [2644] = 2644, - [2645] = 2645, - [2646] = 2626, - [2647] = 2596, - [2648] = 2622, - [2649] = 2615, - [2650] = 2593, - [2651] = 2609, + [2641] = 2605, + [2642] = 2629, + [2643] = 2600, + [2644] = 2606, + [2645] = 2598, + [2646] = 2604, + [2647] = 2611, + [2648] = 2603, + [2649] = 2649, + [2650] = 2650, + [2651] = 2622, [2652] = 2618, - [2653] = 2596, - [2654] = 2654, - [2655] = 2604, - [2656] = 2656, + [2653] = 2600, + [2654] = 2629, + [2655] = 2598, + [2656] = 2606, [2657] = 2657, - [2658] = 2593, - [2659] = 2600, + [2658] = 2658, + [2659] = 2659, [2660] = 2660, - [2661] = 2604, - [2662] = 2616, - [2663] = 2593, - [2664] = 2599, - [2665] = 2604, + [2661] = 2661, + [2662] = 2607, + [2663] = 2663, + [2664] = 2664, + [2665] = 2665, [2666] = 2666, - [2667] = 2605, - [2668] = 2668, - [2669] = 2607, - [2670] = 2596, - [2671] = 2657, - [2672] = 2600, - [2673] = 2673, - [2674] = 2617, - [2675] = 2596, - [2676] = 2607, - [2677] = 2654, - [2678] = 2639, - [2679] = 2604, - [2680] = 2680, - [2681] = 2608, - [2682] = 2595, - [2683] = 2644, - [2684] = 2602, - [2685] = 2615, - [2686] = 2628, - [2687] = 2609, - [2688] = 2688, - [2689] = 2600, - [2690] = 2690, - [2691] = 2638, + [2667] = 2667, + [2668] = 2606, + [2669] = 2600, + [2670] = 2624, + [2671] = 2671, + [2672] = 2622, + [2673] = 2606, + [2674] = 2604, + [2675] = 2607, + [2676] = 2603, + [2677] = 2607, + [2678] = 2678, + [2679] = 2605, + [2680] = 2608, + [2681] = 2600, + [2682] = 2682, + [2683] = 2600, + [2684] = 2684, + [2685] = 2598, + [2686] = 2686, + [2687] = 2618, + [2688] = 2659, + [2689] = 2657, + [2690] = 2666, + [2691] = 2611, [2692] = 2692, - [2693] = 2598, - [2694] = 2600, + [2693] = 2693, + [2694] = 2667, [2695] = 2695, - [2696] = 2696, - [2697] = 2644, - [2698] = 2606, - [2699] = 2626, - [2700] = 2700, - [2701] = 2608, - [2702] = 2616, - [2703] = 2703, - [2704] = 2604, - [2705] = 2607, - [2706] = 2706, - [2707] = 2598, - [2708] = 2604, - [2709] = 2615, - [2710] = 2607, - [2711] = 2616, - [2712] = 2599, - [2713] = 2608, - [2714] = 2609, - [2715] = 2600, - [2716] = 2680, - [2717] = 2597, - [2718] = 2690, - [2719] = 2618, - [2720] = 2703, - [2721] = 2598, - [2722] = 2626, - [2723] = 2723, - [2724] = 2606, - [2725] = 2608, - [2726] = 2726, - [2727] = 2618, - [2728] = 2615, - [2729] = 2616, - [2730] = 2688, - [2731] = 2703, - [2732] = 2606, - [2733] = 2618, - [2734] = 2622, - [2735] = 2690, - [2736] = 2618, - [2737] = 2621, - [2738] = 2609, - [2739] = 2606, - [2740] = 2740, - [2741] = 2741, - [2742] = 2594, + [2696] = 2658, + [2697] = 2612, + [2698] = 2598, + [2699] = 2608, + [2700] = 2605, + [2701] = 2604, + [2702] = 2658, + [2703] = 2629, + [2704] = 2605, + [2705] = 2612, + [2706] = 2607, + [2707] = 2601, + [2708] = 2658, + [2709] = 2608, + [2710] = 2606, + [2711] = 2598, + [2712] = 2712, + [2713] = 2713, + [2714] = 2622, + [2715] = 2603, + [2716] = 2716, + [2717] = 2618, + [2718] = 2604, + [2719] = 2611, + [2720] = 2684, + [2721] = 2622, + [2722] = 2667, + [2723] = 2612, + [2724] = 2601, + [2725] = 2598, + [2726] = 2611, + [2727] = 2638, + [2728] = 2678, + [2729] = 2605, + [2730] = 2730, + [2731] = 2606, + [2732] = 2732, + [2733] = 2608, + [2734] = 2604, + [2735] = 2671, + [2736] = 2622, + [2737] = 2686, + [2738] = 2624, + [2739] = 2739, + [2740] = 2603, + [2741] = 2618, + [2742] = 2695, [2743] = 2743, - [2744] = 2607, - [2745] = 2608, - [2746] = 2621, - [2747] = 2626, - [2748] = 2609, - [2749] = 2700, - [2750] = 2593, - [2751] = 2621, - [2752] = 2609, - [2753] = 2609, - [2754] = 2607, - [2755] = 2668, - [2756] = 2644, - [2757] = 2757, - [2758] = 2604, - [2759] = 2598, - [2760] = 2680, - [2761] = 2606, - [2762] = 2596, - [2763] = 2645, - [2764] = 2596, - [2765] = 2608, - [2766] = 2615, - [2767] = 2616, - [2768] = 2597, - [2769] = 2598, - [2770] = 2618, - [2771] = 2598, - [2772] = 2660, - [2773] = 2609, - [2774] = 2644, - [2775] = 2608, - [2776] = 2623, - [2777] = 2614, - [2778] = 2607, - [2779] = 2640, - [2780] = 2632, - [2781] = 2726, - [2782] = 2597, - [2783] = 2741, - [2784] = 2726, - [2785] = 2600, - [2786] = 2786, - [2787] = 2593, + [2744] = 2618, + [2745] = 2665, + [2746] = 2622, + [2747] = 2612, + [2748] = 2597, + [2749] = 2607, + [2750] = 2664, + [2751] = 2600, + [2752] = 2752, + [2753] = 2612, + [2754] = 2692, + [2755] = 2755, + [2756] = 2598, + [2757] = 2638, + [2758] = 2657, + [2759] = 2660, + [2760] = 2597, + [2761] = 2761, + [2762] = 2608, + [2763] = 2763, + [2764] = 2657, + [2765] = 2765, + [2766] = 2712, + [2767] = 2611, + [2768] = 2765, + [2769] = 2607, + [2770] = 2682, + [2771] = 2771, + [2772] = 2600, + [2773] = 2663, + [2774] = 2608, + [2775] = 2638, + [2776] = 2604, + [2777] = 2777, + [2778] = 2640, + [2779] = 2638, + [2780] = 2614, + [2781] = 2628, + [2782] = 2603, + [2783] = 2623, + [2784] = 2739, + [2785] = 2761, + [2786] = 2611, + [2787] = 2609, + [2788] = 2761, + [2789] = 2684, + [2790] = 2658, + [2791] = 2597, }; static const TSSymbol ts_supertype_symbols[SUPERTYPE_COUNT] = { @@ -7129,79 +7147,80 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { END_STATE(); case 44: if (lookahead == 'm') ADVANCE(80); + if (lookahead == 'z') ADVANCE(81); END_STATE(); case 45: - if (lookahead == 't') ADVANCE(81); + if (lookahead == 't') ADVANCE(82); END_STATE(); case 46: - if (lookahead == 'n') ADVANCE(82); - if (lookahead == 't') ADVANCE(83); + if (lookahead == 'n') ADVANCE(83); + if (lookahead == 't') ADVANCE(84); END_STATE(); case 47: ACCEPT_TOKEN(anon_sym_or); END_STATE(); case 48: - if (lookahead == 's') ADVANCE(84); + if (lookahead == 's') ADVANCE(85); END_STATE(); case 49: - if (lookahead == 'i') ADVANCE(85); + if (lookahead == 'i') ADVANCE(86); END_STATE(); case 50: - if (lookahead == 'i') ADVANCE(86); + if (lookahead == 'i') ADVANCE(87); END_STATE(); case 51: - if (lookahead == 't') ADVANCE(87); + if (lookahead == 't') ADVANCE(88); END_STATE(); case 52: - if (lookahead == 'y') ADVANCE(88); + if (lookahead == 'y') ADVANCE(89); END_STATE(); case 53: - if (lookahead == 'p') ADVANCE(89); + if (lookahead == 'p') ADVANCE(90); END_STATE(); case 54: - if (lookahead == 'i') ADVANCE(90); + if (lookahead == 'i') ADVANCE(91); END_STATE(); case 55: - if (lookahead == 't') ADVANCE(91); + if (lookahead == 't') ADVANCE(92); END_STATE(); case 56: - if (lookahead == 'e') ADVANCE(92); + if (lookahead == 'e') ADVANCE(93); END_STATE(); case 57: - if (lookahead == 's') ADVANCE(93); + if (lookahead == 's') ADVANCE(94); END_STATE(); case 58: - if (lookahead == 'e') ADVANCE(94); + if (lookahead == 'e') ADVANCE(95); END_STATE(); case 59: - if (lookahead == 'e') ADVANCE(95); + if (lookahead == 'e') ADVANCE(96); END_STATE(); case 60: - if (lookahead == 'u') ADVANCE(96); + if (lookahead == 'u') ADVANCE(97); END_STATE(); case 61: ACCEPT_TOKEN(anon_sym_and); END_STATE(); case 62: - if (lookahead == 'e') ADVANCE(97); + if (lookahead == 'e') ADVANCE(98); END_STATE(); case 63: - if (lookahead == 'n') ADVANCE(98); + if (lookahead == 'n') ADVANCE(99); END_STATE(); case 64: - if (lookahead == 'i') ADVANCE(99); + if (lookahead == 'i') ADVANCE(100); END_STATE(); case 65: - if (lookahead == 'a') ADVANCE(100); + if (lookahead == 'a') ADVANCE(101); END_STATE(); case 66: - if (lookahead == 'e') ADVANCE(101); + if (lookahead == 'e') ADVANCE(102); END_STATE(); case 67: - if (lookahead == 's') ADVANCE(102); + if (lookahead == 's') ADVANCE(103); END_STATE(); case 68: - if (lookahead == 't') ADVANCE(103); + if (lookahead == 't') ADVANCE(104); END_STATE(); case 69: ACCEPT_TOKEN(anon_sym_def); @@ -7210,276 +7229,282 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_del); END_STATE(); case 71: - if (lookahead == 'f') ADVANCE(104); + if (lookahead == 'f') ADVANCE(105); END_STATE(); case 72: - if (lookahead == 'e') ADVANCE(105); + if (lookahead == 'e') ADVANCE(106); END_STATE(); case 73: - if (lookahead == 'e') ADVANCE(106); + if (lookahead == 'e') ADVANCE(107); END_STATE(); case 74: - if (lookahead == 'c') ADVANCE(107); + if (lookahead == 'c') ADVANCE(108); END_STATE(); case 75: - if (lookahead == 'a') ADVANCE(108); + if (lookahead == 'a') ADVANCE(109); END_STATE(); case 76: ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 77: - if (lookahead == 'm') ADVANCE(109); + if (lookahead == 'm') ADVANCE(110); END_STATE(); case 78: - if (lookahead == 'b') ADVANCE(110); + if (lookahead == 'b') ADVANCE(111); END_STATE(); case 79: - if (lookahead == 'o') ADVANCE(111); + if (lookahead == 'o') ADVANCE(112); END_STATE(); case 80: - if (lookahead == 'b') ADVANCE(112); + if (lookahead == 'b') ADVANCE(113); END_STATE(); case 81: - if (lookahead == 'c') ADVANCE(113); + if (lookahead == 'y') ADVANCE(114); END_STATE(); case 82: - if (lookahead == 'l') ADVANCE(114); + if (lookahead == 'c') ADVANCE(115); END_STATE(); case 83: - ACCEPT_TOKEN(anon_sym_not); + if (lookahead == 'l') ADVANCE(116); END_STATE(); case 84: - if (lookahead == 's') ADVANCE(115); + ACCEPT_TOKEN(anon_sym_not); END_STATE(); case 85: - if (lookahead == 'n') ADVANCE(116); + if (lookahead == 's') ADVANCE(117); END_STATE(); case 86: - if (lookahead == 's') ADVANCE(117); + if (lookahead == 'n') ADVANCE(118); END_STATE(); case 87: - if (lookahead == 'u') ADVANCE(118); + if (lookahead == 's') ADVANCE(119); END_STATE(); case 88: - ACCEPT_TOKEN(anon_sym_try); + if (lookahead == 'u') ADVANCE(120); END_STATE(); case 89: - if (lookahead == 'e') ADVANCE(119); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 90: - if (lookahead == 'l') ADVANCE(120); + if (lookahead == 'e') ADVANCE(121); END_STATE(); case 91: - if (lookahead == 'h') ADVANCE(121); + if (lookahead == 'l') ADVANCE(122); END_STATE(); case 92: - if (lookahead == 'l') ADVANCE(122); + if (lookahead == 'h') ADVANCE(123); END_STATE(); case 93: - if (lookahead == 'e') ADVANCE(123); + if (lookahead == 'l') ADVANCE(124); END_STATE(); case 94: - ACCEPT_TOKEN(sym_none); + if (lookahead == 'e') ADVANCE(125); END_STATE(); case 95: - ACCEPT_TOKEN(sym_true); + ACCEPT_TOKEN(sym_none); END_STATE(); case 96: - if (lookahead == 't') ADVANCE(124); + ACCEPT_TOKEN(sym_true); END_STATE(); case 97: - if (lookahead == 'r') ADVANCE(125); + if (lookahead == 't') ADVANCE(126); END_STATE(); case 98: - if (lookahead == 'c') ADVANCE(126); + if (lookahead == 'r') ADVANCE(127); END_STATE(); case 99: - if (lookahead == 't') ADVANCE(127); + if (lookahead == 'c') ADVANCE(128); END_STATE(); case 100: - if (lookahead == 'k') ADVANCE(128); + if (lookahead == 't') ADVANCE(129); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_case); + if (lookahead == 'k') ADVANCE(130); END_STATE(); case 102: - if (lookahead == 's') ADVANCE(129); + ACCEPT_TOKEN(anon_sym_case); END_STATE(); case 103: - if (lookahead == 'i') ADVANCE(130); + if (lookahead == 's') ADVANCE(131); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_elif); + if (lookahead == 'i') ADVANCE(132); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_else); + ACCEPT_TOKEN(anon_sym_elif); END_STATE(); case 106: - if (lookahead == 'p') ADVANCE(131); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_exec); + if (lookahead == 'p') ADVANCE(133); END_STATE(); case 108: - if (lookahead == 'l') ADVANCE(132); + ACCEPT_TOKEN(anon_sym_exec); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_from); + if (lookahead == 'l') ADVANCE(134); END_STATE(); case 110: - if (lookahead == 'a') ADVANCE(133); + ACCEPT_TOKEN(anon_sym_from); END_STATE(); case 111: - if (lookahead == 'r') ADVANCE(134); + if (lookahead == 'a') ADVANCE(135); END_STATE(); case 112: - if (lookahead == 'd') ADVANCE(135); + if (lookahead == 'r') ADVANCE(136); END_STATE(); case 113: - if (lookahead == 'h') ADVANCE(136); + if (lookahead == 'd') ADVANCE(137); END_STATE(); case 114: - if (lookahead == 'o') ADVANCE(137); + ACCEPT_TOKEN(anon_sym_lazy); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_pass); + if (lookahead == 'h') ADVANCE(138); END_STATE(); case 116: - if (lookahead == 't') ADVANCE(138); + if (lookahead == 'o') ADVANCE(139); END_STATE(); case 117: - if (lookahead == 'e') ADVANCE(139); + ACCEPT_TOKEN(anon_sym_pass); END_STATE(); case 118: - if (lookahead == 'r') ADVANCE(140); + if (lookahead == 't') ADVANCE(140); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_type); + if (lookahead == 'e') ADVANCE(141); END_STATE(); case 120: - if (lookahead == 'e') ADVANCE(141); + if (lookahead == 'r') ADVANCE(142); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_with); + ACCEPT_TOKEN(anon_sym_type); END_STATE(); case 122: - if (lookahead == 'd') ADVANCE(142); + if (lookahead == 'e') ADVANCE(143); END_STATE(); case 123: - ACCEPT_TOKEN(sym_false); + ACCEPT_TOKEN(anon_sym_with); END_STATE(); case 124: - if (lookahead == 'u') ADVANCE(143); + if (lookahead == 'd') ADVANCE(144); END_STATE(); case 125: - if (lookahead == 't') ADVANCE(144); + ACCEPT_TOKEN(sym_false); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_async); + if (lookahead == 'u') ADVANCE(145); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_await); + if (lookahead == 't') ADVANCE(146); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_break); + ACCEPT_TOKEN(anon_sym_async); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_class); + ACCEPT_TOKEN(anon_sym_await); END_STATE(); case 130: - if (lookahead == 'n') ADVANCE(145); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 131: - if (lookahead == 't') ADVANCE(146); + ACCEPT_TOKEN(anon_sym_class); END_STATE(); case 132: - if (lookahead == 'l') ADVANCE(147); + if (lookahead == 'n') ADVANCE(147); END_STATE(); case 133: - if (lookahead == 'l') ADVANCE(148); + if (lookahead == 't') ADVANCE(148); END_STATE(); case 134: - if (lookahead == 't') ADVANCE(149); + if (lookahead == 'l') ADVANCE(149); END_STATE(); case 135: - if (lookahead == 'a') ADVANCE(150); + if (lookahead == 'l') ADVANCE(150); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_match); + if (lookahead == 't') ADVANCE(151); END_STATE(); case 137: - if (lookahead == 'c') ADVANCE(151); + if (lookahead == 'a') ADVANCE(152); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_print); + ACCEPT_TOKEN(anon_sym_match); END_STATE(); case 139: - ACCEPT_TOKEN(anon_sym_raise); + if (lookahead == 'c') ADVANCE(153); END_STATE(); case 140: - if (lookahead == 'n') ADVANCE(152); + ACCEPT_TOKEN(anon_sym_print); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_while); + ACCEPT_TOKEN(anon_sym_raise); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_yield); + if (lookahead == 'n') ADVANCE(154); END_STATE(); case 143: - if (lookahead == 'r') ADVANCE(153); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_assert); + ACCEPT_TOKEN(anon_sym_yield); END_STATE(); case 145: - if (lookahead == 'u') ADVANCE(154); + if (lookahead == 'r') ADVANCE(155); END_STATE(); case 146: - ACCEPT_TOKEN(anon_sym_except); + ACCEPT_TOKEN(anon_sym_assert); END_STATE(); case 147: - if (lookahead == 'y') ADVANCE(155); + if (lookahead == 'u') ADVANCE(156); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_global); + ACCEPT_TOKEN(anon_sym_except); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_import); + if (lookahead == 'y') ADVANCE(157); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_lambda); + ACCEPT_TOKEN(anon_sym_global); END_STATE(); case 151: - if (lookahead == 'a') ADVANCE(156); + ACCEPT_TOKEN(anon_sym_import); END_STATE(); case 152: - ACCEPT_TOKEN(anon_sym_return); + ACCEPT_TOKEN(anon_sym_lambda); END_STATE(); case 153: - if (lookahead == 'e') ADVANCE(157); + if (lookahead == 'a') ADVANCE(158); END_STATE(); case 154: - if (lookahead == 'e') ADVANCE(158); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 155: - ACCEPT_TOKEN(anon_sym_finally); + if (lookahead == 'e') ADVANCE(159); END_STATE(); case 156: - if (lookahead == 'l') ADVANCE(159); + if (lookahead == 'e') ADVANCE(160); END_STATE(); case 157: - if (lookahead == '_') ADVANCE(160); + ACCEPT_TOKEN(anon_sym_finally); END_STATE(); case 158: - ACCEPT_TOKEN(anon_sym_continue); + if (lookahead == 'l') ADVANCE(161); END_STATE(); case 159: - ACCEPT_TOKEN(anon_sym_nonlocal); + if (lookahead == '_') ADVANCE(162); END_STATE(); case 160: - if (lookahead == '_') ADVANCE(161); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 161: + ACCEPT_TOKEN(anon_sym_nonlocal); + END_STATE(); + case 162: + if (lookahead == '_') ADVANCE(163); + END_STATE(); + case 163: ACCEPT_TOKEN(anon_sym___future__); END_STATE(); default: @@ -7502,8 +7527,8 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [11] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [12] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [13] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [14] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 2}, - [15] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [14] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [15] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 2}, [16] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [17] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [18] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, @@ -7533,8 +7558,8 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [42] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [43] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [44] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [45] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 2}, - [46] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [45] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [46] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 2}, [47] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [48] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [49] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, @@ -7556,12 +7581,12 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [65] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [66] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [67] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [68] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 2}, + [68] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [69] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [70] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [71] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [72] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [73] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 2}, + [71] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 2}, + [72] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 2}, + [73] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [74] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, [75] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, [76] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, @@ -7582,14 +7607,14 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [91] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, [92] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, [93] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [94] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [94] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 3}, [95] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, [96] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, [97] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, [98] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, [99] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, [100] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [101] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 3}, + [101] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, [102] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, [103] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, [104] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, @@ -7612,8 +7637,8 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [121] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, [122] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, [123] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [124] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 3}, - [125] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [124] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [125] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 3}, [126] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, [127] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, [128] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, @@ -7642,50 +7667,50 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [151] = {.lex_state = 12, .external_lex_state = 4, .reserved_word_set_id = 4}, [152] = {.lex_state = 5, .external_lex_state = 4, .reserved_word_set_id = 5}, [153] = {.lex_state = 13, .external_lex_state = 4, .reserved_word_set_id = 5}, - [154] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [155] = {.lex_state = 13, .external_lex_state = 4, .reserved_word_set_id = 5}, - [156] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 4}, - [157] = {.lex_state = 13, .external_lex_state = 6, .reserved_word_set_id = 6}, - [158] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 4}, - [159] = {.lex_state = 13, .external_lex_state = 6, .reserved_word_set_id = 4}, - [160] = {.lex_state = 13, .external_lex_state = 7, .reserved_word_set_id = 6}, - [161] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 6}, - [162] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 7}, - [163] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 6}, - [164] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 6}, - [165] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [166] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 6}, - [167] = {.lex_state = 13, .external_lex_state = 8, .reserved_word_set_id = 6}, - [168] = {.lex_state = 12, .external_lex_state = 4, .reserved_word_set_id = 1}, - [169] = {.lex_state = 13, .external_lex_state = 6, .reserved_word_set_id = 6}, - [170] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [171] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 4}, - [172] = {.lex_state = 13, .external_lex_state = 7, .reserved_word_set_id = 4}, - [173] = {.lex_state = 13, .external_lex_state = 8, .reserved_word_set_id = 6}, - [174] = {.lex_state = 13, .external_lex_state = 2, .reserved_word_set_id = 7}, - [175] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [154] = {.lex_state = 13, .external_lex_state = 6, .reserved_word_set_id = 6}, + [155] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [156] = {.lex_state = 13, .external_lex_state = 4, .reserved_word_set_id = 5}, + [157] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 4}, + [158] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 7}, + [159] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 6}, + [160] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 6}, + [161] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [162] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 4}, + [163] = {.lex_state = 13, .external_lex_state = 6, .reserved_word_set_id = 4}, + [164] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 6}, + [165] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 6}, + [166] = {.lex_state = 13, .external_lex_state = 7, .reserved_word_set_id = 6}, + [167] = {.lex_state = 13, .external_lex_state = 7, .reserved_word_set_id = 4}, + [168] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 6}, + [169] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [170] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 6}, + [171] = {.lex_state = 13, .external_lex_state = 8, .reserved_word_set_id = 6}, + [172] = {.lex_state = 13, .external_lex_state = 2, .reserved_word_set_id = 7}, + [173] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [174] = {.lex_state = 12, .external_lex_state = 4, .reserved_word_set_id = 1}, + [175] = {.lex_state = 13, .external_lex_state = 8, .reserved_word_set_id = 6}, [176] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [177] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 6}, - [178] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 6}, - [179] = {.lex_state = 13, .external_lex_state = 2, .reserved_word_set_id = 7}, + [177] = {.lex_state = 13, .external_lex_state = 6, .reserved_word_set_id = 6}, + [178] = {.lex_state = 13, .external_lex_state = 2, .reserved_word_set_id = 7}, + [179] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 4}, [180] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 6}, [181] = {.lex_state = 13, .external_lex_state = 8, .reserved_word_set_id = 4}, [182] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 1}, [183] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 1}, [184] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [185] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [186] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, - [187] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [188] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [189] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, - [190] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [185] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [186] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [187] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [188] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [189] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [190] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, [191] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [192] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [193] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [194] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [195] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [196] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [197] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [192] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [193] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [194] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [195] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [196] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [197] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [198] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, [199] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, [200] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, @@ -7705,254 +7730,254 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [214] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, [215] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, [216] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [217] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [217] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, [218] = {.lex_state = 6, .external_lex_state = 4, .reserved_word_set_id = 1}, [219] = {.lex_state = 6, .external_lex_state = 4, .reserved_word_set_id = 1}, - [220] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [221] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [220] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [221] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, [222] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, [223] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, [224] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [225] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [225] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [226] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [227] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [227] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, [228] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, [229] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [230] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [230] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, [231] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [232] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, - [233] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [234] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [235] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [236] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [232] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 10}, + [233] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [234] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [235] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, + [236] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, [237] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [238] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [238] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, [239] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [240] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [241] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [240] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [241] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, [242] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [243] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 10}, - [244] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [245] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [246] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [247] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [248] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [249] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [250] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [251] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [252] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [253] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [243] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [244] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, + [245] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, + [246] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [247] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [248] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [249] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [250] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [251] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [252] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [253] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, [254] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [255] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [255] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, [256] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, [257] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, [258] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [259] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [259] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, [260] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [261] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [262] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [263] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, + [261] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [262] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, + [263] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, [264] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, [265] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, [266] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [267] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [267] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, [268] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [269] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, - [270] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [269] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [270] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, [271] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, [272] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, [273] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, [274] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [275] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [276] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [277] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [275] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [276] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, + [277] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, [278] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, - [279] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, - [280] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [279] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [280] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, [281] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, [282] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, [283] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [284] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [285] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [286] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [287] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, - [288] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, - [289] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [284] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, + [285] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, + [286] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [287] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [288] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [289] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, [290] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, [291] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, - [292] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, - [293] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [292] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [293] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, [294] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [295] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, - [296] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, - [297] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, + [295] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [296] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [297] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, [298] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, [299] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, - [300] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [301] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [300] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, + [301] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, [302] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, [303] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [304] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, - [305] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, - [306] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [307] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [308] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [304] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [305] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [306] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, + [307] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, + [308] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, [309] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, [310] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [311] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, + [311] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, [312] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [313] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [314] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [313] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, + [314] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, [315] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [316] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, + [316] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, [317] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, [318] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [319] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [320] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [321] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [322] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [323] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, - [324] = {.lex_state = 13, .external_lex_state = 6, .reserved_word_set_id = 1}, - [325] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [326] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [327] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [328] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [329] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 9}, - [330] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [331] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [332] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [333] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 9}, + [319] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, + [320] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, + [321] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [322] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [323] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [324] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 9}, + [325] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [326] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [327] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [328] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [329] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [330] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [331] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 9}, + [332] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [333] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, [334] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [335] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, - [336] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, - [337] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [335] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [336] = {.lex_state = 13, .external_lex_state = 6, .reserved_word_set_id = 1}, + [337] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, [338] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, [339] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, [340] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, [341] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [342] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [342] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, [343] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, [344] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, [345] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [346] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [346] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [347] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [348] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, - [349] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [350] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [351] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [352] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, - [353] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [348] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [349] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [350] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [351] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [352] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [353] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [354] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [355] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [355] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, [356] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, [357] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [358] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [359] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [358] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [359] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, [360] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [361] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [362] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [361] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [362] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, [363] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, [364] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [365] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [366] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [365] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [366] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, [367] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, [368] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, - [369] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, + [369] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 10}, [370] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, - [371] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [371] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, [372] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, - [373] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [373] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, [374] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, [375] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, [376] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, [377] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, - [378] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, - [379] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 10}, + [378] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [379] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, [380] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, [381] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, - [382] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, + [382] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, [383] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, [384] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, - [385] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 10}, - [386] = {.lex_state = 13, .external_lex_state = 7, .reserved_word_set_id = 1}, + [385] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, + [386] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, [387] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, [388] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, [389] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, [390] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, - [391] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [392] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [391] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, + [392] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, [393] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [394] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, - [395] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, - [396] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [397] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, + [394] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [395] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [396] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, + [397] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 10}, [398] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, - [399] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [400] = {.lex_state = 13, .external_lex_state = 7, .reserved_word_set_id = 1}, - [401] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, + [399] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, + [400] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, + [401] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, [402] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, - [403] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, - [404] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, - [405] = {.lex_state = 7, .external_lex_state = 2, .reserved_word_set_id = 1}, - [406] = {.lex_state = 13, .external_lex_state = 2, .reserved_word_set_id = 1}, - [407] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [408] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, - [409] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [403] = {.lex_state = 13, .external_lex_state = 7, .reserved_word_set_id = 1}, + [404] = {.lex_state = 13, .external_lex_state = 7, .reserved_word_set_id = 1}, + [405] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [406] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [407] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [408] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [409] = {.lex_state = 13, .external_lex_state = 2, .reserved_word_set_id = 1}, [410] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [411] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [412] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [413] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [414] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [415] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [416] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, - [417] = {.lex_state = 13, .external_lex_state = 2, .reserved_word_set_id = 1}, - [418] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [419] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [420] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [411] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [412] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [413] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [414] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [415] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [416] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [417] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [418] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [419] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [420] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [421] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [422] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [423] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [424] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [422] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [423] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [424] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [425] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, [426] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, [427] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [428] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [429] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [430] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [428] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [429] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [430] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, [431] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [432] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [433] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [432] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [433] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [434] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [435] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [435] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, [436] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [437] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [438] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [437] = {.lex_state = 13, .external_lex_state = 2, .reserved_word_set_id = 1}, + [438] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, [439] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [440] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [441] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, - [442] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [440] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [441] = {.lex_state = 7, .external_lex_state = 2, .reserved_word_set_id = 1}, + [442] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [443] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [444] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [445] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [446] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [447] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [448] = {.lex_state = 7, .external_lex_state = 2, .reserved_word_set_id = 1}, + [444] = {.lex_state = 7, .external_lex_state = 2, .reserved_word_set_id = 1}, + [445] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [446] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [447] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [448] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [449] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [450] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [451] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [452] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [453] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [454] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [455] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [456] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [452] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [453] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [454] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [455] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [456] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, [457] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [458] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [459] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [460] = {.lex_state = 8, .external_lex_state = 4, .reserved_word_set_id = 1}, + [459] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [460] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [461] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [462] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [462] = {.lex_state = 8, .external_lex_state = 9}, [463] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [464] = {.lex_state = 8, .external_lex_state = 4, .reserved_word_set_id = 1}, + [464] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [465] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [466] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [467] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, @@ -7963,59 +7988,59 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [472] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [473] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [474] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [475] = {.lex_state = 8, .external_lex_state = 9}, + [475] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [476] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [477] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [478] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [477] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [478] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, [479] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [480] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [481] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [482] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [483] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [484] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [485] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [486] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [487] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [488] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [489] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [480] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [481] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [482] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [483] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [484] = {.lex_state = 8, .external_lex_state = 9}, + [485] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [486] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [487] = {.lex_state = 8, .external_lex_state = 4, .reserved_word_set_id = 1}, + [488] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [489] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [490] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, [491] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [492] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [493] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [494] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [495] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [496] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [496] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [497] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [498] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [499] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [500] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [501] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [498] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [499] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [500] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [501] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [502] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [503] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [504] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [505] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [506] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [507] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [506] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [507] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [508] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [509] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [510] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [510] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, [511] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [512] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [513] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [513] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [514] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [515] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [516] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [516] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [517] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [518] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [519] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [520] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [521] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [522] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [521] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [522] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [523] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [524] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [525] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [525] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [526] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [527] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [527] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [528] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [529] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [530] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, @@ -8033,307 +8058,307 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [542] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [543] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [544] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [545] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [546] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [547] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [545] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [546] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [547] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [548] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [549] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [549] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, [550] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [551] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [552] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, - [553] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [551] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [552] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [553] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [554] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [555] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [556] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [557] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [558] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [559] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [560] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [561] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [562] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [563] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [564] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [555] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [556] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [557] = {.lex_state = 8, .external_lex_state = 9}, + [558] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [559] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [560] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [561] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [562] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [563] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [564] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [565] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [566] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [567] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [567] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [568] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [569] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [569] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [570] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [571] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [572] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [573] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [571] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [572] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [573] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [574] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [575] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [575] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [576] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [577] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [578] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [579] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [580] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [581] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [582] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [583] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [579] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [580] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [581] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [582] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [583] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [584] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [585] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [586] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [587] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [588] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [589] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [587] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [588] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [589] = {.lex_state = 8, .external_lex_state = 4, .reserved_word_set_id = 1}, [590] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [591] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [592] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [591] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [592] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [593] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [594] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [595] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [596] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [597] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [598] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [598] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [599] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [600] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [600] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [601] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [602] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [603] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [604] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [605] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [606] = {.lex_state = 8, .external_lex_state = 9}, - [607] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, - [608] = {.lex_state = 8, .external_lex_state = 9}, - [609] = {.lex_state = 8, .external_lex_state = 9}, - [610] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [602] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [603] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [604] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [605] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [606] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [607] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [608] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [609] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [610] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [611] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [612] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [613] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [614] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [615] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [613] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [614] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [615] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [616] = {.lex_state = 8, .external_lex_state = 9}, - [617] = {.lex_state = 8, .external_lex_state = 9}, - [618] = {.lex_state = 8, .external_lex_state = 9}, - [619] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [620] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [621] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [622] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 11}, - [623] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 11}, - [624] = {.lex_state = 9, .external_lex_state = 9}, - [625] = {.lex_state = 9, .external_lex_state = 9}, - [626] = {.lex_state = 9, .external_lex_state = 9}, - [627] = {.lex_state = 9, .external_lex_state = 9}, - [628] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [629] = {.lex_state = 9, .external_lex_state = 9}, - [630] = {.lex_state = 9, .external_lex_state = 9}, - [631] = {.lex_state = 9, .external_lex_state = 9}, - [632] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 11}, - [633] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 11}, - [634] = {.lex_state = 9, .external_lex_state = 9}, - [635] = {.lex_state = 9, .external_lex_state = 9}, - [636] = {.lex_state = 9, .external_lex_state = 9}, - [637] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [638] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 11}, - [639] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 11}, + [617] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [618] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [619] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [620] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 11}, + [621] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 11}, + [622] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [623] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 11}, + [624] = {.lex_state = 8, .external_lex_state = 9}, + [625] = {.lex_state = 8, .external_lex_state = 9}, + [626] = {.lex_state = 8, .external_lex_state = 9}, + [627] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 11}, + [628] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 11}, + [629] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 11}, + [630] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 11}, + [631] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 11}, + [632] = {.lex_state = 8, .external_lex_state = 9}, + [633] = {.lex_state = 8, .external_lex_state = 9}, + [634] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 11}, + [635] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 11}, + [636] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [637] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [638] = {.lex_state = 9, .external_lex_state = 9}, + [639] = {.lex_state = 9, .external_lex_state = 9}, [640] = {.lex_state = 9, .external_lex_state = 9}, - [641] = {.lex_state = 9, .external_lex_state = 9}, + [641] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, [642] = {.lex_state = 9, .external_lex_state = 9}, [643] = {.lex_state = 9, .external_lex_state = 9}, [644] = {.lex_state = 9, .external_lex_state = 9}, [645] = {.lex_state = 9, .external_lex_state = 9}, - [646] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 11}, + [646] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, [647] = {.lex_state = 9, .external_lex_state = 9}, - [648] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 11}, - [649] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 11}, - [650] = {.lex_state = 9, .external_lex_state = 9}, - [651] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 11}, - [652] = {.lex_state = 9, .external_lex_state = 9}, + [648] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [649] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [650] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [651] = {.lex_state = 9, .external_lex_state = 9}, + [652] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, [653] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, [654] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, [655] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, - [656] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [657] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [658] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [659] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [660] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [661] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [656] = {.lex_state = 9, .external_lex_state = 9}, + [657] = {.lex_state = 9, .external_lex_state = 9}, + [658] = {.lex_state = 9, .external_lex_state = 9}, + [659] = {.lex_state = 9, .external_lex_state = 9}, + [660] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [661] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, [662] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, [663] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, [664] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, [665] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, [666] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, - [667] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, - [668] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, - [669] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, - [670] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [667] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [668] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [669] = {.lex_state = 9, .external_lex_state = 9}, + [670] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, [671] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, - [672] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [672] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, [673] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [674] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, - [675] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, - [676] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [674] = {.lex_state = 9, .external_lex_state = 9}, + [675] = {.lex_state = 9, .external_lex_state = 9}, + [676] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, [677] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, [678] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, [679] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [680] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, - [681] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [682] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [683] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, - [684] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [685] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [680] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [681] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [682] = {.lex_state = 9, .external_lex_state = 9}, + [683] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [684] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [685] = {.lex_state = 9, .external_lex_state = 9}, [686] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, [687] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, - [688] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [688] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, [689] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, [690] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, - [691] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [692] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [691] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [692] = {.lex_state = 9, .external_lex_state = 9}, [693] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [694] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [695] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [696] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [697] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [698] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [699] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [696] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [697] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [698] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [699] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [700] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [701] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [702] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [703] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [704] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [703] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [704] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [705] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [706] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [707] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [707] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [708] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [709] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [710] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [711] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [712] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [713] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [714] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [710] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [711] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [712] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [713] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [714] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [715] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [716] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [717] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [718] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 12}, - [719] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 12}, - [720] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 12}, - [721] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 12}, - [722] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [723] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [724] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [716] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [717] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [718] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [719] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [720] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 12}, + [721] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 12}, + [722] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 12}, + [723] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [724] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 12}, [725] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [726] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [727] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [726] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [727] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [728] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [729] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [730] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [731] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [732] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [733] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [731] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [732] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [733] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [734] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [735] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [735] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [736] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [737] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [738] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [739] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [738] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [739] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [740] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [741] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [742] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [743] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [743] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [744] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [745] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [746] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [747] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [748] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [749] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [749] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [750] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [751] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [752] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [753] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [754] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [755] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [751] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [752] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [753] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [754] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [755] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [756] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [757] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [757] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [758] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [759] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [760] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [761] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [759] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [760] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [761] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [762] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [763] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [764] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [765] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [766] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [765] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [766] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [767] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [768] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [769] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [770] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [771] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [772] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [773] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [774] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [773] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [774] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [775] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [776] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [776] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [777] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [778] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [779] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [780] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [779] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [780] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [781] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [782] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [783] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [783] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [784] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [785] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [786] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [785] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [786] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [787] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [788] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [788] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [789] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [790] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [790] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [791] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [792] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [792] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [793] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [794] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [795] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [795] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [796] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [797] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [798] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [799] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [798] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [799] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, [800] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [801] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [802] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [803] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [804] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [805] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [806] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [807] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [808] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [801] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [802] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [803] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [804] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [805] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [806] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [807] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [808] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [809] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [810] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [811] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [810] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [811] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [812] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [813] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [813] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [814] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [815] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [816] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [815] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [816] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [817] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [818] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [819] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [819] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [820] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [821] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [822] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [823] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [824] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [824] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [825] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [826] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [827] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [828] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [829] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [830] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [831] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [832] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [833] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [834] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [835] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [836] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [828] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [829] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [830] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [831] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [832] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [833] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [834] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [835] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [836] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [837] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [838] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [838] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [839] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [840] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [841] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [840] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [841] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [842] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [843] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [844] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [845] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [844] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [845] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [846] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [847] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [848] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, @@ -8342,29 +8367,29 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [851] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [852] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [853] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [854] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [855] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 13}, - [856] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 13}, + [854] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [855] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [856] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, [857] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 13}, [858] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 13}, - [859] = {.lex_state = 14, .external_lex_state = 9}, + [859] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 13}, [860] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 13}, [861] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 13}, [862] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 13}, [863] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 13}, - [864] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [864] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 13}, [865] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [866] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [867] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [868] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [869] = {.lex_state = 14, .external_lex_state = 12}, + [869] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [870] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [871] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [872] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [873] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [874] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [875] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [876] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [876] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [877] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [878] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [879] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, @@ -8384,7 +8409,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [893] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [894] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [895] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [896] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [896] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [897] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [898] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [899] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, @@ -8402,10 +8427,10 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [911] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [912] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [913] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [914] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [914] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [915] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [916] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [917] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [916] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [917] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [918] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [919] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [920] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, @@ -8419,1863 +8444,1867 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [928] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [929] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [930] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [931] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [931] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [932] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [933] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [934] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [935] = {.lex_state = 14, .external_lex_state = 13}, + [934] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [935] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [936] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [937] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [938] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [939] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [940] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [941] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [942] = {.lex_state = 14, .external_lex_state = 13}, - [943] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [944] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [941] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [942] = {.lex_state = 14, .external_lex_state = 9}, + [943] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [944] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [945] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [946] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [947] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [948] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [949] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [950] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [949] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [950] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [951] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [952] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [953] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [952] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [953] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [954] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [955] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [956] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [957] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [958] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [959] = {.lex_state = 14, .external_lex_state = 14}, - [960] = {.lex_state = 14, .external_lex_state = 4}, - [961] = {.lex_state = 14, .external_lex_state = 4}, - [962] = {.lex_state = 14, .external_lex_state = 15}, - [963] = {.lex_state = 14, .external_lex_state = 9}, - [964] = {.lex_state = 14, .external_lex_state = 14}, + [958] = {.lex_state = 14, .external_lex_state = 12}, + [959] = {.lex_state = 14, .external_lex_state = 12}, + [960] = {.lex_state = 14, .external_lex_state = 13}, + [961] = {.lex_state = 14, .external_lex_state = 9}, + [962] = {.lex_state = 14, .external_lex_state = 14}, + [963] = {.lex_state = 14, .external_lex_state = 15}, + [964] = {.lex_state = 14, .external_lex_state = 15}, [965] = {.lex_state = 14, .external_lex_state = 4}, - [966] = {.lex_state = 14, .external_lex_state = 8}, - [967] = {.lex_state = 14, .external_lex_state = 9}, + [966] = {.lex_state = 14, .external_lex_state = 4}, + [967] = {.lex_state = 14, .external_lex_state = 4}, [968] = {.lex_state = 14, .external_lex_state = 6}, - [969] = {.lex_state = 14, .external_lex_state = 8}, + [969] = {.lex_state = 14, .external_lex_state = 6}, [970] = {.lex_state = 14, .external_lex_state = 9}, - [971] = {.lex_state = 14, .external_lex_state = 8}, - [972] = {.lex_state = 14, .external_lex_state = 9}, - [973] = {.lex_state = 14, .external_lex_state = 6}, - [974] = {.lex_state = 14, .external_lex_state = 9}, + [971] = {.lex_state = 14, .external_lex_state = 9}, + [972] = {.lex_state = 14, .external_lex_state = 6}, + [973] = {.lex_state = 14, .external_lex_state = 9}, + [974] = {.lex_state = 14, .external_lex_state = 8}, [975] = {.lex_state = 14, .external_lex_state = 9}, - [976] = {.lex_state = 14, .external_lex_state = 12}, + [976] = {.lex_state = 14, .external_lex_state = 9}, [977] = {.lex_state = 14, .external_lex_state = 9}, [978] = {.lex_state = 14, .external_lex_state = 6}, - [979] = {.lex_state = 14, .external_lex_state = 9}, - [980] = {.lex_state = 14, .external_lex_state = 6}, + [979] = {.lex_state = 14, .external_lex_state = 13}, + [980] = {.lex_state = 14, .external_lex_state = 9}, [981] = {.lex_state = 14, .external_lex_state = 6}, - [982] = {.lex_state = 14, .external_lex_state = 6}, + [982] = {.lex_state = 14, .external_lex_state = 9}, [983] = {.lex_state = 14, .external_lex_state = 9}, - [984] = {.lex_state = 14, .external_lex_state = 9}, + [984] = {.lex_state = 14, .external_lex_state = 6}, [985] = {.lex_state = 14, .external_lex_state = 9}, - [986] = {.lex_state = 15, .external_lex_state = 12}, - [987] = {.lex_state = 14, .external_lex_state = 12}, - [988] = {.lex_state = 14, .external_lex_state = 13}, - [989] = {.lex_state = 14, .external_lex_state = 13}, + [986] = {.lex_state = 14, .external_lex_state = 8}, + [987] = {.lex_state = 14, .external_lex_state = 8}, + [988] = {.lex_state = 14, .external_lex_state = 2}, + [989] = {.lex_state = 14, .external_lex_state = 4}, [990] = {.lex_state = 14, .external_lex_state = 13}, - [991] = {.lex_state = 14, .external_lex_state = 14}, - [992] = {.lex_state = 14, .external_lex_state = 12}, + [991] = {.lex_state = 14, .external_lex_state = 13}, + [992] = {.lex_state = 14, .external_lex_state = 13}, [993] = {.lex_state = 14, .external_lex_state = 7}, - [994] = {.lex_state = 14, .external_lex_state = 12}, + [994] = {.lex_state = 14, .external_lex_state = 13}, [995] = {.lex_state = 14, .external_lex_state = 13}, - [996] = {.lex_state = 15, .external_lex_state = 9}, + [996] = {.lex_state = 14, .external_lex_state = 13}, [997] = {.lex_state = 14, .external_lex_state = 7}, [998] = {.lex_state = 14, .external_lex_state = 13}, - [999] = {.lex_state = 14, .external_lex_state = 12}, - [1000] = {.lex_state = 14, .external_lex_state = 12}, - [1001] = {.lex_state = 14, .external_lex_state = 13}, - [1002] = {.lex_state = 14, .external_lex_state = 13}, - [1003] = {.lex_state = 14, .external_lex_state = 13}, - [1004] = {.lex_state = 14, .external_lex_state = 13}, - [1005] = {.lex_state = 14, .external_lex_state = 13}, + [999] = {.lex_state = 14, .external_lex_state = 13}, + [1000] = {.lex_state = 14, .external_lex_state = 13}, + [1001] = {.lex_state = 15, .external_lex_state = 13}, + [1002] = {.lex_state = 15, .external_lex_state = 13}, + [1003] = {.lex_state = 14, .external_lex_state = 12}, + [1004] = {.lex_state = 14, .external_lex_state = 12}, + [1005] = {.lex_state = 14, .external_lex_state = 12}, [1006] = {.lex_state = 14, .external_lex_state = 12}, - [1007] = {.lex_state = 14, .external_lex_state = 4}, - [1008] = {.lex_state = 14, .external_lex_state = 13}, - [1009] = {.lex_state = 14, .external_lex_state = 7}, + [1007] = {.lex_state = 14, .external_lex_state = 12}, + [1008] = {.lex_state = 14, .external_lex_state = 12}, + [1009] = {.lex_state = 14, .external_lex_state = 12}, [1010] = {.lex_state = 14, .external_lex_state = 12}, - [1011] = {.lex_state = 15, .external_lex_state = 12}, - [1012] = {.lex_state = 14, .external_lex_state = 7}, - [1013] = {.lex_state = 14, .external_lex_state = 13}, - [1014] = {.lex_state = 14, .external_lex_state = 13}, - [1015] = {.lex_state = 14, .external_lex_state = 13}, - [1016] = {.lex_state = 14, .external_lex_state = 13}, - [1017] = {.lex_state = 14, .external_lex_state = 2}, - [1018] = {.lex_state = 15, .external_lex_state = 9}, - [1019] = {.lex_state = 14, .external_lex_state = 2}, + [1011] = {.lex_state = 14, .external_lex_state = 15}, + [1012] = {.lex_state = 15, .external_lex_state = 9}, + [1013] = {.lex_state = 14, .external_lex_state = 2}, + [1014] = {.lex_state = 14, .external_lex_state = 12}, + [1015] = {.lex_state = 14, .external_lex_state = 12}, + [1016] = {.lex_state = 14, .external_lex_state = 12}, + [1017] = {.lex_state = 14, .external_lex_state = 7}, + [1018] = {.lex_state = 14, .external_lex_state = 12}, + [1019] = {.lex_state = 14, .external_lex_state = 4}, [1020] = {.lex_state = 14, .external_lex_state = 12}, - [1021] = {.lex_state = 14, .external_lex_state = 13}, - [1022] = {.lex_state = 14, .external_lex_state = 13}, - [1023] = {.lex_state = 14, .external_lex_state = 13}, - [1024] = {.lex_state = 14, .external_lex_state = 13}, + [1021] = {.lex_state = 14, .external_lex_state = 12}, + [1022] = {.lex_state = 14, .external_lex_state = 12}, + [1023] = {.lex_state = 14, .external_lex_state = 12}, + [1024] = {.lex_state = 14, .external_lex_state = 12}, [1025] = {.lex_state = 14, .external_lex_state = 13}, - [1026] = {.lex_state = 14, .external_lex_state = 2}, - [1027] = {.lex_state = 14, .external_lex_state = 13}, + [1026] = {.lex_state = 14, .external_lex_state = 12}, + [1027] = {.lex_state = 14, .external_lex_state = 12}, [1028] = {.lex_state = 14, .external_lex_state = 13}, - [1029] = {.lex_state = 15, .external_lex_state = 9}, + [1029] = {.lex_state = 14, .external_lex_state = 12}, [1030] = {.lex_state = 14, .external_lex_state = 12}, - [1031] = {.lex_state = 14, .external_lex_state = 4}, - [1032] = {.lex_state = 14, .external_lex_state = 13}, - [1033] = {.lex_state = 14, .external_lex_state = 7}, + [1031] = {.lex_state = 14, .external_lex_state = 12}, + [1032] = {.lex_state = 14, .external_lex_state = 2}, + [1033] = {.lex_state = 14, .external_lex_state = 12}, [1034] = {.lex_state = 14, .external_lex_state = 12}, - [1035] = {.lex_state = 14, .external_lex_state = 13}, - [1036] = {.lex_state = 14, .external_lex_state = 13}, - [1037] = {.lex_state = 14, .external_lex_state = 13}, - [1038] = {.lex_state = 14, .external_lex_state = 13}, - [1039] = {.lex_state = 14, .external_lex_state = 12}, - [1040] = {.lex_state = 14, .external_lex_state = 13}, - [1041] = {.lex_state = 14, .external_lex_state = 7}, - [1042] = {.lex_state = 15, .external_lex_state = 12}, - [1043] = {.lex_state = 14, .external_lex_state = 9}, - [1044] = {.lex_state = 14, .external_lex_state = 15}, - [1045] = {.lex_state = 14, .external_lex_state = 15}, - [1046] = {.lex_state = 14, .external_lex_state = 15}, - [1047] = {.lex_state = 14, .external_lex_state = 15}, - [1048] = {.lex_state = 14, .external_lex_state = 6}, - [1049] = {.lex_state = 14, .external_lex_state = 15}, - [1050] = {.lex_state = 14, .external_lex_state = 15}, - [1051] = {.lex_state = 14, .external_lex_state = 15}, - [1052] = {.lex_state = 14, .external_lex_state = 14}, - [1053] = {.lex_state = 14, .external_lex_state = 15}, - [1054] = {.lex_state = 14, .external_lex_state = 14}, - [1055] = {.lex_state = 14, .external_lex_state = 9}, - [1056] = {.lex_state = 14, .external_lex_state = 9}, - [1057] = {.lex_state = 14, .external_lex_state = 6}, - [1058] = {.lex_state = 14, .external_lex_state = 14}, - [1059] = {.lex_state = 14, .external_lex_state = 14}, - [1060] = {.lex_state = 14, .external_lex_state = 14}, + [1035] = {.lex_state = 14, .external_lex_state = 7}, + [1036] = {.lex_state = 14, .external_lex_state = 12}, + [1037] = {.lex_state = 15, .external_lex_state = 9}, + [1038] = {.lex_state = 14, .external_lex_state = 12}, + [1039] = {.lex_state = 14, .external_lex_state = 7}, + [1040] = {.lex_state = 14, .external_lex_state = 12}, + [1041] = {.lex_state = 15, .external_lex_state = 9}, + [1042] = {.lex_state = 14, .external_lex_state = 12}, + [1043] = {.lex_state = 14, .external_lex_state = 7}, + [1044] = {.lex_state = 14, .external_lex_state = 9}, + [1045] = {.lex_state = 14, .external_lex_state = 6}, + [1046] = {.lex_state = 14, .external_lex_state = 9}, + [1047] = {.lex_state = 14, .external_lex_state = 8}, + [1048] = {.lex_state = 14, .external_lex_state = 9}, + [1049] = {.lex_state = 14, .external_lex_state = 8}, + [1050] = {.lex_state = 14, .external_lex_state = 9}, + [1051] = {.lex_state = 14, .external_lex_state = 9}, + [1052] = {.lex_state = 14, .external_lex_state = 15}, + [1053] = {.lex_state = 14, .external_lex_state = 14}, + [1054] = {.lex_state = 14, .external_lex_state = 9}, + [1055] = {.lex_state = 14, .external_lex_state = 15}, + [1056] = {.lex_state = 15, .external_lex_state = 15}, + [1057] = {.lex_state = 14, .external_lex_state = 9}, + [1058] = {.lex_state = 14, .external_lex_state = 8}, + [1059] = {.lex_state = 14, .external_lex_state = 9}, + [1060] = {.lex_state = 15, .external_lex_state = 15}, [1061] = {.lex_state = 14, .external_lex_state = 14}, - [1062] = {.lex_state = 14, .external_lex_state = 14}, - [1063] = {.lex_state = 14, .external_lex_state = 14}, - [1064] = {.lex_state = 14, .external_lex_state = 14}, - [1065] = {.lex_state = 14, .external_lex_state = 14}, - [1066] = {.lex_state = 14, .external_lex_state = 9}, - [1067] = {.lex_state = 14, .external_lex_state = 9}, - [1068] = {.lex_state = 14, .external_lex_state = 8}, + [1062] = {.lex_state = 14, .external_lex_state = 9}, + [1063] = {.lex_state = 15, .external_lex_state = 12}, + [1064] = {.lex_state = 15, .external_lex_state = 12}, + [1065] = {.lex_state = 15, .external_lex_state = 12}, + [1066] = {.lex_state = 14, .external_lex_state = 8}, + [1067] = {.lex_state = 14, .external_lex_state = 14}, + [1068] = {.lex_state = 14, .external_lex_state = 9}, [1069] = {.lex_state = 14, .external_lex_state = 9}, - [1070] = {.lex_state = 15, .external_lex_state = 13}, - [1071] = {.lex_state = 15, .external_lex_state = 13}, - [1072] = {.lex_state = 15, .external_lex_state = 13}, - [1073] = {.lex_state = 14, .external_lex_state = 9}, - [1074] = {.lex_state = 14, .external_lex_state = 9}, + [1070] = {.lex_state = 14, .external_lex_state = 9}, + [1071] = {.lex_state = 14, .external_lex_state = 14}, + [1072] = {.lex_state = 14, .external_lex_state = 9}, + [1073] = {.lex_state = 14, .external_lex_state = 15}, + [1074] = {.lex_state = 14, .external_lex_state = 14}, [1075] = {.lex_state = 14, .external_lex_state = 9}, - [1076] = {.lex_state = 14, .external_lex_state = 9}, - [1077] = {.lex_state = 14, .external_lex_state = 9}, - [1078] = {.lex_state = 15, .external_lex_state = 13}, - [1079] = {.lex_state = 14, .external_lex_state = 8}, - [1080] = {.lex_state = 14, .external_lex_state = 8}, - [1081] = {.lex_state = 14, .external_lex_state = 9}, - [1082] = {.lex_state = 15, .external_lex_state = 14}, - [1083] = {.lex_state = 15, .external_lex_state = 14}, - [1084] = {.lex_state = 14, .external_lex_state = 9}, - [1085] = {.lex_state = 14, .external_lex_state = 9}, - [1086] = {.lex_state = 15, .external_lex_state = 14}, - [1087] = {.lex_state = 15, .external_lex_state = 12}, - [1088] = {.lex_state = 15, .external_lex_state = 14}, - [1089] = {.lex_state = 14, .external_lex_state = 9}, - [1090] = {.lex_state = 14, .external_lex_state = 9}, - [1091] = {.lex_state = 15, .external_lex_state = 9}, - [1092] = {.lex_state = 15, .external_lex_state = 9}, + [1076] = {.lex_state = 14, .external_lex_state = 15}, + [1077] = {.lex_state = 14, .external_lex_state = 15}, + [1078] = {.lex_state = 14, .external_lex_state = 9}, + [1079] = {.lex_state = 15, .external_lex_state = 12}, + [1080] = {.lex_state = 15, .external_lex_state = 12}, + [1081] = {.lex_state = 15, .external_lex_state = 13}, + [1082] = {.lex_state = 14, .external_lex_state = 9}, + [1083] = {.lex_state = 14, .external_lex_state = 9}, + [1084] = {.lex_state = 14, .external_lex_state = 6}, + [1085] = {.lex_state = 14, .external_lex_state = 15}, + [1086] = {.lex_state = 14, .external_lex_state = 9}, + [1087] = {.lex_state = 15, .external_lex_state = 15}, + [1088] = {.lex_state = 14, .external_lex_state = 9}, + [1089] = {.lex_state = 15, .external_lex_state = 12}, + [1090] = {.lex_state = 15, .external_lex_state = 12}, + [1091] = {.lex_state = 14, .external_lex_state = 9}, + [1092] = {.lex_state = 15, .external_lex_state = 15}, [1093] = {.lex_state = 14, .external_lex_state = 9}, [1094] = {.lex_state = 14, .external_lex_state = 9}, - [1095] = {.lex_state = 14, .external_lex_state = 9}, + [1095] = {.lex_state = 15, .external_lex_state = 13}, [1096] = {.lex_state = 14, .external_lex_state = 9}, - [1097] = {.lex_state = 14, .external_lex_state = 9}, - [1098] = {.lex_state = 15, .external_lex_state = 14}, - [1099] = {.lex_state = 14, .external_lex_state = 14}, - [1100] = {.lex_state = 14, .external_lex_state = 8}, - [1101] = {.lex_state = 14, .external_lex_state = 9}, + [1097] = {.lex_state = 14, .external_lex_state = 15}, + [1098] = {.lex_state = 15, .external_lex_state = 13}, + [1099] = {.lex_state = 14, .external_lex_state = 15}, + [1100] = {.lex_state = 15, .external_lex_state = 12}, + [1101] = {.lex_state = 15, .external_lex_state = 13}, [1102] = {.lex_state = 14, .external_lex_state = 9}, - [1103] = {.lex_state = 14, .external_lex_state = 14}, + [1103] = {.lex_state = 15, .external_lex_state = 12}, [1104] = {.lex_state = 14, .external_lex_state = 9}, - [1105] = {.lex_state = 14, .external_lex_state = 14}, - [1106] = {.lex_state = 14, .external_lex_state = 14}, - [1107] = {.lex_state = 14, .external_lex_state = 14}, - [1108] = {.lex_state = 14, .external_lex_state = 9}, - [1109] = {.lex_state = 14, .external_lex_state = 9}, - [1110] = {.lex_state = 15, .external_lex_state = 13}, - [1111] = {.lex_state = 15, .external_lex_state = 13}, + [1105] = {.lex_state = 15, .external_lex_state = 12}, + [1106] = {.lex_state = 14, .external_lex_state = 9}, + [1107] = {.lex_state = 14, .external_lex_state = 15}, + [1108] = {.lex_state = 14, .external_lex_state = 15}, + [1109] = {.lex_state = 14, .external_lex_state = 15}, + [1110] = {.lex_state = 15, .external_lex_state = 12}, + [1111] = {.lex_state = 14, .external_lex_state = 15}, [1112] = {.lex_state = 14, .external_lex_state = 9}, - [1113] = {.lex_state = 14, .external_lex_state = 9}, - [1114] = {.lex_state = 15, .external_lex_state = 13}, - [1115] = {.lex_state = 14, .external_lex_state = 8}, - [1116] = {.lex_state = 14, .external_lex_state = 9}, - [1117] = {.lex_state = 15, .external_lex_state = 13}, - [1118] = {.lex_state = 15, .external_lex_state = 13}, - [1119] = {.lex_state = 14, .external_lex_state = 14}, - [1120] = {.lex_state = 14, .external_lex_state = 9}, - [1121] = {.lex_state = 14, .external_lex_state = 14}, - [1122] = {.lex_state = 14, .external_lex_state = 15}, - [1123] = {.lex_state = 14, .external_lex_state = 14}, + [1113] = {.lex_state = 15, .external_lex_state = 12}, + [1114] = {.lex_state = 15, .external_lex_state = 15}, + [1115] = {.lex_state = 14, .external_lex_state = 9}, + [1116] = {.lex_state = 14, .external_lex_state = 15}, + [1117] = {.lex_state = 14, .external_lex_state = 9}, + [1118] = {.lex_state = 14, .external_lex_state = 15}, + [1119] = {.lex_state = 15, .external_lex_state = 9}, + [1120] = {.lex_state = 15, .external_lex_state = 9}, + [1121] = {.lex_state = 14, .external_lex_state = 9}, + [1122] = {.lex_state = 14, .external_lex_state = 14}, + [1123] = {.lex_state = 14, .external_lex_state = 9}, [1124] = {.lex_state = 14, .external_lex_state = 15}, - [1125] = {.lex_state = 14, .external_lex_state = 14}, - [1126] = {.lex_state = 14, .external_lex_state = 6}, - [1127] = {.lex_state = 14, .external_lex_state = 14}, - [1128] = {.lex_state = 15, .external_lex_state = 12}, - [1129] = {.lex_state = 15, .external_lex_state = 12}, - [1130] = {.lex_state = 15, .external_lex_state = 12}, - [1131] = {.lex_state = 15, .external_lex_state = 12}, - [1132] = {.lex_state = 14, .external_lex_state = 9}, - [1133] = {.lex_state = 14, .external_lex_state = 9}, - [1134] = {.lex_state = 15, .external_lex_state = 13}, - [1135] = {.lex_state = 15, .external_lex_state = 13}, - [1136] = {.lex_state = 15, .external_lex_state = 13}, - [1137] = {.lex_state = 14, .external_lex_state = 9}, + [1125] = {.lex_state = 14, .external_lex_state = 9}, + [1126] = {.lex_state = 14, .external_lex_state = 14}, + [1127] = {.lex_state = 14, .external_lex_state = 15}, + [1128] = {.lex_state = 14, .external_lex_state = 9}, + [1129] = {.lex_state = 14, .external_lex_state = 14}, + [1130] = {.lex_state = 14, .external_lex_state = 9}, + [1131] = {.lex_state = 14, .external_lex_state = 8}, + [1132] = {.lex_state = 14, .external_lex_state = 6}, + [1133] = {.lex_state = 15, .external_lex_state = 13}, + [1134] = {.lex_state = 14, .external_lex_state = 15}, + [1135] = {.lex_state = 14, .external_lex_state = 15}, + [1136] = {.lex_state = 14, .external_lex_state = 6}, + [1137] = {.lex_state = 14, .external_lex_state = 15}, [1138] = {.lex_state = 14, .external_lex_state = 9}, - [1139] = {.lex_state = 14, .external_lex_state = 6}, - [1140] = {.lex_state = 14, .external_lex_state = 9}, - [1141] = {.lex_state = 14, .external_lex_state = 9}, - [1142] = {.lex_state = 14, .external_lex_state = 12}, - [1143] = {.lex_state = 14, .external_lex_state = 13}, - [1144] = {.lex_state = 14, .external_lex_state = 7}, - [1145] = {.lex_state = 14, .external_lex_state = 13}, - [1146] = {.lex_state = 14, .external_lex_state = 13}, - [1147] = {.lex_state = 14, .external_lex_state = 13}, - [1148] = {.lex_state = 14, .external_lex_state = 12}, - [1149] = {.lex_state = 14, .external_lex_state = 12}, - [1150] = {.lex_state = 14, .external_lex_state = 13}, + [1139] = {.lex_state = 14, .external_lex_state = 9}, + [1140] = {.lex_state = 14, .external_lex_state = 15}, + [1141] = {.lex_state = 14, .external_lex_state = 14}, + [1142] = {.lex_state = 14, .external_lex_state = 14}, + [1143] = {.lex_state = 15, .external_lex_state = 13}, + [1144] = {.lex_state = 14, .external_lex_state = 13}, + [1145] = {.lex_state = 14, .external_lex_state = 7}, + [1146] = {.lex_state = 14, .external_lex_state = 12}, + [1147] = {.lex_state = 14, .external_lex_state = 12}, + [1148] = {.lex_state = 14, .external_lex_state = 13}, + [1149] = {.lex_state = 14, .external_lex_state = 13}, + [1150] = {.lex_state = 14, .external_lex_state = 15}, [1151] = {.lex_state = 14, .external_lex_state = 12}, - [1152] = {.lex_state = 14, .external_lex_state = 7}, - [1153] = {.lex_state = 14, .external_lex_state = 13}, - [1154] = {.lex_state = 14, .external_lex_state = 13}, + [1152] = {.lex_state = 14, .external_lex_state = 12}, + [1153] = {.lex_state = 14, .external_lex_state = 12}, + [1154] = {.lex_state = 14, .external_lex_state = 7}, [1155] = {.lex_state = 14, .external_lex_state = 12}, [1156] = {.lex_state = 14, .external_lex_state = 12}, [1157] = {.lex_state = 14, .external_lex_state = 12}, - [1158] = {.lex_state = 14, .external_lex_state = 12}, - [1159] = {.lex_state = 14, .external_lex_state = 12}, - [1160] = {.lex_state = 14, .external_lex_state = 12}, - [1161] = {.lex_state = 14, .external_lex_state = 12}, - [1162] = {.lex_state = 14, .external_lex_state = 12}, - [1163] = {.lex_state = 14, .external_lex_state = 12}, - [1164] = {.lex_state = 14, .external_lex_state = 12}, + [1158] = {.lex_state = 14, .external_lex_state = 13}, + [1159] = {.lex_state = 14, .external_lex_state = 13}, + [1160] = {.lex_state = 14, .external_lex_state = 13}, + [1161] = {.lex_state = 14, .external_lex_state = 13}, + [1162] = {.lex_state = 14, .external_lex_state = 13}, + [1163] = {.lex_state = 14, .external_lex_state = 13}, + [1164] = {.lex_state = 14, .external_lex_state = 13}, [1165] = {.lex_state = 14, .external_lex_state = 13}, [1166] = {.lex_state = 14, .external_lex_state = 13}, - [1167] = {.lex_state = 14, .external_lex_state = 12}, - [1168] = {.lex_state = 14, .external_lex_state = 13}, - [1169] = {.lex_state = 15, .external_lex_state = 15}, - [1170] = {.lex_state = 15, .external_lex_state = 14}, - [1171] = {.lex_state = 15, .external_lex_state = 14}, - [1172] = {.lex_state = 15, .external_lex_state = 14}, + [1167] = {.lex_state = 14, .external_lex_state = 13}, + [1168] = {.lex_state = 14, .external_lex_state = 12}, + [1169] = {.lex_state = 14, .external_lex_state = 12}, + [1170] = {.lex_state = 15, .external_lex_state = 15}, + [1171] = {.lex_state = 14, .external_lex_state = 15}, + [1172] = {.lex_state = 14, .external_lex_state = 12}, [1173] = {.lex_state = 14, .external_lex_state = 13}, - [1174] = {.lex_state = 14, .external_lex_state = 13}, + [1174] = {.lex_state = 14, .external_lex_state = 12}, [1175] = {.lex_state = 14, .external_lex_state = 12}, [1176] = {.lex_state = 14, .external_lex_state = 12}, - [1177] = {.lex_state = 14, .external_lex_state = 12}, - [1178] = {.lex_state = 14, .external_lex_state = 14}, - [1179] = {.lex_state = 15, .external_lex_state = 15}, - [1180] = {.lex_state = 14, .external_lex_state = 13}, - [1181] = {.lex_state = 15, .external_lex_state = 15}, - [1182] = {.lex_state = 14, .external_lex_state = 7}, - [1183] = {.lex_state = 15, .external_lex_state = 12}, - [1184] = {.lex_state = 15, .external_lex_state = 12}, + [1177] = {.lex_state = 14, .external_lex_state = 15}, + [1178] = {.lex_state = 14, .external_lex_state = 15}, + [1179] = {.lex_state = 14, .external_lex_state = 15}, + [1180] = {.lex_state = 14, .external_lex_state = 15}, + [1181] = {.lex_state = 14, .external_lex_state = 13}, + [1182] = {.lex_state = 14, .external_lex_state = 12}, + [1183] = {.lex_state = 14, .external_lex_state = 13}, + [1184] = {.lex_state = 14, .external_lex_state = 13}, [1185] = {.lex_state = 14, .external_lex_state = 13}, [1186] = {.lex_state = 14, .external_lex_state = 12}, - [1187] = {.lex_state = 14, .external_lex_state = 12}, + [1187] = {.lex_state = 14, .external_lex_state = 13}, [1188] = {.lex_state = 14, .external_lex_state = 12}, [1189] = {.lex_state = 14, .external_lex_state = 12}, [1190] = {.lex_state = 14, .external_lex_state = 12}, [1191] = {.lex_state = 14, .external_lex_state = 12}, - [1192] = {.lex_state = 14, .external_lex_state = 13}, + [1192] = {.lex_state = 14, .external_lex_state = 12}, [1193] = {.lex_state = 14, .external_lex_state = 12}, - [1194] = {.lex_state = 14, .external_lex_state = 12}, + [1194] = {.lex_state = 14, .external_lex_state = 13}, [1195] = {.lex_state = 14, .external_lex_state = 12}, [1196] = {.lex_state = 14, .external_lex_state = 12}, [1197] = {.lex_state = 14, .external_lex_state = 12}, - [1198] = {.lex_state = 14, .external_lex_state = 14}, - [1199] = {.lex_state = 14, .external_lex_state = 12}, - [1200] = {.lex_state = 14, .external_lex_state = 12}, + [1198] = {.lex_state = 14, .external_lex_state = 13}, + [1199] = {.lex_state = 14, .external_lex_state = 13}, + [1200] = {.lex_state = 14, .external_lex_state = 13}, [1201] = {.lex_state = 14, .external_lex_state = 12}, [1202] = {.lex_state = 14, .external_lex_state = 12}, - [1203] = {.lex_state = 14, .external_lex_state = 12}, - [1204] = {.lex_state = 14, .external_lex_state = 12}, + [1203] = {.lex_state = 14, .external_lex_state = 13}, + [1204] = {.lex_state = 14, .external_lex_state = 13}, [1205] = {.lex_state = 14, .external_lex_state = 12}, - [1206] = {.lex_state = 14, .external_lex_state = 13}, - [1207] = {.lex_state = 14, .external_lex_state = 14}, + [1206] = {.lex_state = 14, .external_lex_state = 12}, + [1207] = {.lex_state = 14, .external_lex_state = 12}, [1208] = {.lex_state = 14, .external_lex_state = 13}, - [1209] = {.lex_state = 14, .external_lex_state = 14}, + [1209] = {.lex_state = 14, .external_lex_state = 13}, [1210] = {.lex_state = 14, .external_lex_state = 13}, [1211] = {.lex_state = 14, .external_lex_state = 13}, - [1212] = {.lex_state = 14, .external_lex_state = 13}, - [1213] = {.lex_state = 14, .external_lex_state = 13}, + [1212] = {.lex_state = 14, .external_lex_state = 12}, + [1213] = {.lex_state = 14, .external_lex_state = 12}, [1214] = {.lex_state = 14, .external_lex_state = 12}, - [1215] = {.lex_state = 15, .external_lex_state = 14}, - [1216] = {.lex_state = 15, .external_lex_state = 14}, - [1217] = {.lex_state = 15, .external_lex_state = 14}, - [1218] = {.lex_state = 15, .external_lex_state = 14}, - [1219] = {.lex_state = 14, .external_lex_state = 14}, - [1220] = {.lex_state = 14, .external_lex_state = 13}, + [1215] = {.lex_state = 14, .external_lex_state = 12}, + [1216] = {.lex_state = 14, .external_lex_state = 13}, + [1217] = {.lex_state = 15, .external_lex_state = 15}, + [1218] = {.lex_state = 15, .external_lex_state = 15}, + [1219] = {.lex_state = 14, .external_lex_state = 13}, + [1220] = {.lex_state = 15, .external_lex_state = 15}, [1221] = {.lex_state = 14, .external_lex_state = 13}, - [1222] = {.lex_state = 14, .external_lex_state = 13}, + [1222] = {.lex_state = 14, .external_lex_state = 12}, [1223] = {.lex_state = 14, .external_lex_state = 13}, - [1224] = {.lex_state = 15, .external_lex_state = 12}, - [1225] = {.lex_state = 15, .external_lex_state = 14}, - [1226] = {.lex_state = 14, .external_lex_state = 13}, - [1227] = {.lex_state = 14, .external_lex_state = 13}, - [1228] = {.lex_state = 15, .external_lex_state = 14}, - [1229] = {.lex_state = 15, .external_lex_state = 15}, + [1224] = {.lex_state = 14, .external_lex_state = 13}, + [1225] = {.lex_state = 15, .external_lex_state = 15}, + [1226] = {.lex_state = 14, .external_lex_state = 7}, + [1227] = {.lex_state = 15, .external_lex_state = 14}, + [1228] = {.lex_state = 14, .external_lex_state = 12}, + [1229] = {.lex_state = 14, .external_lex_state = 12}, [1230] = {.lex_state = 15, .external_lex_state = 14}, [1231] = {.lex_state = 14, .external_lex_state = 13}, [1232] = {.lex_state = 14, .external_lex_state = 13}, - [1233] = {.lex_state = 14, .external_lex_state = 13}, - [1234] = {.lex_state = 14, .external_lex_state = 13}, - [1235] = {.lex_state = 14, .external_lex_state = 13}, + [1233] = {.lex_state = 14, .external_lex_state = 12}, + [1234] = {.lex_state = 14, .external_lex_state = 12}, + [1235] = {.lex_state = 14, .external_lex_state = 12}, [1236] = {.lex_state = 14, .external_lex_state = 13}, - [1237] = {.lex_state = 14, .external_lex_state = 13}, + [1237] = {.lex_state = 14, .external_lex_state = 12}, [1238] = {.lex_state = 14, .external_lex_state = 13}, [1239] = {.lex_state = 14, .external_lex_state = 13}, [1240] = {.lex_state = 14, .external_lex_state = 13}, - [1241] = {.lex_state = 14, .external_lex_state = 12}, + [1241] = {.lex_state = 14, .external_lex_state = 13}, [1242] = {.lex_state = 14, .external_lex_state = 13}, - [1243] = {.lex_state = 15, .external_lex_state = 15}, - [1244] = {.lex_state = 15, .external_lex_state = 12}, - [1245] = {.lex_state = 15, .external_lex_state = 12}, - [1246] = {.lex_state = 14, .external_lex_state = 13}, - [1247] = {.lex_state = 14, .external_lex_state = 13}, - [1248] = {.lex_state = 14, .external_lex_state = 13}, + [1243] = {.lex_state = 15, .external_lex_state = 13}, + [1244] = {.lex_state = 14, .external_lex_state = 12}, + [1245] = {.lex_state = 14, .external_lex_state = 12}, + [1246] = {.lex_state = 14, .external_lex_state = 12}, + [1247] = {.lex_state = 14, .external_lex_state = 12}, + [1248] = {.lex_state = 14, .external_lex_state = 12}, [1249] = {.lex_state = 14, .external_lex_state = 13}, - [1250] = {.lex_state = 14, .external_lex_state = 13}, - [1251] = {.lex_state = 14, .external_lex_state = 13}, + [1250] = {.lex_state = 14, .external_lex_state = 12}, + [1251] = {.lex_state = 14, .external_lex_state = 12}, [1252] = {.lex_state = 14, .external_lex_state = 13}, [1253] = {.lex_state = 14, .external_lex_state = 12}, - [1254] = {.lex_state = 14, .external_lex_state = 13}, - [1255] = {.lex_state = 14, .external_lex_state = 13}, - [1256] = {.lex_state = 14, .external_lex_state = 13}, + [1254] = {.lex_state = 14, .external_lex_state = 12}, + [1255] = {.lex_state = 14, .external_lex_state = 12}, + [1256] = {.lex_state = 14, .external_lex_state = 12}, [1257] = {.lex_state = 14, .external_lex_state = 12}, [1258] = {.lex_state = 14, .external_lex_state = 12}, - [1259] = {.lex_state = 14, .external_lex_state = 12}, - [1260] = {.lex_state = 14, .external_lex_state = 13}, - [1261] = {.lex_state = 14, .external_lex_state = 13}, - [1262] = {.lex_state = 14, .external_lex_state = 12}, - [1263] = {.lex_state = 14, .external_lex_state = 12}, - [1264] = {.lex_state = 15, .external_lex_state = 14}, - [1265] = {.lex_state = 14, .external_lex_state = 13}, - [1266] = {.lex_state = 15, .external_lex_state = 14}, - [1267] = {.lex_state = 14, .external_lex_state = 13}, + [1259] = {.lex_state = 15, .external_lex_state = 15}, + [1260] = {.lex_state = 14, .external_lex_state = 12}, + [1261] = {.lex_state = 14, .external_lex_state = 12}, + [1262] = {.lex_state = 14, .external_lex_state = 2}, + [1263] = {.lex_state = 15, .external_lex_state = 13}, + [1264] = {.lex_state = 14, .external_lex_state = 12}, + [1265] = {.lex_state = 14, .external_lex_state = 2}, + [1266] = {.lex_state = 14, .external_lex_state = 13}, + [1267] = {.lex_state = 14, .external_lex_state = 12}, [1268] = {.lex_state = 14, .external_lex_state = 12}, [1269] = {.lex_state = 14, .external_lex_state = 13}, - [1270] = {.lex_state = 14, .external_lex_state = 13}, - [1271] = {.lex_state = 14, .external_lex_state = 13}, - [1272] = {.lex_state = 14, .external_lex_state = 13}, - [1273] = {.lex_state = 14, .external_lex_state = 13}, - [1274] = {.lex_state = 14, .external_lex_state = 7}, - [1275] = {.lex_state = 14, .external_lex_state = 14}, - [1276] = {.lex_state = 14, .external_lex_state = 14}, - [1277] = {.lex_state = 14, .external_lex_state = 2}, - [1278] = {.lex_state = 14, .external_lex_state = 13}, - [1279] = {.lex_state = 14, .external_lex_state = 13}, - [1280] = {.lex_state = 14, .external_lex_state = 13}, - [1281] = {.lex_state = 14, .external_lex_state = 13}, - [1282] = {.lex_state = 14, .external_lex_state = 13}, - [1283] = {.lex_state = 14, .external_lex_state = 13}, + [1270] = {.lex_state = 15, .external_lex_state = 15}, + [1271] = {.lex_state = 15, .external_lex_state = 15}, + [1272] = {.lex_state = 15, .external_lex_state = 15}, + [1273] = {.lex_state = 15, .external_lex_state = 15}, + [1274] = {.lex_state = 15, .external_lex_state = 15}, + [1275] = {.lex_state = 14, .external_lex_state = 12}, + [1276] = {.lex_state = 14, .external_lex_state = 13}, + [1277] = {.lex_state = 15, .external_lex_state = 15}, + [1278] = {.lex_state = 14, .external_lex_state = 7}, + [1279] = {.lex_state = 15, .external_lex_state = 13}, + [1280] = {.lex_state = 15, .external_lex_state = 13}, + [1281] = {.lex_state = 15, .external_lex_state = 14}, + [1282] = {.lex_state = 15, .external_lex_state = 14}, + [1283] = {.lex_state = 15, .external_lex_state = 14}, [1284] = {.lex_state = 14, .external_lex_state = 12}, - [1285] = {.lex_state = 14, .external_lex_state = 12}, - [1286] = {.lex_state = 14, .external_lex_state = 13}, - [1287] = {.lex_state = 14, .external_lex_state = 13}, - [1288] = {.lex_state = 14, .external_lex_state = 13}, - [1289] = {.lex_state = 14, .external_lex_state = 13}, - [1290] = {.lex_state = 14, .external_lex_state = 13}, - [1291] = {.lex_state = 14, .external_lex_state = 13}, - [1292] = {.lex_state = 15, .external_lex_state = 12}, - [1293] = {.lex_state = 14, .external_lex_state = 13}, - [1294] = {.lex_state = 14, .external_lex_state = 2}, - [1295] = {.lex_state = 14, .external_lex_state = 15}, + [1285] = {.lex_state = 15, .external_lex_state = 13}, + [1286] = {.lex_state = 14, .external_lex_state = 12}, + [1287] = {.lex_state = 14, .external_lex_state = 12}, + [1288] = {.lex_state = 15, .external_lex_state = 13}, + [1289] = {.lex_state = 14, .external_lex_state = 12}, + [1290] = {.lex_state = 14, .external_lex_state = 12}, + [1291] = {.lex_state = 14, .external_lex_state = 15}, + [1292] = {.lex_state = 14, .external_lex_state = 12}, + [1293] = {.lex_state = 14, .external_lex_state = 12}, + [1294] = {.lex_state = 14, .external_lex_state = 12}, + [1295] = {.lex_state = 14, .external_lex_state = 12}, [1296] = {.lex_state = 14, .external_lex_state = 12}, [1297] = {.lex_state = 14, .external_lex_state = 15}, - [1298] = {.lex_state = 14, .external_lex_state = 14}, + [1298] = {.lex_state = 14, .external_lex_state = 15}, [1299] = {.lex_state = 14, .external_lex_state = 14}, [1300] = {.lex_state = 14, .external_lex_state = 14}, - [1301] = {.lex_state = 14, .external_lex_state = 15}, - [1302] = {.lex_state = 14, .external_lex_state = 14}, - [1303] = {.lex_state = 14, .external_lex_state = 14}, - [1304] = {.lex_state = 14, .external_lex_state = 9}, + [1301] = {.lex_state = 14, .external_lex_state = 14}, + [1302] = {.lex_state = 14, .external_lex_state = 15}, + [1303] = {.lex_state = 14, .external_lex_state = 15}, + [1304] = {.lex_state = 14, .external_lex_state = 15}, [1305] = {.lex_state = 14, .external_lex_state = 15}, [1306] = {.lex_state = 14, .external_lex_state = 15}, - [1307] = {.lex_state = 14, .external_lex_state = 14}, - [1308] = {.lex_state = 14, .external_lex_state = 15}, - [1309] = {.lex_state = 14, .external_lex_state = 15}, + [1307] = {.lex_state = 14, .external_lex_state = 15}, + [1308] = {.lex_state = 14, .external_lex_state = 14}, + [1309] = {.lex_state = 14, .external_lex_state = 13}, [1310] = {.lex_state = 14, .external_lex_state = 15}, - [1311] = {.lex_state = 14, .external_lex_state = 15}, - [1312] = {.lex_state = 14, .external_lex_state = 15}, - [1313] = {.lex_state = 14, .external_lex_state = 14}, - [1314] = {.lex_state = 14, .external_lex_state = 14}, - [1315] = {.lex_state = 14, .external_lex_state = 14}, - [1316] = {.lex_state = 14, .external_lex_state = 14}, + [1311] = {.lex_state = 9, .external_lex_state = 9}, + [1312] = {.lex_state = 9, .external_lex_state = 9}, + [1313] = {.lex_state = 14, .external_lex_state = 15}, + [1314] = {.lex_state = 14, .external_lex_state = 15}, + [1315] = {.lex_state = 14, .external_lex_state = 15}, + [1316] = {.lex_state = 14, .external_lex_state = 13}, [1317] = {.lex_state = 14, .external_lex_state = 15}, [1318] = {.lex_state = 14, .external_lex_state = 14}, [1319] = {.lex_state = 14, .external_lex_state = 14}, - [1320] = {.lex_state = 14, .external_lex_state = 14}, - [1321] = {.lex_state = 14, .external_lex_state = 15}, + [1320] = {.lex_state = 14, .external_lex_state = 13}, + [1321] = {.lex_state = 14, .external_lex_state = 14}, [1322] = {.lex_state = 14, .external_lex_state = 14}, - [1323] = {.lex_state = 14, .external_lex_state = 15}, - [1324] = {.lex_state = 14, .external_lex_state = 15}, + [1323] = {.lex_state = 14, .external_lex_state = 14}, + [1324] = {.lex_state = 14, .external_lex_state = 14}, [1325] = {.lex_state = 14, .external_lex_state = 15}, [1326] = {.lex_state = 14, .external_lex_state = 15}, - [1327] = {.lex_state = 14, .external_lex_state = 14}, + [1327] = {.lex_state = 14, .external_lex_state = 15}, [1328] = {.lex_state = 14, .external_lex_state = 15}, - [1329] = {.lex_state = 14, .external_lex_state = 15}, - [1330] = {.lex_state = 14, .external_lex_state = 14}, - [1331] = {.lex_state = 14, .external_lex_state = 14}, + [1329] = {.lex_state = 14, .external_lex_state = 8}, + [1330] = {.lex_state = 14, .external_lex_state = 15}, + [1331] = {.lex_state = 14, .external_lex_state = 15}, [1332] = {.lex_state = 14, .external_lex_state = 14}, - [1333] = {.lex_state = 14, .external_lex_state = 14}, + [1333] = {.lex_state = 14, .external_lex_state = 8}, [1334] = {.lex_state = 14, .external_lex_state = 14}, - [1335] = {.lex_state = 14, .external_lex_state = 14}, - [1336] = {.lex_state = 14, .external_lex_state = 14}, - [1337] = {.lex_state = 14, .external_lex_state = 14}, + [1335] = {.lex_state = 9, .external_lex_state = 9}, + [1336] = {.lex_state = 9, .external_lex_state = 9}, + [1337] = {.lex_state = 9, .external_lex_state = 9}, [1338] = {.lex_state = 14, .external_lex_state = 14}, [1339] = {.lex_state = 14, .external_lex_state = 14}, [1340] = {.lex_state = 14, .external_lex_state = 15}, [1341] = {.lex_state = 14, .external_lex_state = 14}, - [1342] = {.lex_state = 15, .external_lex_state = 14}, - [1343] = {.lex_state = 14, .external_lex_state = 8}, - [1344] = {.lex_state = 15, .external_lex_state = 14}, - [1345] = {.lex_state = 15, .external_lex_state = 14}, - [1346] = {.lex_state = 15, .external_lex_state = 12}, + [1342] = {.lex_state = 9, .external_lex_state = 9}, + [1343] = {.lex_state = 14, .external_lex_state = 14}, + [1344] = {.lex_state = 14, .external_lex_state = 14}, + [1345] = {.lex_state = 14, .external_lex_state = 14}, + [1346] = {.lex_state = 14, .external_lex_state = 14}, [1347] = {.lex_state = 14, .external_lex_state = 14}, - [1348] = {.lex_state = 14, .external_lex_state = 15}, - [1349] = {.lex_state = 14, .external_lex_state = 14}, - [1350] = {.lex_state = 14, .external_lex_state = 14}, + [1348] = {.lex_state = 15, .external_lex_state = 15}, + [1349] = {.lex_state = 14, .external_lex_state = 15}, + [1350] = {.lex_state = 14, .external_lex_state = 15}, [1351] = {.lex_state = 14, .external_lex_state = 14}, - [1352] = {.lex_state = 14, .external_lex_state = 14}, - [1353] = {.lex_state = 14, .external_lex_state = 14}, + [1352] = {.lex_state = 14, .external_lex_state = 15}, + [1353] = {.lex_state = 14, .external_lex_state = 15}, [1354] = {.lex_state = 14, .external_lex_state = 15}, - [1355] = {.lex_state = 14, .external_lex_state = 8}, - [1356] = {.lex_state = 14, .external_lex_state = 14}, - [1357] = {.lex_state = 14, .external_lex_state = 15}, - [1358] = {.lex_state = 14, .external_lex_state = 15}, - [1359] = {.lex_state = 9, .external_lex_state = 9}, - [1360] = {.lex_state = 14, .external_lex_state = 14}, + [1355] = {.lex_state = 14, .external_lex_state = 15}, + [1356] = {.lex_state = 14, .external_lex_state = 15}, + [1357] = {.lex_state = 15, .external_lex_state = 13}, + [1358] = {.lex_state = 15, .external_lex_state = 13}, + [1359] = {.lex_state = 15, .external_lex_state = 13}, + [1360] = {.lex_state = 14, .external_lex_state = 15}, [1361] = {.lex_state = 14, .external_lex_state = 14}, - [1362] = {.lex_state = 9, .external_lex_state = 9}, - [1363] = {.lex_state = 14, .external_lex_state = 15}, - [1364] = {.lex_state = 9, .external_lex_state = 9}, - [1365] = {.lex_state = 14, .external_lex_state = 14}, - [1366] = {.lex_state = 9, .external_lex_state = 9}, - [1367] = {.lex_state = 14, .external_lex_state = 14}, + [1362] = {.lex_state = 14, .external_lex_state = 15}, + [1363] = {.lex_state = 14, .external_lex_state = 14}, + [1364] = {.lex_state = 14, .external_lex_state = 15}, + [1365] = {.lex_state = 14, .external_lex_state = 15}, + [1366] = {.lex_state = 14, .external_lex_state = 13}, + [1367] = {.lex_state = 14, .external_lex_state = 15}, [1368] = {.lex_state = 14, .external_lex_state = 15}, [1369] = {.lex_state = 14, .external_lex_state = 15}, [1370] = {.lex_state = 14, .external_lex_state = 15}, - [1371] = {.lex_state = 14, .external_lex_state = 15}, - [1372] = {.lex_state = 14, .external_lex_state = 15}, - [1373] = {.lex_state = 14, .external_lex_state = 15}, - [1374] = {.lex_state = 14, .external_lex_state = 12}, + [1371] = {.lex_state = 14, .external_lex_state = 14}, + [1372] = {.lex_state = 15, .external_lex_state = 15}, + [1373] = {.lex_state = 14, .external_lex_state = 14}, + [1374] = {.lex_state = 14, .external_lex_state = 15}, [1375] = {.lex_state = 14, .external_lex_state = 14}, - [1376] = {.lex_state = 14, .external_lex_state = 14}, - [1377] = {.lex_state = 14, .external_lex_state = 12}, - [1378] = {.lex_state = 14, .external_lex_state = 14}, - [1379] = {.lex_state = 14, .external_lex_state = 14}, - [1380] = {.lex_state = 15, .external_lex_state = 12}, - [1381] = {.lex_state = 15, .external_lex_state = 12}, - [1382] = {.lex_state = 14, .external_lex_state = 14}, + [1376] = {.lex_state = 14, .external_lex_state = 15}, + [1377] = {.lex_state = 14, .external_lex_state = 15}, + [1378] = {.lex_state = 15, .external_lex_state = 15}, + [1379] = {.lex_state = 14, .external_lex_state = 15}, + [1380] = {.lex_state = 14, .external_lex_state = 15}, + [1381] = {.lex_state = 14, .external_lex_state = 15}, + [1382] = {.lex_state = 14, .external_lex_state = 15}, [1383] = {.lex_state = 14, .external_lex_state = 14}, - [1384] = {.lex_state = 14, .external_lex_state = 14}, - [1385] = {.lex_state = 14, .external_lex_state = 14}, + [1384] = {.lex_state = 14, .external_lex_state = 15}, + [1385] = {.lex_state = 14, .external_lex_state = 15}, [1386] = {.lex_state = 14, .external_lex_state = 14}, [1387] = {.lex_state = 14, .external_lex_state = 14}, - [1388] = {.lex_state = 14, .external_lex_state = 14}, - [1389] = {.lex_state = 14, .external_lex_state = 14}, - [1390] = {.lex_state = 14, .external_lex_state = 14}, + [1388] = {.lex_state = 14, .external_lex_state = 15}, + [1389] = {.lex_state = 14, .external_lex_state = 15}, + [1390] = {.lex_state = 14, .external_lex_state = 15}, [1391] = {.lex_state = 14, .external_lex_state = 14}, - [1392] = {.lex_state = 9, .external_lex_state = 9}, - [1393] = {.lex_state = 9, .external_lex_state = 9}, + [1392] = {.lex_state = 14, .external_lex_state = 14}, + [1393] = {.lex_state = 14, .external_lex_state = 15}, [1394] = {.lex_state = 14, .external_lex_state = 14}, - [1395] = {.lex_state = 14, .external_lex_state = 14}, + [1395] = {.lex_state = 14, .external_lex_state = 9}, [1396] = {.lex_state = 14, .external_lex_state = 15}, [1397] = {.lex_state = 14, .external_lex_state = 14}, - [1398] = {.lex_state = 14, .external_lex_state = 14}, - [1399] = {.lex_state = 14, .external_lex_state = 14}, - [1400] = {.lex_state = 14, .external_lex_state = 12}, + [1398] = {.lex_state = 14, .external_lex_state = 15}, + [1399] = {.lex_state = 14, .external_lex_state = 15}, + [1400] = {.lex_state = 14, .external_lex_state = 14}, [1401] = {.lex_state = 14, .external_lex_state = 14}, - [1402] = {.lex_state = 14, .external_lex_state = 14}, - [1403] = {.lex_state = 14, .external_lex_state = 14}, - [1404] = {.lex_state = 14, .external_lex_state = 14}, + [1402] = {.lex_state = 14, .external_lex_state = 15}, + [1403] = {.lex_state = 14, .external_lex_state = 15}, + [1404] = {.lex_state = 14, .external_lex_state = 15}, [1405] = {.lex_state = 14, .external_lex_state = 15}, - [1406] = {.lex_state = 14, .external_lex_state = 14}, - [1407] = {.lex_state = 14, .external_lex_state = 14}, - [1408] = {.lex_state = 14, .external_lex_state = 14}, - [1409] = {.lex_state = 14, .external_lex_state = 14}, - [1410] = {.lex_state = 14, .external_lex_state = 14}, - [1411] = {.lex_state = 14, .external_lex_state = 14}, - [1412] = {.lex_state = 14, .external_lex_state = 14}, + [1406] = {.lex_state = 14, .external_lex_state = 15}, + [1407] = {.lex_state = 14, .external_lex_state = 15}, + [1408] = {.lex_state = 14, .external_lex_state = 15}, + [1409] = {.lex_state = 14, .external_lex_state = 15}, + [1410] = {.lex_state = 14, .external_lex_state = 15}, + [1411] = {.lex_state = 14, .external_lex_state = 15}, + [1412] = {.lex_state = 14, .external_lex_state = 15}, [1413] = {.lex_state = 14, .external_lex_state = 15}, - [1414] = {.lex_state = 14, .external_lex_state = 14}, + [1414] = {.lex_state = 14, .external_lex_state = 15}, [1415] = {.lex_state = 14, .external_lex_state = 15}, [1416] = {.lex_state = 14, .external_lex_state = 15}, - [1417] = {.lex_state = 14, .external_lex_state = 14}, - [1418] = {.lex_state = 14, .external_lex_state = 14}, - [1419] = {.lex_state = 14, .external_lex_state = 14}, + [1417] = {.lex_state = 14, .external_lex_state = 15}, + [1418] = {.lex_state = 14, .external_lex_state = 15}, + [1419] = {.lex_state = 14, .external_lex_state = 15}, [1420] = {.lex_state = 14, .external_lex_state = 15}, - [1421] = {.lex_state = 14, .external_lex_state = 12}, - [1422] = {.lex_state = 14, .external_lex_state = 12}, - [1423] = {.lex_state = 15, .external_lex_state = 12}, - [1424] = {.lex_state = 15, .external_lex_state = 12}, - [1425] = {.lex_state = 14, .external_lex_state = 12}, - [1426] = {.lex_state = 15, .external_lex_state = 12}, - [1427] = {.lex_state = 14, .external_lex_state = 15}, - [1428] = {.lex_state = 14, .external_lex_state = 12}, - [1429] = {.lex_state = 14, .external_lex_state = 12}, - [1430] = {.lex_state = 14, .external_lex_state = 12}, - [1431] = {.lex_state = 14, .external_lex_state = 12}, - [1432] = {.lex_state = 15, .external_lex_state = 14}, - [1433] = {.lex_state = 14, .external_lex_state = 12}, - [1434] = {.lex_state = 14, .external_lex_state = 12}, - [1435] = {.lex_state = 15, .external_lex_state = 14}, - [1436] = {.lex_state = 14, .external_lex_state = 12}, - [1437] = {.lex_state = 15, .external_lex_state = 14}, - [1438] = {.lex_state = 14, .external_lex_state = 12}, - [1439] = {.lex_state = 14, .external_lex_state = 12}, - [1440] = {.lex_state = 14, .external_lex_state = 12}, - [1441] = {.lex_state = 14, .external_lex_state = 12}, - [1442] = {.lex_state = 14, .external_lex_state = 12}, - [1443] = {.lex_state = 14, .external_lex_state = 12}, - [1444] = {.lex_state = 14, .external_lex_state = 12}, - [1445] = {.lex_state = 14, .external_lex_state = 12}, - [1446] = {.lex_state = 14, .external_lex_state = 12}, - [1447] = {.lex_state = 14, .external_lex_state = 12}, - [1448] = {.lex_state = 14, .external_lex_state = 12}, - [1449] = {.lex_state = 14, .external_lex_state = 12}, - [1450] = {.lex_state = 14, .external_lex_state = 12}, - [1451] = {.lex_state = 15, .external_lex_state = 13}, - [1452] = {.lex_state = 15, .external_lex_state = 13}, - [1453] = {.lex_state = 15, .external_lex_state = 13}, - [1454] = {.lex_state = 14, .external_lex_state = 12}, - [1455] = {.lex_state = 14, .external_lex_state = 12}, - [1456] = {.lex_state = 14, .external_lex_state = 12}, - [1457] = {.lex_state = 14, .external_lex_state = 12}, - [1458] = {.lex_state = 14, .external_lex_state = 12}, - [1459] = {.lex_state = 14, .external_lex_state = 12}, - [1460] = {.lex_state = 14, .external_lex_state = 12}, - [1461] = {.lex_state = 14, .external_lex_state = 12}, - [1462] = {.lex_state = 14, .external_lex_state = 12}, - [1463] = {.lex_state = 14, .external_lex_state = 12}, - [1464] = {.lex_state = 14, .external_lex_state = 12}, - [1465] = {.lex_state = 14, .external_lex_state = 12}, - [1466] = {.lex_state = 14, .external_lex_state = 12}, - [1467] = {.lex_state = 14, .external_lex_state = 12}, - [1468] = {.lex_state = 9, .external_lex_state = 15}, - [1469] = {.lex_state = 9, .external_lex_state = 15}, - [1470] = {.lex_state = 9, .external_lex_state = 15}, - [1471] = {.lex_state = 9, .external_lex_state = 15}, - [1472] = {.lex_state = 9, .external_lex_state = 15}, - [1473] = {.lex_state = 9, .external_lex_state = 15}, - [1474] = {.lex_state = 9, .external_lex_state = 15}, - [1475] = {.lex_state = 9, .external_lex_state = 15}, - [1476] = {.lex_state = 9, .external_lex_state = 15}, - [1477] = {.lex_state = 9, .external_lex_state = 15}, - [1478] = {.lex_state = 9, .external_lex_state = 15}, - [1479] = {.lex_state = 9, .external_lex_state = 15}, - [1480] = {.lex_state = 9, .external_lex_state = 15}, - [1481] = {.lex_state = 9, .external_lex_state = 15}, - [1482] = {.lex_state = 9, .external_lex_state = 15}, - [1483] = {.lex_state = 9, .external_lex_state = 15}, - [1484] = {.lex_state = 14, .external_lex_state = 14}, - [1485] = {.lex_state = 14, .external_lex_state = 12}, - [1486] = {.lex_state = 14, .external_lex_state = 13}, - [1487] = {.lex_state = 13, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1488] = {.lex_state = 13, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1489] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [1490] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, - [1491] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, - [1492] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1421] = {.lex_state = 14, .external_lex_state = 15}, + [1422] = {.lex_state = 14, .external_lex_state = 14}, + [1423] = {.lex_state = 14, .external_lex_state = 13}, + [1424] = {.lex_state = 14, .external_lex_state = 13}, + [1425] = {.lex_state = 14, .external_lex_state = 13}, + [1426] = {.lex_state = 15, .external_lex_state = 13}, + [1427] = {.lex_state = 14, .external_lex_state = 14}, + [1428] = {.lex_state = 14, .external_lex_state = 13}, + [1429] = {.lex_state = 14, .external_lex_state = 13}, + [1430] = {.lex_state = 14, .external_lex_state = 13}, + [1431] = {.lex_state = 14, .external_lex_state = 13}, + [1432] = {.lex_state = 14, .external_lex_state = 13}, + [1433] = {.lex_state = 14, .external_lex_state = 13}, + [1434] = {.lex_state = 15, .external_lex_state = 13}, + [1435] = {.lex_state = 14, .external_lex_state = 13}, + [1436] = {.lex_state = 14, .external_lex_state = 13}, + [1437] = {.lex_state = 15, .external_lex_state = 13}, + [1438] = {.lex_state = 14, .external_lex_state = 13}, + [1439] = {.lex_state = 14, .external_lex_state = 13}, + [1440] = {.lex_state = 14, .external_lex_state = 13}, + [1441] = {.lex_state = 15, .external_lex_state = 12}, + [1442] = {.lex_state = 14, .external_lex_state = 13}, + [1443] = {.lex_state = 14, .external_lex_state = 13}, + [1444] = {.lex_state = 15, .external_lex_state = 12}, + [1445] = {.lex_state = 15, .external_lex_state = 12}, + [1446] = {.lex_state = 14, .external_lex_state = 13}, + [1447] = {.lex_state = 14, .external_lex_state = 13}, + [1448] = {.lex_state = 14, .external_lex_state = 13}, + [1449] = {.lex_state = 14, .external_lex_state = 13}, + [1450] = {.lex_state = 14, .external_lex_state = 13}, + [1451] = {.lex_state = 14, .external_lex_state = 13}, + [1452] = {.lex_state = 14, .external_lex_state = 13}, + [1453] = {.lex_state = 14, .external_lex_state = 13}, + [1454] = {.lex_state = 14, .external_lex_state = 13}, + [1455] = {.lex_state = 14, .external_lex_state = 13}, + [1456] = {.lex_state = 14, .external_lex_state = 13}, + [1457] = {.lex_state = 14, .external_lex_state = 13}, + [1458] = {.lex_state = 14, .external_lex_state = 13}, + [1459] = {.lex_state = 15, .external_lex_state = 15}, + [1460] = {.lex_state = 15, .external_lex_state = 15}, + [1461] = {.lex_state = 15, .external_lex_state = 15}, + [1462] = {.lex_state = 14, .external_lex_state = 13}, + [1463] = {.lex_state = 14, .external_lex_state = 13}, + [1464] = {.lex_state = 14, .external_lex_state = 13}, + [1465] = {.lex_state = 14, .external_lex_state = 13}, + [1466] = {.lex_state = 14, .external_lex_state = 13}, + [1467] = {.lex_state = 14, .external_lex_state = 13}, + [1468] = {.lex_state = 14, .external_lex_state = 13}, + [1469] = {.lex_state = 14, .external_lex_state = 13}, + [1470] = {.lex_state = 9, .external_lex_state = 14}, + [1471] = {.lex_state = 9, .external_lex_state = 14}, + [1472] = {.lex_state = 9, .external_lex_state = 14}, + [1473] = {.lex_state = 9, .external_lex_state = 14}, + [1474] = {.lex_state = 9, .external_lex_state = 14}, + [1475] = {.lex_state = 9, .external_lex_state = 14}, + [1476] = {.lex_state = 9, .external_lex_state = 14}, + [1477] = {.lex_state = 9, .external_lex_state = 14}, + [1478] = {.lex_state = 9, .external_lex_state = 14}, + [1479] = {.lex_state = 9, .external_lex_state = 14}, + [1480] = {.lex_state = 9, .external_lex_state = 14}, + [1481] = {.lex_state = 14, .external_lex_state = 13}, + [1482] = {.lex_state = 9, .external_lex_state = 14}, + [1483] = {.lex_state = 14, .external_lex_state = 15}, + [1484] = {.lex_state = 9, .external_lex_state = 14}, + [1485] = {.lex_state = 9, .external_lex_state = 14}, + [1486] = {.lex_state = 14, .external_lex_state = 12}, + [1487] = {.lex_state = 9, .external_lex_state = 14}, + [1488] = {.lex_state = 9, .external_lex_state = 14}, + [1489] = {.lex_state = 13, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1490] = {.lex_state = 13, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1491] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1492] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, [1493] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, - [1494] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, - [1495] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1496] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [1497] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1498] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1499] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, + [1494] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, + [1495] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1496] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1497] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, + [1498] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, + [1499] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, [1500] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1501] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1501] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, [1502] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, [1503] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1504] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, + [1504] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, [1505] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1506] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1506] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, [1507] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1508] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1508] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, [1509] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, [1510] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, [1511] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1512] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [1513] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1514] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [1515] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, - [1516] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, + [1512] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, + [1513] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1514] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, + [1515] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1516] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, [1517] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [1518] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1518] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, [1519] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1520] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1521] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1520] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, + [1521] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, [1522] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, [1523] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1524] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, - [1525] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1526] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1524] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1525] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1526] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, [1527] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, [1528] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, [1529] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1530] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1531] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1530] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1531] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, [1532] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, [1533] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, [1534] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1535] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1536] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1537] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1538] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, - [1539] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, + [1535] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, + [1536] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, + [1537] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, + [1538] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1539] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, [1540] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1541] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, + [1541] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, [1542] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1543] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, + [1543] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, [1544] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1545] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1546] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, + [1545] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, + [1546] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, [1547] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, [1548] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, [1549] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1550] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1551] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1550] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, + [1551] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, [1552] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1553] = {.lex_state = 9, .external_lex_state = 9}, - [1554] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1553] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1554] = {.lex_state = 9, .external_lex_state = 9}, [1555] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, [1556] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1557] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 15}, - [1558] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1559] = {.lex_state = 9, .external_lex_state = 9}, + [1557] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1558] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 15}, + [1559] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, [1560] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1561] = {.lex_state = 9, .external_lex_state = 12}, - [1562] = {.lex_state = 9, .external_lex_state = 12}, - [1563] = {.lex_state = 9, .external_lex_state = 14}, - [1564] = {.lex_state = 9, .external_lex_state = 14}, - [1565] = {.lex_state = 9, .external_lex_state = 15}, - [1566] = {.lex_state = 9, .external_lex_state = 15}, - [1567] = {.lex_state = 53, .external_lex_state = 13}, - [1568] = {.lex_state = 53, .external_lex_state = 13}, - [1569] = {.lex_state = 9, .external_lex_state = 12}, - [1570] = {.lex_state = 53, .external_lex_state = 13}, - [1571] = {.lex_state = 53, .external_lex_state = 13}, - [1572] = {.lex_state = 9, .external_lex_state = 12}, - [1573] = {.lex_state = 53, .external_lex_state = 14}, - [1574] = {.lex_state = 14, .external_lex_state = 13}, - [1575] = {.lex_state = 14, .external_lex_state = 13}, - [1576] = {.lex_state = 14, .external_lex_state = 13}, - [1577] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1578] = {.lex_state = 14, .external_lex_state = 13}, - [1579] = {.lex_state = 53, .external_lex_state = 14}, - [1580] = {.lex_state = 14, .external_lex_state = 13}, - [1581] = {.lex_state = 14, .external_lex_state = 13}, - [1582] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1583] = {.lex_state = 12, .external_lex_state = 9}, - [1584] = {.lex_state = 12, .external_lex_state = 9}, - [1585] = {.lex_state = 14, .external_lex_state = 14}, - [1586] = {.lex_state = 14, .external_lex_state = 14}, - [1587] = {.lex_state = 14, .external_lex_state = 14}, - [1588] = {.lex_state = 14, .external_lex_state = 14}, - [1589] = {.lex_state = 14, .external_lex_state = 14}, - [1590] = {.lex_state = 14, .external_lex_state = 14}, + [1561] = {.lex_state = 9, .external_lex_state = 9}, + [1562] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1563] = {.lex_state = 9, .external_lex_state = 13}, + [1564] = {.lex_state = 9, .external_lex_state = 13}, + [1565] = {.lex_state = 9, .external_lex_state = 14}, + [1566] = {.lex_state = 9, .external_lex_state = 14}, + [1567] = {.lex_state = 9, .external_lex_state = 15}, + [1568] = {.lex_state = 9, .external_lex_state = 15}, + [1569] = {.lex_state = 53, .external_lex_state = 12}, + [1570] = {.lex_state = 9, .external_lex_state = 13}, + [1571] = {.lex_state = 53, .external_lex_state = 12}, + [1572] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1573] = {.lex_state = 9, .external_lex_state = 13}, + [1574] = {.lex_state = 53, .external_lex_state = 12}, + [1575] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1576] = {.lex_state = 53, .external_lex_state = 12}, + [1577] = {.lex_state = 14, .external_lex_state = 12}, + [1578] = {.lex_state = 14, .external_lex_state = 12}, + [1579] = {.lex_state = 14, .external_lex_state = 12}, + [1580] = {.lex_state = 14, .external_lex_state = 12}, + [1581] = {.lex_state = 14, .external_lex_state = 12}, + [1582] = {.lex_state = 53, .external_lex_state = 15}, + [1583] = {.lex_state = 14, .external_lex_state = 12}, + [1584] = {.lex_state = 53, .external_lex_state = 15}, + [1585] = {.lex_state = 12, .external_lex_state = 9}, + [1586] = {.lex_state = 12, .external_lex_state = 9}, + [1587] = {.lex_state = 14, .external_lex_state = 15}, + [1588] = {.lex_state = 14, .external_lex_state = 15}, + [1589] = {.lex_state = 14, .external_lex_state = 15}, + [1590] = {.lex_state = 14, .external_lex_state = 15}, [1591] = {.lex_state = 14, .external_lex_state = 15}, - [1592] = {.lex_state = 12, .external_lex_state = 9}, + [1592] = {.lex_state = 14, .external_lex_state = 15}, [1593] = {.lex_state = 14, .external_lex_state = 14}, [1594] = {.lex_state = 12, .external_lex_state = 9}, - [1595] = {.lex_state = 14, .external_lex_state = 14}, - [1596] = {.lex_state = 14, .external_lex_state = 14}, - [1597] = {.lex_state = 14, .external_lex_state = 14}, - [1598] = {.lex_state = 14, .external_lex_state = 14}, - [1599] = {.lex_state = 14, .external_lex_state = 14}, + [1595] = {.lex_state = 12, .external_lex_state = 9}, + [1596] = {.lex_state = 14, .external_lex_state = 15}, + [1597] = {.lex_state = 12, .external_lex_state = 9}, + [1598] = {.lex_state = 14, .external_lex_state = 15}, + [1599] = {.lex_state = 14, .external_lex_state = 15}, [1600] = {.lex_state = 14, .external_lex_state = 15}, [1601] = {.lex_state = 14, .external_lex_state = 15}, - [1602] = {.lex_state = 14, .external_lex_state = 15}, - [1603] = {.lex_state = 14, .external_lex_state = 15}, - [1604] = {.lex_state = 14, .external_lex_state = 12}, - [1605] = {.lex_state = 14, .external_lex_state = 12}, - [1606] = {.lex_state = 14, .external_lex_state = 12}, - [1607] = {.lex_state = 14, .external_lex_state = 12}, - [1608] = {.lex_state = 14, .external_lex_state = 15}, - [1609] = {.lex_state = 14, .external_lex_state = 15}, - [1610] = {.lex_state = 14, .external_lex_state = 15}, + [1602] = {.lex_state = 14, .external_lex_state = 14}, + [1603] = {.lex_state = 14, .external_lex_state = 14}, + [1604] = {.lex_state = 14, .external_lex_state = 14}, + [1605] = {.lex_state = 14, .external_lex_state = 14}, + [1606] = {.lex_state = 14, .external_lex_state = 13}, + [1607] = {.lex_state = 14, .external_lex_state = 13}, + [1608] = {.lex_state = 14, .external_lex_state = 13}, + [1609] = {.lex_state = 14, .external_lex_state = 13}, + [1610] = {.lex_state = 14, .external_lex_state = 14}, [1611] = {.lex_state = 12, .external_lex_state = 9}, - [1612] = {.lex_state = 14, .external_lex_state = 15}, - [1613] = {.lex_state = 14, .external_lex_state = 15}, - [1614] = {.lex_state = 12, .external_lex_state = 9}, - [1615] = {.lex_state = 14, .external_lex_state = 15}, - [1616] = {.lex_state = 14, .external_lex_state = 15}, - [1617] = {.lex_state = 14, .external_lex_state = 15}, - [1618] = {.lex_state = 14, .external_lex_state = 12}, - [1619] = {.lex_state = 14, .external_lex_state = 12}, - [1620] = {.lex_state = 14, .external_lex_state = 15}, - [1621] = {.lex_state = 14, .external_lex_state = 15}, - [1622] = {.lex_state = 14, .external_lex_state = 15}, - [1623] = {.lex_state = 14, .external_lex_state = 15}, - [1624] = {.lex_state = 14, .external_lex_state = 15}, - [1625] = {.lex_state = 14, .external_lex_state = 15}, - [1626] = {.lex_state = 14, .external_lex_state = 15}, - [1627] = {.lex_state = 14, .external_lex_state = 15}, - [1628] = {.lex_state = 14, .external_lex_state = 15}, - [1629] = {.lex_state = 12, .external_lex_state = 15}, - [1630] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1631] = {.lex_state = 12, .external_lex_state = 15}, - [1632] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1633] = {.lex_state = 12, .external_lex_state = 15}, - [1634] = {.lex_state = 12, .external_lex_state = 15}, - [1635] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1636] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1637] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1638] = {.lex_state = 12, .external_lex_state = 15}, - [1639] = {.lex_state = 12, .external_lex_state = 9}, - [1640] = {.lex_state = 12, .external_lex_state = 15}, - [1641] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1642] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1643] = {.lex_state = 12, .external_lex_state = 15}, - [1644] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1645] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1646] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1647] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1648] = {.lex_state = 12, .external_lex_state = 15}, - [1649] = {.lex_state = 5, .external_lex_state = 14, .reserved_word_set_id = 1}, - [1650] = {.lex_state = 12, .external_lex_state = 15}, - [1651] = {.lex_state = 5, .external_lex_state = 14, .reserved_word_set_id = 1}, - [1652] = {.lex_state = 5, .external_lex_state = 14, .reserved_word_set_id = 1}, - [1653] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1654] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1655] = {.lex_state = 5, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1656] = {.lex_state = 9, .external_lex_state = 12}, - [1657] = {.lex_state = 5, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1658] = {.lex_state = 53, .external_lex_state = 13}, - [1659] = {.lex_state = 9, .external_lex_state = 9}, + [1612] = {.lex_state = 14, .external_lex_state = 14}, + [1613] = {.lex_state = 14, .external_lex_state = 14}, + [1614] = {.lex_state = 14, .external_lex_state = 14}, + [1615] = {.lex_state = 14, .external_lex_state = 14}, + [1616] = {.lex_state = 14, .external_lex_state = 14}, + [1617] = {.lex_state = 14, .external_lex_state = 14}, + [1618] = {.lex_state = 14, .external_lex_state = 14}, + [1619] = {.lex_state = 14, .external_lex_state = 14}, + [1620] = {.lex_state = 14, .external_lex_state = 13}, + [1621] = {.lex_state = 14, .external_lex_state = 13}, + [1622] = {.lex_state = 14, .external_lex_state = 14}, + [1623] = {.lex_state = 14, .external_lex_state = 14}, + [1624] = {.lex_state = 14, .external_lex_state = 14}, + [1625] = {.lex_state = 14, .external_lex_state = 14}, + [1626] = {.lex_state = 14, .external_lex_state = 14}, + [1627] = {.lex_state = 14, .external_lex_state = 14}, + [1628] = {.lex_state = 14, .external_lex_state = 14}, + [1629] = {.lex_state = 14, .external_lex_state = 14}, + [1630] = {.lex_state = 14, .external_lex_state = 15}, + [1631] = {.lex_state = 13, .external_lex_state = 14, .reserved_word_set_id = 1}, + [1632] = {.lex_state = 12, .external_lex_state = 14}, + [1633] = {.lex_state = 12, .external_lex_state = 14}, + [1634] = {.lex_state = 12, .external_lex_state = 14}, + [1635] = {.lex_state = 12, .external_lex_state = 14}, + [1636] = {.lex_state = 13, .external_lex_state = 14, .reserved_word_set_id = 1}, + [1637] = {.lex_state = 12, .external_lex_state = 14}, + [1638] = {.lex_state = 13, .external_lex_state = 14, .reserved_word_set_id = 1}, + [1639] = {.lex_state = 12, .external_lex_state = 14}, + [1640] = {.lex_state = 13, .external_lex_state = 14, .reserved_word_set_id = 1}, + [1641] = {.lex_state = 13, .external_lex_state = 14, .reserved_word_set_id = 1}, + [1642] = {.lex_state = 13, .external_lex_state = 14, .reserved_word_set_id = 1}, + [1643] = {.lex_state = 13, .external_lex_state = 14, .reserved_word_set_id = 1}, + [1644] = {.lex_state = 13, .external_lex_state = 14, .reserved_word_set_id = 1}, + [1645] = {.lex_state = 13, .external_lex_state = 14, .reserved_word_set_id = 1}, + [1646] = {.lex_state = 13, .external_lex_state = 14, .reserved_word_set_id = 1}, + [1647] = {.lex_state = 12, .external_lex_state = 14}, + [1648] = {.lex_state = 13, .external_lex_state = 14, .reserved_word_set_id = 1}, + [1649] = {.lex_state = 12, .external_lex_state = 9}, + [1650] = {.lex_state = 12, .external_lex_state = 14}, + [1651] = {.lex_state = 5, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1652] = {.lex_state = 5, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1653] = {.lex_state = 5, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1654] = {.lex_state = 13, .external_lex_state = 14, .reserved_word_set_id = 1}, + [1655] = {.lex_state = 13, .external_lex_state = 14, .reserved_word_set_id = 1}, + [1656] = {.lex_state = 12, .external_lex_state = 14}, + [1657] = {.lex_state = 5, .external_lex_state = 14, .reserved_word_set_id = 1}, + [1658] = {.lex_state = 9, .external_lex_state = 13}, + [1659] = {.lex_state = 5, .external_lex_state = 14, .reserved_word_set_id = 1}, [1660] = {.lex_state = 9, .external_lex_state = 9}, [1661] = {.lex_state = 9, .external_lex_state = 9}, [1662] = {.lex_state = 9, .external_lex_state = 9}, - [1663] = {.lex_state = 9, .external_lex_state = 9}, + [1663] = {.lex_state = 53, .external_lex_state = 12}, [1664] = {.lex_state = 9, .external_lex_state = 9}, [1665] = {.lex_state = 9, .external_lex_state = 9}, - [1666] = {.lex_state = 9, .external_lex_state = 9}, - [1667] = {.lex_state = 53, .external_lex_state = 13}, - [1668] = {.lex_state = 53, .external_lex_state = 13}, - [1669] = {.lex_state = 53, .external_lex_state = 13}, - [1670] = {.lex_state = 53, .external_lex_state = 13}, - [1671] = {.lex_state = 53, .external_lex_state = 13}, - [1672] = {.lex_state = 53, .external_lex_state = 13}, - [1673] = {.lex_state = 53, .external_lex_state = 13}, + [1666] = {.lex_state = 53, .external_lex_state = 12}, + [1667] = {.lex_state = 53, .external_lex_state = 12}, + [1668] = {.lex_state = 53, .external_lex_state = 12}, + [1669] = {.lex_state = 53, .external_lex_state = 12}, + [1670] = {.lex_state = 9, .external_lex_state = 9}, + [1671] = {.lex_state = 53, .external_lex_state = 12}, + [1672] = {.lex_state = 9, .external_lex_state = 9}, + [1673] = {.lex_state = 53, .external_lex_state = 12}, [1674] = {.lex_state = 9, .external_lex_state = 9}, - [1675] = {.lex_state = 0, .external_lex_state = 16}, - [1676] = {.lex_state = 53, .external_lex_state = 14}, - [1677] = {.lex_state = 0, .external_lex_state = 16}, - [1678] = {.lex_state = 0, .external_lex_state = 16}, - [1679] = {.lex_state = 53, .external_lex_state = 14}, - [1680] = {.lex_state = 53, .external_lex_state = 14}, - [1681] = {.lex_state = 53, .external_lex_state = 14}, + [1675] = {.lex_state = 53, .external_lex_state = 12}, + [1676] = {.lex_state = 9, .external_lex_state = 9}, + [1677] = {.lex_state = 53, .external_lex_state = 13}, + [1678] = {.lex_state = 9, .external_lex_state = 13}, + [1679] = {.lex_state = 0, .external_lex_state = 16}, + [1680] = {.lex_state = 53, .external_lex_state = 13}, + [1681] = {.lex_state = 0, .external_lex_state = 16}, [1682] = {.lex_state = 0, .external_lex_state = 16}, - [1683] = {.lex_state = 53, .external_lex_state = 12}, - [1684] = {.lex_state = 0, .external_lex_state = 16}, - [1685] = {.lex_state = 53, .external_lex_state = 14}, - [1686] = {.lex_state = 53, .external_lex_state = 14}, + [1683] = {.lex_state = 53, .external_lex_state = 15}, + [1684] = {.lex_state = 53, .external_lex_state = 15}, + [1685] = {.lex_state = 0, .external_lex_state = 16}, + [1686] = {.lex_state = 53, .external_lex_state = 15}, [1687] = {.lex_state = 0, .external_lex_state = 16}, [1688] = {.lex_state = 0, .external_lex_state = 16}, - [1689] = {.lex_state = 53, .external_lex_state = 14}, - [1690] = {.lex_state = 53, .external_lex_state = 14}, + [1689] = {.lex_state = 53, .external_lex_state = 15}, + [1690] = {.lex_state = 53, .external_lex_state = 15}, [1691] = {.lex_state = 0, .external_lex_state = 16}, [1692] = {.lex_state = 0, .external_lex_state = 16}, - [1693] = {.lex_state = 53, .external_lex_state = 14}, - [1694] = {.lex_state = 53, .external_lex_state = 14}, - [1695] = {.lex_state = 9, .external_lex_state = 12}, + [1693] = {.lex_state = 53, .external_lex_state = 15}, + [1694] = {.lex_state = 53, .external_lex_state = 15}, + [1695] = {.lex_state = 0, .external_lex_state = 16}, [1696] = {.lex_state = 0, .external_lex_state = 16}, - [1697] = {.lex_state = 9, .external_lex_state = 12}, - [1698] = {.lex_state = 0, .external_lex_state = 16}, - [1699] = {.lex_state = 53, .external_lex_state = 14}, - [1700] = {.lex_state = 53, .external_lex_state = 14}, - [1701] = {.lex_state = 0, .external_lex_state = 16}, - [1702] = {.lex_state = 0, .external_lex_state = 16}, - [1703] = {.lex_state = 53, .external_lex_state = 14}, - [1704] = {.lex_state = 53, .external_lex_state = 14}, - [1705] = {.lex_state = 9, .external_lex_state = 12}, + [1697] = {.lex_state = 53, .external_lex_state = 15}, + [1698] = {.lex_state = 53, .external_lex_state = 15}, + [1699] = {.lex_state = 0, .external_lex_state = 16}, + [1700] = {.lex_state = 9, .external_lex_state = 13}, + [1701] = {.lex_state = 53, .external_lex_state = 15}, + [1702] = {.lex_state = 53, .external_lex_state = 15}, + [1703] = {.lex_state = 53, .external_lex_state = 15}, + [1704] = {.lex_state = 0, .external_lex_state = 16}, + [1705] = {.lex_state = 0, .external_lex_state = 16}, [1706] = {.lex_state = 0, .external_lex_state = 16}, - [1707] = {.lex_state = 0, .external_lex_state = 16}, - [1708] = {.lex_state = 53, .external_lex_state = 14}, - [1709] = {.lex_state = 53, .external_lex_state = 14}, - [1710] = {.lex_state = 0, .external_lex_state = 16}, + [1707] = {.lex_state = 53, .external_lex_state = 15}, + [1708] = {.lex_state = 53, .external_lex_state = 15}, + [1709] = {.lex_state = 0, .external_lex_state = 16}, + [1710] = {.lex_state = 9, .external_lex_state = 13}, [1711] = {.lex_state = 0, .external_lex_state = 16}, - [1712] = {.lex_state = 53, .external_lex_state = 12}, - [1713] = {.lex_state = 0, .external_lex_state = 16}, - [1714] = {.lex_state = 53, .external_lex_state = 12}, - [1715] = {.lex_state = 9, .external_lex_state = 12}, - [1716] = {.lex_state = 53, .external_lex_state = 12}, - [1717] = {.lex_state = 9, .external_lex_state = 12}, - [1718] = {.lex_state = 53, .external_lex_state = 12}, - [1719] = {.lex_state = 53, .external_lex_state = 12}, - [1720] = {.lex_state = 9, .external_lex_state = 12}, - [1721] = {.lex_state = 9, .external_lex_state = 12}, - [1722] = {.lex_state = 53, .external_lex_state = 12}, - [1723] = {.lex_state = 9, .external_lex_state = 12}, - [1724] = {.lex_state = 53, .external_lex_state = 12}, - [1725] = {.lex_state = 53, .external_lex_state = 14}, - [1726] = {.lex_state = 0, .external_lex_state = 16}, - [1727] = {.lex_state = 9, .external_lex_state = 12}, - [1728] = {.lex_state = 9, .external_lex_state = 15}, - [1729] = {.lex_state = 9, .external_lex_state = 9}, + [1712] = {.lex_state = 53, .external_lex_state = 15}, + [1713] = {.lex_state = 53, .external_lex_state = 15}, + [1714] = {.lex_state = 0, .external_lex_state = 16}, + [1715] = {.lex_state = 0, .external_lex_state = 16}, + [1716] = {.lex_state = 53, .external_lex_state = 13}, + [1717] = {.lex_state = 53, .external_lex_state = 15}, + [1718] = {.lex_state = 53, .external_lex_state = 13}, + [1719] = {.lex_state = 9, .external_lex_state = 13}, + [1720] = {.lex_state = 53, .external_lex_state = 13}, + [1721] = {.lex_state = 9, .external_lex_state = 13}, + [1722] = {.lex_state = 53, .external_lex_state = 13}, + [1723] = {.lex_state = 9, .external_lex_state = 13}, + [1724] = {.lex_state = 53, .external_lex_state = 13}, + [1725] = {.lex_state = 9, .external_lex_state = 13}, + [1726] = {.lex_state = 9, .external_lex_state = 13}, + [1727] = {.lex_state = 53, .external_lex_state = 13}, + [1728] = {.lex_state = 9, .external_lex_state = 13}, + [1729] = {.lex_state = 0, .external_lex_state = 16}, [1730] = {.lex_state = 9, .external_lex_state = 14}, [1731] = {.lex_state = 9, .external_lex_state = 15}, - [1732] = {.lex_state = 9, .external_lex_state = 14}, + [1732] = {.lex_state = 9, .external_lex_state = 15}, [1733] = {.lex_state = 9, .external_lex_state = 14}, [1734] = {.lex_state = 9, .external_lex_state = 15}, [1735] = {.lex_state = 9, .external_lex_state = 15}, - [1736] = {.lex_state = 9, .external_lex_state = 15}, - [1737] = {.lex_state = 9, .external_lex_state = 14}, - [1738] = {.lex_state = 53, .external_lex_state = 13}, - [1739] = {.lex_state = 9, .external_lex_state = 14}, + [1736] = {.lex_state = 9, .external_lex_state = 14}, + [1737] = {.lex_state = 53, .external_lex_state = 12}, + [1738] = {.lex_state = 9, .external_lex_state = 15}, + [1739] = {.lex_state = 9, .external_lex_state = 15}, [1740] = {.lex_state = 9, .external_lex_state = 9}, - [1741] = {.lex_state = 9, .external_lex_state = 14}, - [1742] = {.lex_state = 9, .external_lex_state = 14}, + [1741] = {.lex_state = 9, .external_lex_state = 15}, + [1742] = {.lex_state = 9, .external_lex_state = 15}, [1743] = {.lex_state = 9, .external_lex_state = 14}, - [1744] = {.lex_state = 9, .external_lex_state = 15}, - [1745] = {.lex_state = 9, .external_lex_state = 14}, + [1744] = {.lex_state = 9, .external_lex_state = 9}, + [1745] = {.lex_state = 9, .external_lex_state = 15}, [1746] = {.lex_state = 9, .external_lex_state = 14}, - [1747] = {.lex_state = 9, .external_lex_state = 15}, - [1748] = {.lex_state = 9, .external_lex_state = 15}, - [1749] = {.lex_state = 53, .external_lex_state = 13}, - [1750] = {.lex_state = 9, .external_lex_state = 15}, - [1751] = {.lex_state = 9, .external_lex_state = 15}, - [1752] = {.lex_state = 9, .external_lex_state = 12}, - [1753] = {.lex_state = 53, .external_lex_state = 13}, - [1754] = {.lex_state = 53, .external_lex_state = 13}, - [1755] = {.lex_state = 53, .external_lex_state = 13}, - [1756] = {.lex_state = 9, .external_lex_state = 12}, - [1757] = {.lex_state = 9, .external_lex_state = 15}, - [1758] = {.lex_state = 53, .external_lex_state = 13}, - [1759] = {.lex_state = 53, .external_lex_state = 13}, - [1760] = {.lex_state = 9, .external_lex_state = 12}, - [1761] = {.lex_state = 53, .external_lex_state = 9}, - [1762] = {.lex_state = 9, .external_lex_state = 12}, - [1763] = {.lex_state = 53, .external_lex_state = 13}, - [1764] = {.lex_state = 53, .external_lex_state = 13}, - [1765] = {.lex_state = 53, .external_lex_state = 13}, - [1766] = {.lex_state = 53, .external_lex_state = 13}, - [1767] = {.lex_state = 53, .external_lex_state = 13}, - [1768] = {.lex_state = 9, .external_lex_state = 12}, - [1769] = {.lex_state = 53, .external_lex_state = 13}, - [1770] = {.lex_state = 53, .external_lex_state = 13}, - [1771] = {.lex_state = 53, .external_lex_state = 13}, - [1772] = {.lex_state = 53, .external_lex_state = 13}, - [1773] = {.lex_state = 9, .external_lex_state = 12}, - [1774] = {.lex_state = 53, .external_lex_state = 13}, - [1775] = {.lex_state = 9, .external_lex_state = 12}, - [1776] = {.lex_state = 53, .external_lex_state = 13}, - [1777] = {.lex_state = 53, .external_lex_state = 13}, - [1778] = {.lex_state = 9, .external_lex_state = 15}, - [1779] = {.lex_state = 9, .external_lex_state = 12}, - [1780] = {.lex_state = 53, .external_lex_state = 13}, - [1781] = {.lex_state = 53, .external_lex_state = 13}, - [1782] = {.lex_state = 53, .external_lex_state = 13}, - [1783] = {.lex_state = 9, .external_lex_state = 15}, - [1784] = {.lex_state = 9, .external_lex_state = 15}, - [1785] = {.lex_state = 9, .external_lex_state = 12}, - [1786] = {.lex_state = 9, .external_lex_state = 12}, - [1787] = {.lex_state = 53, .external_lex_state = 12}, - [1788] = {.lex_state = 53, .external_lex_state = 15}, - [1789] = {.lex_state = 53, .external_lex_state = 2}, - [1790] = {.lex_state = 8, .external_lex_state = 13}, - [1791] = {.lex_state = 53, .external_lex_state = 9}, - [1792] = {.lex_state = 53, .external_lex_state = 9}, - [1793] = {.lex_state = 53, .external_lex_state = 12}, + [1747] = {.lex_state = 9, .external_lex_state = 14}, + [1748] = {.lex_state = 9, .external_lex_state = 14}, + [1749] = {.lex_state = 9, .external_lex_state = 14}, + [1750] = {.lex_state = 9, .external_lex_state = 14}, + [1751] = {.lex_state = 53, .external_lex_state = 12}, + [1752] = {.lex_state = 9, .external_lex_state = 15}, + [1753] = {.lex_state = 9, .external_lex_state = 14}, + [1754] = {.lex_state = 53, .external_lex_state = 12}, + [1755] = {.lex_state = 53, .external_lex_state = 12}, + [1756] = {.lex_state = 9, .external_lex_state = 13}, + [1757] = {.lex_state = 53, .external_lex_state = 12}, + [1758] = {.lex_state = 53, .external_lex_state = 12}, + [1759] = {.lex_state = 9, .external_lex_state = 14}, + [1760] = {.lex_state = 9, .external_lex_state = 13}, + [1761] = {.lex_state = 53, .external_lex_state = 12}, + [1762] = {.lex_state = 53, .external_lex_state = 12}, + [1763] = {.lex_state = 53, .external_lex_state = 12}, + [1764] = {.lex_state = 53, .external_lex_state = 12}, + [1765] = {.lex_state = 53, .external_lex_state = 12}, + [1766] = {.lex_state = 53, .external_lex_state = 12}, + [1767] = {.lex_state = 53, .external_lex_state = 12}, + [1768] = {.lex_state = 53, .external_lex_state = 12}, + [1769] = {.lex_state = 53, .external_lex_state = 12}, + [1770] = {.lex_state = 53, .external_lex_state = 12}, + [1771] = {.lex_state = 9, .external_lex_state = 13}, + [1772] = {.lex_state = 9, .external_lex_state = 13}, + [1773] = {.lex_state = 9, .external_lex_state = 13}, + [1774] = {.lex_state = 9, .external_lex_state = 13}, + [1775] = {.lex_state = 53, .external_lex_state = 12}, + [1776] = {.lex_state = 53, .external_lex_state = 12}, + [1777] = {.lex_state = 53, .external_lex_state = 12}, + [1778] = {.lex_state = 9, .external_lex_state = 14}, + [1779] = {.lex_state = 53, .external_lex_state = 12}, + [1780] = {.lex_state = 9, .external_lex_state = 13}, + [1781] = {.lex_state = 9, .external_lex_state = 13}, + [1782] = {.lex_state = 53, .external_lex_state = 12}, + [1783] = {.lex_state = 53, .external_lex_state = 9}, + [1784] = {.lex_state = 53, .external_lex_state = 12}, + [1785] = {.lex_state = 9, .external_lex_state = 13}, + [1786] = {.lex_state = 9, .external_lex_state = 14}, + [1787] = {.lex_state = 9, .external_lex_state = 14}, + [1788] = {.lex_state = 9, .external_lex_state = 13}, + [1789] = {.lex_state = 0, .external_lex_state = 16}, + [1790] = {.lex_state = 53, .external_lex_state = 13}, + [1791] = {.lex_state = 53, .external_lex_state = 12}, + [1792] = {.lex_state = 9, .external_lex_state = 14}, + [1793] = {.lex_state = 53, .external_lex_state = 13}, [1794] = {.lex_state = 53, .external_lex_state = 12}, - [1795] = {.lex_state = 53, .external_lex_state = 12}, - [1796] = {.lex_state = 53, .external_lex_state = 9}, - [1797] = {.lex_state = 53, .external_lex_state = 14}, - [1798] = {.lex_state = 53, .external_lex_state = 15}, - [1799] = {.lex_state = 53, .external_lex_state = 12}, - [1800] = {.lex_state = 53, .external_lex_state = 14}, + [1795] = {.lex_state = 53, .external_lex_state = 13}, + [1796] = {.lex_state = 53, .external_lex_state = 13}, + [1797] = {.lex_state = 53, .external_lex_state = 13}, + [1798] = {.lex_state = 0, .external_lex_state = 16}, + [1799] = {.lex_state = 53, .external_lex_state = 2}, + [1800] = {.lex_state = 53, .external_lex_state = 15}, [1801] = {.lex_state = 53, .external_lex_state = 14}, - [1802] = {.lex_state = 53, .external_lex_state = 14}, - [1803] = {.lex_state = 53, .external_lex_state = 14}, - [1804] = {.lex_state = 53, .external_lex_state = 14}, + [1802] = {.lex_state = 53, .external_lex_state = 9}, + [1803] = {.lex_state = 53, .external_lex_state = 15}, + [1804] = {.lex_state = 53, .external_lex_state = 13}, [1805] = {.lex_state = 53, .external_lex_state = 9}, - [1806] = {.lex_state = 53, .external_lex_state = 12}, - [1807] = {.lex_state = 0, .external_lex_state = 16}, - [1808] = {.lex_state = 53, .external_lex_state = 14}, - [1809] = {.lex_state = 53, .external_lex_state = 13}, - [1810] = {.lex_state = 9, .external_lex_state = 15}, - [1811] = {.lex_state = 8, .external_lex_state = 12}, - [1812] = {.lex_state = 53, .external_lex_state = 12}, - [1813] = {.lex_state = 53, .external_lex_state = 13}, + [1806] = {.lex_state = 53, .external_lex_state = 9}, + [1807] = {.lex_state = 53, .external_lex_state = 9}, + [1808] = {.lex_state = 53, .external_lex_state = 15}, + [1809] = {.lex_state = 8, .external_lex_state = 15}, + [1810] = {.lex_state = 53, .external_lex_state = 9}, + [1811] = {.lex_state = 53, .external_lex_state = 15}, + [1812] = {.lex_state = 53, .external_lex_state = 13}, + [1813] = {.lex_state = 53, .external_lex_state = 15}, [1814] = {.lex_state = 53, .external_lex_state = 13}, - [1815] = {.lex_state = 53, .external_lex_state = 12}, - [1816] = {.lex_state = 53, .external_lex_state = 12}, - [1817] = {.lex_state = 53, .external_lex_state = 9}, - [1818] = {.lex_state = 53, .external_lex_state = 9}, + [1815] = {.lex_state = 53, .external_lex_state = 13}, + [1816] = {.lex_state = 53, .external_lex_state = 9}, + [1817] = {.lex_state = 53, .external_lex_state = 15}, + [1818] = {.lex_state = 53, .external_lex_state = 14}, [1819] = {.lex_state = 53, .external_lex_state = 9}, - [1820] = {.lex_state = 53, .external_lex_state = 9}, - [1821] = {.lex_state = 53, .external_lex_state = 12}, - [1822] = {.lex_state = 53, .external_lex_state = 14}, - [1823] = {.lex_state = 53, .external_lex_state = 12}, + [1820] = {.lex_state = 53, .external_lex_state = 15}, + [1821] = {.lex_state = 53, .external_lex_state = 13}, + [1822] = {.lex_state = 53, .external_lex_state = 9}, + [1823] = {.lex_state = 53, .external_lex_state = 13}, [1824] = {.lex_state = 53, .external_lex_state = 9}, - [1825] = {.lex_state = 53, .external_lex_state = 12}, - [1826] = {.lex_state = 53, .external_lex_state = 14}, - [1827] = {.lex_state = 53, .external_lex_state = 14}, - [1828] = {.lex_state = 53, .external_lex_state = 14}, + [1825] = {.lex_state = 8, .external_lex_state = 12}, + [1826] = {.lex_state = 53, .external_lex_state = 15}, + [1827] = {.lex_state = 53, .external_lex_state = 15}, + [1828] = {.lex_state = 53, .external_lex_state = 15}, [1829] = {.lex_state = 53, .external_lex_state = 12}, - [1830] = {.lex_state = 0, .external_lex_state = 16}, - [1831] = {.lex_state = 53, .external_lex_state = 13}, - [1832] = {.lex_state = 8, .external_lex_state = 14}, - [1833] = {.lex_state = 53, .external_lex_state = 14}, - [1834] = {.lex_state = 53, .external_lex_state = 15}, - [1835] = {.lex_state = 8, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1836] = {.lex_state = 53, .external_lex_state = 9}, - [1837] = {.lex_state = 53, .external_lex_state = 13}, - [1838] = {.lex_state = 53, .external_lex_state = 13}, - [1839] = {.lex_state = 53, .external_lex_state = 14}, - [1840] = {.lex_state = 53, .external_lex_state = 15}, - [1841] = {.lex_state = 53, .external_lex_state = 9}, - [1842] = {.lex_state = 53, .external_lex_state = 15}, - [1843] = {.lex_state = 53, .external_lex_state = 8}, - [1844] = {.lex_state = 53, .external_lex_state = 13}, - [1845] = {.lex_state = 8, .external_lex_state = 13}, - [1846] = {.lex_state = 8, .external_lex_state = 14}, - [1847] = {.lex_state = 53, .external_lex_state = 13}, - [1848] = {.lex_state = 53, .external_lex_state = 12}, - [1849] = {.lex_state = 53, .external_lex_state = 13}, + [1830] = {.lex_state = 8, .external_lex_state = 13}, + [1831] = {.lex_state = 53, .external_lex_state = 15}, + [1832] = {.lex_state = 53, .external_lex_state = 15}, + [1833] = {.lex_state = 53, .external_lex_state = 13}, + [1834] = {.lex_state = 53, .external_lex_state = 12}, + [1835] = {.lex_state = 53, .external_lex_state = 13}, + [1836] = {.lex_state = 8, .external_lex_state = 12}, + [1837] = {.lex_state = 53, .external_lex_state = 12}, + [1838] = {.lex_state = 8, .external_lex_state = 14, .reserved_word_set_id = 1}, + [1839] = {.lex_state = 8, .external_lex_state = 15}, + [1840] = {.lex_state = 53, .external_lex_state = 9}, + [1841] = {.lex_state = 8, .external_lex_state = 15}, + [1842] = {.lex_state = 53, .external_lex_state = 14}, + [1843] = {.lex_state = 8, .external_lex_state = 13}, + [1844] = {.lex_state = 53, .external_lex_state = 14}, + [1845] = {.lex_state = 53, .external_lex_state = 15}, + [1846] = {.lex_state = 53, .external_lex_state = 12}, + [1847] = {.lex_state = 53, .external_lex_state = 14}, + [1848] = {.lex_state = 53, .external_lex_state = 15}, + [1849] = {.lex_state = 53, .external_lex_state = 14}, [1850] = {.lex_state = 53, .external_lex_state = 14}, - [1851] = {.lex_state = 53, .external_lex_state = 15}, - [1852] = {.lex_state = 53, .external_lex_state = 13}, - [1853] = {.lex_state = 8, .external_lex_state = 12}, - [1854] = {.lex_state = 53, .external_lex_state = 13}, - [1855] = {.lex_state = 8, .external_lex_state = 13}, - [1856] = {.lex_state = 53, .external_lex_state = 12}, - [1857] = {.lex_state = 53, .external_lex_state = 15}, - [1858] = {.lex_state = 53, .external_lex_state = 15}, - [1859] = {.lex_state = 53, .external_lex_state = 13}, - [1860] = {.lex_state = 53, .external_lex_state = 13}, - [1861] = {.lex_state = 53, .external_lex_state = 12}, - [1862] = {.lex_state = 53, .external_lex_state = 13}, - [1863] = {.lex_state = 53, .external_lex_state = 6}, + [1851] = {.lex_state = 53, .external_lex_state = 14}, + [1852] = {.lex_state = 53, .external_lex_state = 14}, + [1853] = {.lex_state = 53, .external_lex_state = 15}, + [1854] = {.lex_state = 53, .external_lex_state = 14}, + [1855] = {.lex_state = 53, .external_lex_state = 13}, + [1856] = {.lex_state = 53, .external_lex_state = 13}, + [1857] = {.lex_state = 53, .external_lex_state = 6}, + [1858] = {.lex_state = 53, .external_lex_state = 13}, + [1859] = {.lex_state = 8, .external_lex_state = 12}, + [1860] = {.lex_state = 8, .external_lex_state = 12}, + [1861] = {.lex_state = 53, .external_lex_state = 15}, + [1862] = {.lex_state = 53, .external_lex_state = 9}, + [1863] = {.lex_state = 53, .external_lex_state = 12}, [1864] = {.lex_state = 53, .external_lex_state = 15}, - [1865] = {.lex_state = 8, .external_lex_state = 12}, - [1866] = {.lex_state = 53, .external_lex_state = 14}, - [1867] = {.lex_state = 53, .external_lex_state = 14}, + [1865] = {.lex_state = 8, .external_lex_state = 15}, + [1866] = {.lex_state = 53, .external_lex_state = 13}, + [1867] = {.lex_state = 53, .external_lex_state = 12}, [1868] = {.lex_state = 53, .external_lex_state = 15}, - [1869] = {.lex_state = 53, .external_lex_state = 15}, - [1870] = {.lex_state = 53, .external_lex_state = 15}, - [1871] = {.lex_state = 53, .external_lex_state = 14}, - [1872] = {.lex_state = 53, .external_lex_state = 15}, + [1869] = {.lex_state = 53, .external_lex_state = 12}, + [1870] = {.lex_state = 53, .external_lex_state = 7}, + [1871] = {.lex_state = 53, .external_lex_state = 12}, + [1872] = {.lex_state = 53, .external_lex_state = 13}, [1873] = {.lex_state = 53, .external_lex_state = 12}, - [1874] = {.lex_state = 53, .external_lex_state = 15}, + [1874] = {.lex_state = 53, .external_lex_state = 12}, [1875] = {.lex_state = 53, .external_lex_state = 12}, - [1876] = {.lex_state = 53, .external_lex_state = 12}, - [1877] = {.lex_state = 53, .external_lex_state = 12}, - [1878] = {.lex_state = 53, .external_lex_state = 14}, - [1879] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1880] = {.lex_state = 8, .external_lex_state = 13}, - [1881] = {.lex_state = 53, .external_lex_state = 9}, - [1882] = {.lex_state = 53, .external_lex_state = 12}, - [1883] = {.lex_state = 8, .external_lex_state = 14}, - [1884] = {.lex_state = 53, .external_lex_state = 13}, - [1885] = {.lex_state = 8, .external_lex_state = 12}, - [1886] = {.lex_state = 53, .external_lex_state = 7}, - [1887] = {.lex_state = 53, .external_lex_state = 13}, - [1888] = {.lex_state = 8, .external_lex_state = 14}, - [1889] = {.lex_state = 53, .external_lex_state = 14}, - [1890] = {.lex_state = 53, .external_lex_state = 13}, - [1891] = {.lex_state = 53, .external_lex_state = 9}, + [1876] = {.lex_state = 53, .external_lex_state = 14}, + [1877] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [1878] = {.lex_state = 53, .external_lex_state = 9}, + [1879] = {.lex_state = 53, .external_lex_state = 14}, + [1880] = {.lex_state = 53, .external_lex_state = 14}, + [1881] = {.lex_state = 53, .external_lex_state = 12}, + [1882] = {.lex_state = 53, .external_lex_state = 14}, + [1883] = {.lex_state = 8, .external_lex_state = 13}, + [1884] = {.lex_state = 53, .external_lex_state = 8}, + [1885] = {.lex_state = 53, .external_lex_state = 13}, + [1886] = {.lex_state = 53, .external_lex_state = 13}, + [1887] = {.lex_state = 53, .external_lex_state = 12}, + [1888] = {.lex_state = 8, .external_lex_state = 13}, + [1889] = {.lex_state = 53, .external_lex_state = 13}, + [1890] = {.lex_state = 53, .external_lex_state = 12}, + [1891] = {.lex_state = 53, .external_lex_state = 15}, [1892] = {.lex_state = 53, .external_lex_state = 14}, - [1893] = {.lex_state = 9, .external_lex_state = 12}, - [1894] = {.lex_state = 53, .external_lex_state = 15}, - [1895] = {.lex_state = 53, .external_lex_state = 12}, - [1896] = {.lex_state = 53, .external_lex_state = 14}, - [1897] = {.lex_state = 53, .external_lex_state = 9}, - [1898] = {.lex_state = 53, .external_lex_state = 13}, - [1899] = {.lex_state = 53, .external_lex_state = 15}, - [1900] = {.lex_state = 0, .external_lex_state = 16}, - [1901] = {.lex_state = 53, .external_lex_state = 14}, - [1902] = {.lex_state = 53, .external_lex_state = 14}, + [1893] = {.lex_state = 53, .external_lex_state = 12}, + [1894] = {.lex_state = 9, .external_lex_state = 15}, + [1895] = {.lex_state = 9, .external_lex_state = 14}, + [1896] = {.lex_state = 8, .external_lex_state = 9}, + [1897] = {.lex_state = 53, .external_lex_state = 14}, + [1898] = {.lex_state = 53, .external_lex_state = 12}, + [1899] = {.lex_state = 8, .external_lex_state = 9}, + [1900] = {.lex_state = 53, .external_lex_state = 15}, + [1901] = {.lex_state = 0, .external_lex_state = 16}, + [1902] = {.lex_state = 9, .external_lex_state = 9}, [1903] = {.lex_state = 9, .external_lex_state = 9}, - [1904] = {.lex_state = 0, .external_lex_state = 16}, - [1905] = {.lex_state = 53, .external_lex_state = 15}, - [1906] = {.lex_state = 53, .external_lex_state = 13}, - [1907] = {.lex_state = 53, .external_lex_state = 15}, - [1908] = {.lex_state = 53, .external_lex_state = 12}, - [1909] = {.lex_state = 53, .external_lex_state = 12}, - [1910] = {.lex_state = 53, .external_lex_state = 9}, - [1911] = {.lex_state = 9, .external_lex_state = 9}, - [1912] = {.lex_state = 53, .external_lex_state = 13}, - [1913] = {.lex_state = 9, .external_lex_state = 9}, - [1914] = {.lex_state = 53, .external_lex_state = 13}, - [1915] = {.lex_state = 53, .external_lex_state = 12}, - [1916] = {.lex_state = 9, .external_lex_state = 12}, - [1917] = {.lex_state = 53, .external_lex_state = 12}, - [1918] = {.lex_state = 53, .external_lex_state = 13}, + [1904] = {.lex_state = 9, .external_lex_state = 9}, + [1905] = {.lex_state = 0, .external_lex_state = 16}, + [1906] = {.lex_state = 53, .external_lex_state = 14}, + [1907] = {.lex_state = 53, .external_lex_state = 14}, + [1908] = {.lex_state = 0, .external_lex_state = 16}, + [1909] = {.lex_state = 8, .external_lex_state = 9}, + [1910] = {.lex_state = 53, .external_lex_state = 12}, + [1911] = {.lex_state = 9, .external_lex_state = 15}, + [1912] = {.lex_state = 9, .external_lex_state = 14}, + [1913] = {.lex_state = 53, .external_lex_state = 15}, + [1914] = {.lex_state = 0, .external_lex_state = 16}, + [1915] = {.lex_state = 9, .external_lex_state = 13}, + [1916] = {.lex_state = 53, .external_lex_state = 13}, + [1917] = {.lex_state = 53, .external_lex_state = 15}, + [1918] = {.lex_state = 53, .external_lex_state = 15}, [1919] = {.lex_state = 53, .external_lex_state = 15}, - [1920] = {.lex_state = 53, .external_lex_state = 13}, - [1921] = {.lex_state = 53, .external_lex_state = 12}, - [1922] = {.lex_state = 53, .external_lex_state = 14}, - [1923] = {.lex_state = 8, .external_lex_state = 9}, - [1924] = {.lex_state = 8, .external_lex_state = 13}, + [1920] = {.lex_state = 53, .external_lex_state = 12}, + [1921] = {.lex_state = 53, .external_lex_state = 14}, + [1922] = {.lex_state = 53, .external_lex_state = 12}, + [1923] = {.lex_state = 53, .external_lex_state = 13}, + [1924] = {.lex_state = 53, .external_lex_state = 15}, [1925] = {.lex_state = 53, .external_lex_state = 15}, - [1926] = {.lex_state = 53, .external_lex_state = 13}, + [1926] = {.lex_state = 53, .external_lex_state = 14}, [1927] = {.lex_state = 53, .external_lex_state = 14}, - [1928] = {.lex_state = 53, .external_lex_state = 15}, - [1929] = {.lex_state = 9, .external_lex_state = 15}, + [1928] = {.lex_state = 8, .external_lex_state = 14, .reserved_word_set_id = 1}, + [1929] = {.lex_state = 53, .external_lex_state = 15}, [1930] = {.lex_state = 53, .external_lex_state = 13}, - [1931] = {.lex_state = 53, .external_lex_state = 13}, - [1932] = {.lex_state = 9, .external_lex_state = 14}, - [1933] = {.lex_state = 0, .external_lex_state = 16}, - [1934] = {.lex_state = 53, .external_lex_state = 15}, - [1935] = {.lex_state = 53, .external_lex_state = 15}, - [1936] = {.lex_state = 9, .external_lex_state = 9}, - [1937] = {.lex_state = 9, .external_lex_state = 9}, - [1938] = {.lex_state = 8, .external_lex_state = 9}, + [1931] = {.lex_state = 8, .external_lex_state = 15}, + [1932] = {.lex_state = 53, .external_lex_state = 13}, + [1933] = {.lex_state = 53, .external_lex_state = 12}, + [1934] = {.lex_state = 9, .external_lex_state = 13}, + [1935] = {.lex_state = 9, .external_lex_state = 15}, + [1936] = {.lex_state = 53, .external_lex_state = 15}, + [1937] = {.lex_state = 53, .external_lex_state = 14}, + [1938] = {.lex_state = 53, .external_lex_state = 9}, [1939] = {.lex_state = 9, .external_lex_state = 9}, - [1940] = {.lex_state = 9, .external_lex_state = 9}, - [1941] = {.lex_state = 9, .external_lex_state = 14}, - [1942] = {.lex_state = 9, .external_lex_state = 15}, - [1943] = {.lex_state = 53, .external_lex_state = 13}, - [1944] = {.lex_state = 9, .external_lex_state = 14}, - [1945] = {.lex_state = 53, .external_lex_state = 15}, + [1940] = {.lex_state = 53, .external_lex_state = 14}, + [1941] = {.lex_state = 0, .external_lex_state = 16}, + [1942] = {.lex_state = 0, .external_lex_state = 16}, + [1943] = {.lex_state = 0, .external_lex_state = 16}, + [1944] = {.lex_state = 53, .external_lex_state = 12}, + [1945] = {.lex_state = 53, .external_lex_state = 13}, [1946] = {.lex_state = 53, .external_lex_state = 15}, - [1947] = {.lex_state = 9, .external_lex_state = 14}, - [1948] = {.lex_state = 53, .external_lex_state = 12}, - [1949] = {.lex_state = 9, .external_lex_state = 12}, - [1950] = {.lex_state = 9, .external_lex_state = 9}, - [1951] = {.lex_state = 53, .external_lex_state = 15}, - [1952] = {.lex_state = 9, .external_lex_state = 12}, - [1953] = {.lex_state = 53, .external_lex_state = 14}, + [1947] = {.lex_state = 9, .external_lex_state = 15}, + [1948] = {.lex_state = 53, .external_lex_state = 15}, + [1949] = {.lex_state = 53, .external_lex_state = 12}, + [1950] = {.lex_state = 53, .external_lex_state = 12}, + [1951] = {.lex_state = 9, .external_lex_state = 13}, + [1952] = {.lex_state = 53, .external_lex_state = 12}, + [1953] = {.lex_state = 53, .external_lex_state = 13}, [1954] = {.lex_state = 53, .external_lex_state = 12}, - [1955] = {.lex_state = 53, .external_lex_state = 14}, - [1956] = {.lex_state = 53, .external_lex_state = 14}, - [1957] = {.lex_state = 53, .external_lex_state = 14}, - [1958] = {.lex_state = 9, .external_lex_state = 14}, - [1959] = {.lex_state = 9, .external_lex_state = 14}, - [1960] = {.lex_state = 9, .external_lex_state = 14}, + [1955] = {.lex_state = 53, .external_lex_state = 12}, + [1956] = {.lex_state = 9, .external_lex_state = 9}, + [1957] = {.lex_state = 9, .external_lex_state = 9}, + [1958] = {.lex_state = 9, .external_lex_state = 9}, + [1959] = {.lex_state = 8, .external_lex_state = 12}, + [1960] = {.lex_state = 53, .external_lex_state = 14}, [1961] = {.lex_state = 53, .external_lex_state = 14}, [1962] = {.lex_state = 53, .external_lex_state = 14}, [1963] = {.lex_state = 53, .external_lex_state = 14}, - [1964] = {.lex_state = 9, .external_lex_state = 15}, - [1965] = {.lex_state = 53, .external_lex_state = 13}, - [1966] = {.lex_state = 53, .external_lex_state = 13}, + [1964] = {.lex_state = 53, .external_lex_state = 12}, + [1965] = {.lex_state = 53, .external_lex_state = 15}, + [1966] = {.lex_state = 9, .external_lex_state = 9}, [1967] = {.lex_state = 53, .external_lex_state = 15}, - [1968] = {.lex_state = 53, .external_lex_state = 15}, - [1969] = {.lex_state = 53, .external_lex_state = 14}, - [1970] = {.lex_state = 53, .external_lex_state = 12}, - [1971] = {.lex_state = 9, .external_lex_state = 9}, - [1972] = {.lex_state = 53, .external_lex_state = 12}, - [1973] = {.lex_state = 9, .external_lex_state = 9}, - [1974] = {.lex_state = 9, .external_lex_state = 9}, - [1975] = {.lex_state = 53, .external_lex_state = 13}, - [1976] = {.lex_state = 0, .external_lex_state = 16}, - [1977] = {.lex_state = 0, .external_lex_state = 16}, - [1978] = {.lex_state = 0, .external_lex_state = 16}, - [1979] = {.lex_state = 0, .external_lex_state = 16}, - [1980] = {.lex_state = 53, .external_lex_state = 13}, - [1981] = {.lex_state = 53, .external_lex_state = 14}, - [1982] = {.lex_state = 53, .external_lex_state = 15}, - [1983] = {.lex_state = 53, .external_lex_state = 15}, - [1984] = {.lex_state = 53, .external_lex_state = 12}, - [1985] = {.lex_state = 53, .external_lex_state = 12}, - [1986] = {.lex_state = 0, .external_lex_state = 16}, + [1968] = {.lex_state = 53, .external_lex_state = 13}, + [1969] = {.lex_state = 53, .external_lex_state = 13}, + [1970] = {.lex_state = 9, .external_lex_state = 15}, + [1971] = {.lex_state = 53, .external_lex_state = 15}, + [1972] = {.lex_state = 53, .external_lex_state = 15}, + [1973] = {.lex_state = 53, .external_lex_state = 9}, + [1974] = {.lex_state = 53, .external_lex_state = 12}, + [1975] = {.lex_state = 9, .external_lex_state = 14}, + [1976] = {.lex_state = 9, .external_lex_state = 13}, + [1977] = {.lex_state = 9, .external_lex_state = 9}, + [1978] = {.lex_state = 9, .external_lex_state = 15}, + [1979] = {.lex_state = 9, .external_lex_state = 9}, + [1980] = {.lex_state = 9, .external_lex_state = 9}, + [1981] = {.lex_state = 53, .external_lex_state = 13}, + [1982] = {.lex_state = 9, .external_lex_state = 15}, + [1983] = {.lex_state = 9, .external_lex_state = 15}, + [1984] = {.lex_state = 9, .external_lex_state = 15}, + [1985] = {.lex_state = 53, .external_lex_state = 14}, + [1986] = {.lex_state = 53, .external_lex_state = 13}, [1987] = {.lex_state = 53, .external_lex_state = 14}, - [1988] = {.lex_state = 8, .external_lex_state = 12}, - [1989] = {.lex_state = 9, .external_lex_state = 14}, - [1990] = {.lex_state = 8, .external_lex_state = 14}, - [1991] = {.lex_state = 53, .external_lex_state = 12}, - [1992] = {.lex_state = 9, .external_lex_state = 14}, - [1993] = {.lex_state = 9, .external_lex_state = 14}, - [1994] = {.lex_state = 9, .external_lex_state = 14}, - [1995] = {.lex_state = 8, .external_lex_state = 9}, - [1996] = {.lex_state = 53, .external_lex_state = 12}, - [1997] = {.lex_state = 53, .external_lex_state = 14}, - [1998] = {.lex_state = 3, .external_lex_state = 13}, - [1999] = {.lex_state = 53, .external_lex_state = 13}, - [2000] = {.lex_state = 53, .external_lex_state = 15}, - [2001] = {.lex_state = 9, .external_lex_state = 12}, - [2002] = {.lex_state = 9, .external_lex_state = 12}, - [2003] = {.lex_state = 9, .external_lex_state = 12}, - [2004] = {.lex_state = 3, .external_lex_state = 13}, - [2005] = {.lex_state = 53, .external_lex_state = 15}, - [2006] = {.lex_state = 53, .external_lex_state = 13}, - [2007] = {.lex_state = 53, .external_lex_state = 13}, - [2008] = {.lex_state = 53, .external_lex_state = 12}, - [2009] = {.lex_state = 9, .external_lex_state = 12}, - [2010] = {.lex_state = 53, .external_lex_state = 14}, - [2011] = {.lex_state = 53, .external_lex_state = 12}, - [2012] = {.lex_state = 53, .external_lex_state = 14}, - [2013] = {.lex_state = 53, .external_lex_state = 15}, - [2014] = {.lex_state = 53, .external_lex_state = 13}, - [2015] = {.lex_state = 53, .external_lex_state = 12}, - [2016] = {.lex_state = 53, .external_lex_state = 12}, - [2017] = {.lex_state = 9, .external_lex_state = 12}, - [2018] = {.lex_state = 53, .external_lex_state = 13}, - [2019] = {.lex_state = 53, .external_lex_state = 15}, - [2020] = {.lex_state = 53, .external_lex_state = 15}, - [2021] = {.lex_state = 3, .external_lex_state = 13}, - [2022] = {.lex_state = 53, .external_lex_state = 15}, - [2023] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2024] = {.lex_state = 53, .external_lex_state = 15}, - [2025] = {.lex_state = 53, .external_lex_state = 12}, - [2026] = {.lex_state = 9, .external_lex_state = 12}, - [2027] = {.lex_state = 53, .external_lex_state = 15}, - [2028] = {.lex_state = 53, .external_lex_state = 13}, - [2029] = {.lex_state = 53, .external_lex_state = 13}, - [2030] = {.lex_state = 53, .external_lex_state = 13}, - [2031] = {.lex_state = 53, .external_lex_state = 13}, - [2032] = {.lex_state = 53, .external_lex_state = 12}, - [2033] = {.lex_state = 53, .external_lex_state = 12}, + [1988] = {.lex_state = 53, .external_lex_state = 9}, + [1989] = {.lex_state = 53, .external_lex_state = 12}, + [1990] = {.lex_state = 53, .external_lex_state = 13}, + [1991] = {.lex_state = 0, .external_lex_state = 16}, + [1992] = {.lex_state = 53, .external_lex_state = 15}, + [1993] = {.lex_state = 53, .external_lex_state = 15}, + [1994] = {.lex_state = 53, .external_lex_state = 13}, + [1995] = {.lex_state = 53, .external_lex_state = 14}, + [1996] = {.lex_state = 8, .external_lex_state = 13}, + [1997] = {.lex_state = 53, .external_lex_state = 13}, + [1998] = {.lex_state = 9, .external_lex_state = 15}, + [1999] = {.lex_state = 9, .external_lex_state = 15}, + [2000] = {.lex_state = 53, .external_lex_state = 13}, + [2001] = {.lex_state = 3, .external_lex_state = 12}, + [2002] = {.lex_state = 8, .external_lex_state = 9}, + [2003] = {.lex_state = 53, .external_lex_state = 14}, + [2004] = {.lex_state = 9, .external_lex_state = 14}, + [2005] = {.lex_state = 53, .external_lex_state = 12}, + [2006] = {.lex_state = 53, .external_lex_state = 14}, + [2007] = {.lex_state = 53, .external_lex_state = 14}, + [2008] = {.lex_state = 9, .external_lex_state = 13}, + [2009] = {.lex_state = 9, .external_lex_state = 13}, + [2010] = {.lex_state = 9, .external_lex_state = 13}, + [2011] = {.lex_state = 53, .external_lex_state = 9}, + [2012] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [2013] = {.lex_state = 53, .external_lex_state = 12}, + [2014] = {.lex_state = 53, .external_lex_state = 14}, + [2015] = {.lex_state = 3, .external_lex_state = 12}, + [2016] = {.lex_state = 9, .external_lex_state = 13}, + [2017] = {.lex_state = 53, .external_lex_state = 14}, + [2018] = {.lex_state = 53, .external_lex_state = 15}, + [2019] = {.lex_state = 53, .external_lex_state = 9}, + [2020] = {.lex_state = 53, .external_lex_state = 13}, + [2021] = {.lex_state = 53, .external_lex_state = 13}, + [2022] = {.lex_state = 53, .external_lex_state = 12}, + [2023] = {.lex_state = 53, .external_lex_state = 14}, + [2024] = {.lex_state = 53, .external_lex_state = 12}, + [2025] = {.lex_state = 9, .external_lex_state = 13}, + [2026] = {.lex_state = 53, .external_lex_state = 14}, + [2027] = {.lex_state = 53, .external_lex_state = 12}, + [2028] = {.lex_state = 9, .external_lex_state = 15}, + [2029] = {.lex_state = 53, .external_lex_state = 14}, + [2030] = {.lex_state = 53, .external_lex_state = 14}, + [2031] = {.lex_state = 53, .external_lex_state = 12}, + [2032] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [2033] = {.lex_state = 53, .external_lex_state = 14}, [2034] = {.lex_state = 53, .external_lex_state = 12}, - [2035] = {.lex_state = 53, .external_lex_state = 13}, - [2036] = {.lex_state = 8, .external_lex_state = 9}, - [2037] = {.lex_state = 53, .external_lex_state = 13}, - [2038] = {.lex_state = 53, .external_lex_state = 15}, - [2039] = {.lex_state = 53, .external_lex_state = 13}, - [2040] = {.lex_state = 53, .external_lex_state = 15}, - [2041] = {.lex_state = 53, .external_lex_state = 13}, - [2042] = {.lex_state = 53, .external_lex_state = 15}, - [2043] = {.lex_state = 9, .external_lex_state = 12}, + [2035] = {.lex_state = 53, .external_lex_state = 14}, + [2036] = {.lex_state = 53, .external_lex_state = 13}, + [2037] = {.lex_state = 9, .external_lex_state = 13}, + [2038] = {.lex_state = 53, .external_lex_state = 12}, + [2039] = {.lex_state = 53, .external_lex_state = 15}, + [2040] = {.lex_state = 53, .external_lex_state = 12}, + [2041] = {.lex_state = 53, .external_lex_state = 12}, + [2042] = {.lex_state = 53, .external_lex_state = 14}, + [2043] = {.lex_state = 9, .external_lex_state = 14}, [2044] = {.lex_state = 53, .external_lex_state = 13}, - [2045] = {.lex_state = 53, .external_lex_state = 15}, - [2046] = {.lex_state = 9, .external_lex_state = 15}, - [2047] = {.lex_state = 53, .external_lex_state = 15}, - [2048] = {.lex_state = 53, .external_lex_state = 14}, - [2049] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, - [2050] = {.lex_state = 53, .external_lex_state = 15}, - [2051] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, - [2052] = {.lex_state = 53, .external_lex_state = 15}, + [2045] = {.lex_state = 53, .external_lex_state = 13}, + [2046] = {.lex_state = 53, .external_lex_state = 13}, + [2047] = {.lex_state = 53, .external_lex_state = 12}, + [2048] = {.lex_state = 53, .external_lex_state = 15}, + [2049] = {.lex_state = 53, .external_lex_state = 15}, + [2050] = {.lex_state = 53, .external_lex_state = 14}, + [2051] = {.lex_state = 53, .external_lex_state = 14}, + [2052] = {.lex_state = 53, .external_lex_state = 9}, [2053] = {.lex_state = 53, .external_lex_state = 15}, - [2054] = {.lex_state = 53, .external_lex_state = 13}, + [2054] = {.lex_state = 53, .external_lex_state = 14}, [2055] = {.lex_state = 53, .external_lex_state = 14}, [2056] = {.lex_state = 53, .external_lex_state = 14}, - [2057] = {.lex_state = 53, .external_lex_state = 15}, - [2058] = {.lex_state = 53, .external_lex_state = 15}, - [2059] = {.lex_state = 53, .external_lex_state = 13}, - [2060] = {.lex_state = 53, .external_lex_state = 15}, - [2061] = {.lex_state = 9, .external_lex_state = 14}, - [2062] = {.lex_state = 53, .external_lex_state = 15}, - [2063] = {.lex_state = 53, .external_lex_state = 15}, - [2064] = {.lex_state = 53, .external_lex_state = 15}, - [2065] = {.lex_state = 53, .external_lex_state = 15}, + [2057] = {.lex_state = 53, .external_lex_state = 12}, + [2058] = {.lex_state = 53, .external_lex_state = 14}, + [2059] = {.lex_state = 53, .external_lex_state = 14}, + [2060] = {.lex_state = 53, .external_lex_state = 14}, + [2061] = {.lex_state = 53, .external_lex_state = 14}, + [2062] = {.lex_state = 3, .external_lex_state = 12}, + [2063] = {.lex_state = 53, .external_lex_state = 14}, + [2064] = {.lex_state = 53, .external_lex_state = 14}, + [2065] = {.lex_state = 53, .external_lex_state = 14}, [2066] = {.lex_state = 53, .external_lex_state = 14}, - [2067] = {.lex_state = 53, .external_lex_state = 15}, - [2068] = {.lex_state = 9, .external_lex_state = 12}, - [2069] = {.lex_state = 53, .external_lex_state = 14}, - [2070] = {.lex_state = 53, .external_lex_state = 15}, - [2071] = {.lex_state = 9, .external_lex_state = 15}, - [2072] = {.lex_state = 53, .external_lex_state = 13}, - [2073] = {.lex_state = 53, .external_lex_state = 15}, - [2074] = {.lex_state = 9, .external_lex_state = 15}, - [2075] = {.lex_state = 9, .external_lex_state = 9}, - [2076] = {.lex_state = 53, .external_lex_state = 15}, - [2077] = {.lex_state = 53, .external_lex_state = 15}, - [2078] = {.lex_state = 53, .external_lex_state = 15}, - [2079] = {.lex_state = 53, .external_lex_state = 15}, - [2080] = {.lex_state = 53, .external_lex_state = 15}, - [2081] = {.lex_state = 53, .external_lex_state = 15}, - [2082] = {.lex_state = 53, .external_lex_state = 15}, - [2083] = {.lex_state = 53, .external_lex_state = 15}, - [2084] = {.lex_state = 53, .external_lex_state = 15}, - [2085] = {.lex_state = 9, .external_lex_state = 15}, - [2086] = {.lex_state = 53, .external_lex_state = 12}, - [2087] = {.lex_state = 53, .external_lex_state = 15}, - [2088] = {.lex_state = 9, .external_lex_state = 12}, - [2089] = {.lex_state = 53, .external_lex_state = 15}, - [2090] = {.lex_state = 53, .external_lex_state = 13}, - [2091] = {.lex_state = 53, .external_lex_state = 13}, - [2092] = {.lex_state = 9, .external_lex_state = 12}, - [2093] = {.lex_state = 9, .external_lex_state = 15}, - [2094] = {.lex_state = 9, .external_lex_state = 12}, - [2095] = {.lex_state = 9, .external_lex_state = 15}, - [2096] = {.lex_state = 9, .external_lex_state = 15}, - [2097] = {.lex_state = 53, .external_lex_state = 13}, - [2098] = {.lex_state = 53, .external_lex_state = 9}, - [2099] = {.lex_state = 53, .external_lex_state = 9}, - [2100] = {.lex_state = 53, .external_lex_state = 14}, - [2101] = {.lex_state = 53, .external_lex_state = 15}, - [2102] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, - [2103] = {.lex_state = 53, .external_lex_state = 13}, - [2104] = {.lex_state = 53, .external_lex_state = 15}, - [2105] = {.lex_state = 53, .external_lex_state = 15}, - [2106] = {.lex_state = 53, .external_lex_state = 15}, - [2107] = {.lex_state = 53, .external_lex_state = 9}, - [2108] = {.lex_state = 53, .external_lex_state = 9}, - [2109] = {.lex_state = 53, .external_lex_state = 15}, - [2110] = {.lex_state = 9, .external_lex_state = 15}, + [2067] = {.lex_state = 53, .external_lex_state = 12}, + [2068] = {.lex_state = 53, .external_lex_state = 12}, + [2069] = {.lex_state = 53, .external_lex_state = 15}, + [2070] = {.lex_state = 53, .external_lex_state = 14}, + [2071] = {.lex_state = 53, .external_lex_state = 14}, + [2072] = {.lex_state = 53, .external_lex_state = 14}, + [2073] = {.lex_state = 9, .external_lex_state = 13}, + [2074] = {.lex_state = 53, .external_lex_state = 14}, + [2075] = {.lex_state = 53, .external_lex_state = 14}, + [2076] = {.lex_state = 53, .external_lex_state = 14}, + [2077] = {.lex_state = 9, .external_lex_state = 13}, + [2078] = {.lex_state = 9, .external_lex_state = 13}, + [2079] = {.lex_state = 9, .external_lex_state = 13}, + [2080] = {.lex_state = 53, .external_lex_state = 14}, + [2081] = {.lex_state = 53, .external_lex_state = 12}, + [2082] = {.lex_state = 9, .external_lex_state = 14}, + [2083] = {.lex_state = 53, .external_lex_state = 14}, + [2084] = {.lex_state = 53, .external_lex_state = 14}, + [2085] = {.lex_state = 53, .external_lex_state = 14}, + [2086] = {.lex_state = 53, .external_lex_state = 14}, + [2087] = {.lex_state = 53, .external_lex_state = 13}, + [2088] = {.lex_state = 53, .external_lex_state = 13}, + [2089] = {.lex_state = 53, .external_lex_state = 14}, + [2090] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [2091] = {.lex_state = 53, .external_lex_state = 14}, + [2092] = {.lex_state = 53, .external_lex_state = 9}, + [2093] = {.lex_state = 9, .external_lex_state = 14}, + [2094] = {.lex_state = 53, .external_lex_state = 12}, + [2095] = {.lex_state = 9, .external_lex_state = 9}, + [2096] = {.lex_state = 9, .external_lex_state = 14}, + [2097] = {.lex_state = 53, .external_lex_state = 15}, + [2098] = {.lex_state = 53, .external_lex_state = 15}, + [2099] = {.lex_state = 53, .external_lex_state = 15}, + [2100] = {.lex_state = 53, .external_lex_state = 12}, + [2101] = {.lex_state = 53, .external_lex_state = 14}, + [2102] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2103] = {.lex_state = 53, .external_lex_state = 12}, + [2104] = {.lex_state = 53, .external_lex_state = 12}, + [2105] = {.lex_state = 9, .external_lex_state = 14}, + [2106] = {.lex_state = 53, .external_lex_state = 14}, + [2107] = {.lex_state = 53, .external_lex_state = 13}, + [2108] = {.lex_state = 53, .external_lex_state = 14}, + [2109] = {.lex_state = 53, .external_lex_state = 12}, + [2110] = {.lex_state = 53, .external_lex_state = 14}, [2111] = {.lex_state = 53, .external_lex_state = 14}, - [2112] = {.lex_state = 53, .external_lex_state = 15}, - [2113] = {.lex_state = 53, .external_lex_state = 14}, - [2114] = {.lex_state = 53, .external_lex_state = 9}, - [2115] = {.lex_state = 53, .external_lex_state = 12}, - [2116] = {.lex_state = 53, .external_lex_state = 14}, + [2112] = {.lex_state = 9, .external_lex_state = 14}, + [2113] = {.lex_state = 9, .external_lex_state = 14}, + [2114] = {.lex_state = 53, .external_lex_state = 12}, + [2115] = {.lex_state = 9, .external_lex_state = 13}, + [2116] = {.lex_state = 53, .external_lex_state = 12}, [2117] = {.lex_state = 53, .external_lex_state = 12}, - [2118] = {.lex_state = 53, .external_lex_state = 13}, - [2119] = {.lex_state = 53, .external_lex_state = 9}, + [2118] = {.lex_state = 53, .external_lex_state = 14}, + [2119] = {.lex_state = 53, .external_lex_state = 13}, [2120] = {.lex_state = 53, .external_lex_state = 12}, - [2121] = {.lex_state = 53, .external_lex_state = 9}, - [2122] = {.lex_state = 53, .external_lex_state = 13}, - [2123] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2124] = {.lex_state = 53, .external_lex_state = 13}, - [2125] = {.lex_state = 53, .external_lex_state = 13}, - [2126] = {.lex_state = 53, .external_lex_state = 13}, - [2127] = {.lex_state = 53, .external_lex_state = 9}, - [2128] = {.lex_state = 53, .external_lex_state = 13}, - [2129] = {.lex_state = 53, .external_lex_state = 12}, - [2130] = {.lex_state = 53, .external_lex_state = 15}, - [2131] = {.lex_state = 53, .external_lex_state = 14}, - [2132] = {.lex_state = 53, .external_lex_state = 9}, - [2133] = {.lex_state = 53, .external_lex_state = 13}, - [2134] = {.lex_state = 53, .external_lex_state = 14}, - [2135] = {.lex_state = 53, .external_lex_state = 13}, - [2136] = {.lex_state = 53, .external_lex_state = 9}, - [2137] = {.lex_state = 53, .external_lex_state = 17}, - [2138] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2139] = {.lex_state = 53, .external_lex_state = 9}, - [2140] = {.lex_state = 53, .external_lex_state = 13}, - [2141] = {.lex_state = 53, .external_lex_state = 9}, - [2142] = {.lex_state = 53, .external_lex_state = 14}, - [2143] = {.lex_state = 53, .external_lex_state = 15}, - [2144] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2145] = {.lex_state = 9, .external_lex_state = 15}, - [2146] = {.lex_state = 8, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2121] = {.lex_state = 53, .external_lex_state = 12}, + [2122] = {.lex_state = 53, .external_lex_state = 17}, + [2123] = {.lex_state = 53, .external_lex_state = 15}, + [2124] = {.lex_state = 53, .external_lex_state = 12}, + [2125] = {.lex_state = 53, .external_lex_state = 12}, + [2126] = {.lex_state = 8, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2127] = {.lex_state = 53, .external_lex_state = 12}, + [2128] = {.lex_state = 53, .external_lex_state = 12}, + [2129] = {.lex_state = 53, .external_lex_state = 9}, + [2130] = {.lex_state = 53, .external_lex_state = 12}, + [2131] = {.lex_state = 53, .external_lex_state = 12}, + [2132] = {.lex_state = 53, .external_lex_state = 12}, + [2133] = {.lex_state = 53, .external_lex_state = 12}, + [2134] = {.lex_state = 53, .external_lex_state = 12}, + [2135] = {.lex_state = 53, .external_lex_state = 12}, + [2136] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2137] = {.lex_state = 53, .external_lex_state = 9}, + [2138] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2139] = {.lex_state = 53, .external_lex_state = 17}, + [2140] = {.lex_state = 53, .external_lex_state = 12}, + [2141] = {.lex_state = 53, .external_lex_state = 15}, + [2142] = {.lex_state = 53, .external_lex_state = 15}, + [2143] = {.lex_state = 53, .external_lex_state = 9}, + [2144] = {.lex_state = 53, .external_lex_state = 15}, + [2145] = {.lex_state = 53, .external_lex_state = 15}, + [2146] = {.lex_state = 53, .external_lex_state = 15}, [2147] = {.lex_state = 53, .external_lex_state = 13}, - [2148] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, - [2149] = {.lex_state = 53, .external_lex_state = 14}, - [2150] = {.lex_state = 53, .external_lex_state = 12}, - [2151] = {.lex_state = 53, .external_lex_state = 17}, - [2152] = {.lex_state = 53, .external_lex_state = 14}, - [2153] = {.lex_state = 53, .external_lex_state = 14}, - [2154] = {.lex_state = 53, .external_lex_state = 13}, + [2148] = {.lex_state = 53, .external_lex_state = 15}, + [2149] = {.lex_state = 53, .external_lex_state = 15}, + [2150] = {.lex_state = 53, .external_lex_state = 13}, + [2151] = {.lex_state = 53, .external_lex_state = 12}, + [2152] = {.lex_state = 53, .external_lex_state = 13}, + [2153] = {.lex_state = 53, .external_lex_state = 15}, + [2154] = {.lex_state = 53, .external_lex_state = 12}, [2155] = {.lex_state = 53, .external_lex_state = 12}, - [2156] = {.lex_state = 53, .external_lex_state = 12}, - [2157] = {.lex_state = 53, .external_lex_state = 12}, - [2158] = {.lex_state = 53, .external_lex_state = 12}, - [2159] = {.lex_state = 53, .external_lex_state = 13}, + [2156] = {.lex_state = 53, .external_lex_state = 15}, + [2157] = {.lex_state = 53, .external_lex_state = 13}, + [2158] = {.lex_state = 53, .external_lex_state = 14}, + [2159] = {.lex_state = 9, .external_lex_state = 14}, [2160] = {.lex_state = 53, .external_lex_state = 13}, - [2161] = {.lex_state = 53, .external_lex_state = 17}, - [2162] = {.lex_state = 53, .external_lex_state = 17}, - [2163] = {.lex_state = 53, .external_lex_state = 9}, - [2164] = {.lex_state = 53, .external_lex_state = 14}, - [2165] = {.lex_state = 53, .external_lex_state = 12}, - [2166] = {.lex_state = 53, .external_lex_state = 14}, - [2167] = {.lex_state = 53, .external_lex_state = 12}, - [2168] = {.lex_state = 53, .external_lex_state = 13}, - [2169] = {.lex_state = 53, .external_lex_state = 17}, - [2170] = {.lex_state = 53, .external_lex_state = 14}, - [2171] = {.lex_state = 53, .external_lex_state = 13}, - [2172] = {.lex_state = 53, .external_lex_state = 9}, - [2173] = {.lex_state = 53, .external_lex_state = 14}, - [2174] = {.lex_state = 53, .external_lex_state = 12}, - [2175] = {.lex_state = 53, .external_lex_state = 12}, - [2176] = {.lex_state = 53, .external_lex_state = 13}, - [2177] = {.lex_state = 53, .external_lex_state = 14}, - [2178] = {.lex_state = 53, .external_lex_state = 14}, - [2179] = {.lex_state = 53, .external_lex_state = 14}, - [2180] = {.lex_state = 53, .external_lex_state = 12}, - [2181] = {.lex_state = 53, .external_lex_state = 14}, - [2182] = {.lex_state = 53, .external_lex_state = 12}, - [2183] = {.lex_state = 53, .external_lex_state = 12}, - [2184] = {.lex_state = 53, .external_lex_state = 12}, + [2161] = {.lex_state = 53, .external_lex_state = 13}, + [2162] = {.lex_state = 53, .external_lex_state = 15}, + [2163] = {.lex_state = 53, .external_lex_state = 13}, + [2164] = {.lex_state = 53, .external_lex_state = 13}, + [2165] = {.lex_state = 53, .external_lex_state = 13}, + [2166] = {.lex_state = 53, .external_lex_state = 12}, + [2167] = {.lex_state = 53, .external_lex_state = 13}, + [2168] = {.lex_state = 53, .external_lex_state = 15}, + [2169] = {.lex_state = 53, .external_lex_state = 14}, + [2170] = {.lex_state = 53, .external_lex_state = 17}, + [2171] = {.lex_state = 53, .external_lex_state = 9}, + [2172] = {.lex_state = 53, .external_lex_state = 15}, + [2173] = {.lex_state = 53, .external_lex_state = 9}, + [2174] = {.lex_state = 53, .external_lex_state = 15}, + [2175] = {.lex_state = 53, .external_lex_state = 9}, + [2176] = {.lex_state = 53, .external_lex_state = 12}, + [2177] = {.lex_state = 53, .external_lex_state = 9}, + [2178] = {.lex_state = 53, .external_lex_state = 17}, + [2179] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2180] = {.lex_state = 53, .external_lex_state = 15}, + [2181] = {.lex_state = 53, .external_lex_state = 17}, + [2182] = {.lex_state = 53, .external_lex_state = 14}, + [2183] = {.lex_state = 53, .external_lex_state = 9}, + [2184] = {.lex_state = 53, .external_lex_state = 15}, [2185] = {.lex_state = 53, .external_lex_state = 9}, - [2186] = {.lex_state = 53, .external_lex_state = 14}, + [2186] = {.lex_state = 53, .external_lex_state = 13}, [2187] = {.lex_state = 53, .external_lex_state = 12}, - [2188] = {.lex_state = 53, .external_lex_state = 12}, - [2189] = {.lex_state = 53, .external_lex_state = 12}, - [2190] = {.lex_state = 53, .external_lex_state = 13}, - [2191] = {.lex_state = 53, .external_lex_state = 14}, - [2192] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, - [2193] = {.lex_state = 53, .external_lex_state = 13}, - [2194] = {.lex_state = 53, .external_lex_state = 12}, + [2188] = {.lex_state = 53, .external_lex_state = 13}, + [2189] = {.lex_state = 53, .external_lex_state = 13}, + [2190] = {.lex_state = 53, .external_lex_state = 9}, + [2191] = {.lex_state = 53, .external_lex_state = 13}, + [2192] = {.lex_state = 53, .external_lex_state = 13}, + [2193] = {.lex_state = 53, .external_lex_state = 9}, + [2194] = {.lex_state = 53, .external_lex_state = 15}, [2195] = {.lex_state = 53, .external_lex_state = 9}, [2196] = {.lex_state = 53, .external_lex_state = 12}, - [2197] = {.lex_state = 53, .external_lex_state = 14}, - [2198] = {.lex_state = 53, .external_lex_state = 13}, - [2199] = {.lex_state = 53, .external_lex_state = 15}, - [2200] = {.lex_state = 53, .external_lex_state = 15}, + [2197] = {.lex_state = 53, .external_lex_state = 9}, + [2198] = {.lex_state = 53, .external_lex_state = 14}, + [2199] = {.lex_state = 53, .external_lex_state = 9}, + [2200] = {.lex_state = 53, .external_lex_state = 9}, [2201] = {.lex_state = 53, .external_lex_state = 15}, - [2202] = {.lex_state = 53, .external_lex_state = 12}, - [2203] = {.lex_state = 53, .external_lex_state = 12}, - [2204] = {.lex_state = 53, .external_lex_state = 12}, - [2205] = {.lex_state = 53, .external_lex_state = 14}, + [2202] = {.lex_state = 53, .external_lex_state = 15}, + [2203] = {.lex_state = 53, .external_lex_state = 15}, + [2204] = {.lex_state = 53, .external_lex_state = 15}, + [2205] = {.lex_state = 53, .external_lex_state = 15}, [2206] = {.lex_state = 53, .external_lex_state = 14}, - [2207] = {.lex_state = 53, .external_lex_state = 12}, - [2208] = {.lex_state = 53, .external_lex_state = 12}, + [2207] = {.lex_state = 53, .external_lex_state = 15}, + [2208] = {.lex_state = 53, .external_lex_state = 13}, [2209] = {.lex_state = 53, .external_lex_state = 13}, - [2210] = {.lex_state = 53, .external_lex_state = 9}, - [2211] = {.lex_state = 53, .external_lex_state = 14}, - [2212] = {.lex_state = 53, .external_lex_state = 9}, - [2213] = {.lex_state = 53, .external_lex_state = 14}, + [2210] = {.lex_state = 53, .external_lex_state = 13}, + [2211] = {.lex_state = 53, .external_lex_state = 12}, + [2212] = {.lex_state = 53, .external_lex_state = 13}, + [2213] = {.lex_state = 53, .external_lex_state = 13}, [2214] = {.lex_state = 53, .external_lex_state = 14}, - [2215] = {.lex_state = 53, .external_lex_state = 15}, - [2216] = {.lex_state = 53, .external_lex_state = 14}, - [2217] = {.lex_state = 53, .external_lex_state = 13}, - [2218] = {.lex_state = 53, .external_lex_state = 14}, - [2219] = {.lex_state = 8, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2220] = {.lex_state = 53, .external_lex_state = 14}, - [2221] = {.lex_state = 53, .external_lex_state = 14}, - [2222] = {.lex_state = 53, .external_lex_state = 14}, - [2223] = {.lex_state = 53, .external_lex_state = 15}, - [2224] = {.lex_state = 53, .external_lex_state = 13}, - [2225] = {.lex_state = 53, .external_lex_state = 14}, + [2215] = {.lex_state = 53, .external_lex_state = 12}, + [2216] = {.lex_state = 53, .external_lex_state = 13}, + [2217] = {.lex_state = 8, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2218] = {.lex_state = 53, .external_lex_state = 15}, + [2219] = {.lex_state = 53, .external_lex_state = 15}, + [2220] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2221] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2222] = {.lex_state = 53, .external_lex_state = 13}, + [2223] = {.lex_state = 53, .external_lex_state = 13}, + [2224] = {.lex_state = 53, .external_lex_state = 12}, + [2225] = {.lex_state = 9, .external_lex_state = 14}, [2226] = {.lex_state = 53, .external_lex_state = 13}, [2227] = {.lex_state = 53, .external_lex_state = 15}, [2228] = {.lex_state = 53, .external_lex_state = 15}, - [2229] = {.lex_state = 53, .external_lex_state = 13}, - [2230] = {.lex_state = 53, .external_lex_state = 9}, - [2231] = {.lex_state = 53, .external_lex_state = 9}, - [2232] = {.lex_state = 53, .external_lex_state = 13}, - [2233] = {.lex_state = 53, .external_lex_state = 14}, - [2234] = {.lex_state = 53, .external_lex_state = 14}, - [2235] = {.lex_state = 53, .external_lex_state = 14}, - [2236] = {.lex_state = 9, .external_lex_state = 15}, - [2237] = {.lex_state = 53, .external_lex_state = 12}, - [2238] = {.lex_state = 53, .external_lex_state = 14}, - [2239] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, - [2240] = {.lex_state = 53, .external_lex_state = 13}, - [2241] = {.lex_state = 53, .external_lex_state = 9}, - [2242] = {.lex_state = 53, .external_lex_state = 12}, - [2243] = {.lex_state = 53, .external_lex_state = 12}, - [2244] = {.lex_state = 3, .external_lex_state = 13}, - [2245] = {.lex_state = 53, .external_lex_state = 9}, - [2246] = {.lex_state = 53, .external_lex_state = 9}, - [2247] = {.lex_state = 53, .external_lex_state = 15}, - [2248] = {.lex_state = 53, .external_lex_state = 14}, - [2249] = {.lex_state = 53, .external_lex_state = 18}, - [2250] = {.lex_state = 53, .external_lex_state = 15}, - [2251] = {.lex_state = 53, .external_lex_state = 15}, - [2252] = {.lex_state = 53, .external_lex_state = 13}, - [2253] = {.lex_state = 53, .external_lex_state = 14}, - [2254] = {.lex_state = 53, .external_lex_state = 9}, - [2255] = {.lex_state = 53, .external_lex_state = 14}, - [2256] = {.lex_state = 53, .external_lex_state = 14}, - [2257] = {.lex_state = 53, .external_lex_state = 13}, - [2258] = {.lex_state = 53, .external_lex_state = 14}, - [2259] = {.lex_state = 53, .external_lex_state = 14}, - [2260] = {.lex_state = 53, .external_lex_state = 14}, - [2261] = {.lex_state = 53, .external_lex_state = 14}, - [2262] = {.lex_state = 53, .external_lex_state = 12}, - [2263] = {.lex_state = 53, .external_lex_state = 12}, - [2264] = {.lex_state = 53, .external_lex_state = 13}, - [2265] = {.lex_state = 53, .external_lex_state = 15}, + [2229] = {.lex_state = 53, .external_lex_state = 15}, + [2230] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2231] = {.lex_state = 53, .external_lex_state = 14}, + [2232] = {.lex_state = 53, .external_lex_state = 14}, + [2233] = {.lex_state = 53, .external_lex_state = 9}, + [2234] = {.lex_state = 53, .external_lex_state = 12}, + [2235] = {.lex_state = 53, .external_lex_state = 15}, + [2236] = {.lex_state = 53, .external_lex_state = 15}, + [2237] = {.lex_state = 53, .external_lex_state = 15}, + [2238] = {.lex_state = 53, .external_lex_state = 15}, + [2239] = {.lex_state = 53, .external_lex_state = 15}, + [2240] = {.lex_state = 53, .external_lex_state = 9}, + [2241] = {.lex_state = 53, .external_lex_state = 13}, + [2242] = {.lex_state = 53, .external_lex_state = 13}, + [2243] = {.lex_state = 53, .external_lex_state = 15}, + [2244] = {.lex_state = 53, .external_lex_state = 13}, + [2245] = {.lex_state = 53, .external_lex_state = 14}, + [2246] = {.lex_state = 53, .external_lex_state = 15}, + [2247] = {.lex_state = 53, .external_lex_state = 12}, + [2248] = {.lex_state = 53, .external_lex_state = 18}, + [2249] = {.lex_state = 53, .external_lex_state = 15}, + [2250] = {.lex_state = 53, .external_lex_state = 9}, + [2251] = {.lex_state = 53, .external_lex_state = 14}, + [2252] = {.lex_state = 53, .external_lex_state = 15}, + [2253] = {.lex_state = 53, .external_lex_state = 13}, + [2254] = {.lex_state = 53, .external_lex_state = 12}, + [2255] = {.lex_state = 53, .external_lex_state = 13}, + [2256] = {.lex_state = 53, .external_lex_state = 9}, + [2257] = {.lex_state = 53, .external_lex_state = 15}, + [2258] = {.lex_state = 53, .external_lex_state = 15}, + [2259] = {.lex_state = 53, .external_lex_state = 12}, + [2260] = {.lex_state = 53, .external_lex_state = 15}, + [2261] = {.lex_state = 53, .external_lex_state = 15}, + [2262] = {.lex_state = 53, .external_lex_state = 15}, + [2263] = {.lex_state = 53, .external_lex_state = 15}, + [2264] = {.lex_state = 53, .external_lex_state = 15}, + [2265] = {.lex_state = 53, .external_lex_state = 13}, [2266] = {.lex_state = 53, .external_lex_state = 14}, [2267] = {.lex_state = 53, .external_lex_state = 14}, - [2268] = {.lex_state = 53, .external_lex_state = 14}, - [2269] = {.lex_state = 53, .external_lex_state = 14}, - [2270] = {.lex_state = 53, .external_lex_state = 12}, - [2271] = {.lex_state = 53, .external_lex_state = 12}, - [2272] = {.lex_state = 53, .external_lex_state = 12}, - [2273] = {.lex_state = 53, .external_lex_state = 15}, - [2274] = {.lex_state = 53, .external_lex_state = 18}, - [2275] = {.lex_state = 53, .external_lex_state = 14}, - [2276] = {.lex_state = 53, .external_lex_state = 14}, - [2277] = {.lex_state = 53, .external_lex_state = 13}, - [2278] = {.lex_state = 3, .external_lex_state = 13}, + [2268] = {.lex_state = 53, .external_lex_state = 9}, + [2269] = {.lex_state = 53, .external_lex_state = 12}, + [2270] = {.lex_state = 53, .external_lex_state = 15}, + [2271] = {.lex_state = 53, .external_lex_state = 13}, + [2272] = {.lex_state = 53, .external_lex_state = 15}, + [2273] = {.lex_state = 3, .external_lex_state = 12}, + [2274] = {.lex_state = 53, .external_lex_state = 13}, + [2275] = {.lex_state = 53, .external_lex_state = 13}, + [2276] = {.lex_state = 53, .external_lex_state = 15}, + [2277] = {.lex_state = 53, .external_lex_state = 18}, + [2278] = {.lex_state = 53, .external_lex_state = 13}, [2279] = {.lex_state = 53, .external_lex_state = 14}, - [2280] = {.lex_state = 53, .external_lex_state = 12}, - [2281] = {.lex_state = 53, .external_lex_state = 13}, - [2282] = {.lex_state = 53, .external_lex_state = 18}, - [2283] = {.lex_state = 53, .external_lex_state = 13}, - [2284] = {.lex_state = 53, .external_lex_state = 13}, + [2280] = {.lex_state = 53, .external_lex_state = 14}, + [2281] = {.lex_state = 53, .external_lex_state = 15}, + [2282] = {.lex_state = 53, .external_lex_state = 12}, + [2283] = {.lex_state = 53, .external_lex_state = 18}, + [2284] = {.lex_state = 53, .external_lex_state = 15}, [2285] = {.lex_state = 53, .external_lex_state = 15}, - [2286] = {.lex_state = 53, .external_lex_state = 14}, - [2287] = {.lex_state = 53, .external_lex_state = 13}, - [2288] = {.lex_state = 53, .external_lex_state = 14}, - [2289] = {.lex_state = 3, .external_lex_state = 13}, - [2290] = {.lex_state = 3, .external_lex_state = 13}, - [2291] = {.lex_state = 3, .external_lex_state = 13}, - [2292] = {.lex_state = 53, .external_lex_state = 14}, - [2293] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2294] = {.lex_state = 53, .external_lex_state = 12}, + [2286] = {.lex_state = 53, .external_lex_state = 13}, + [2287] = {.lex_state = 53, .external_lex_state = 15}, + [2288] = {.lex_state = 53, .external_lex_state = 12}, + [2289] = {.lex_state = 53, .external_lex_state = 12}, + [2290] = {.lex_state = 3, .external_lex_state = 12}, + [2291] = {.lex_state = 53, .external_lex_state = 15}, + [2292] = {.lex_state = 53, .external_lex_state = 12}, + [2293] = {.lex_state = 53, .external_lex_state = 18}, + [2294] = {.lex_state = 53, .external_lex_state = 15}, [2295] = {.lex_state = 53, .external_lex_state = 15}, - [2296] = {.lex_state = 53, .external_lex_state = 13}, - [2297] = {.lex_state = 53, .external_lex_state = 18}, - [2298] = {.lex_state = 53, .external_lex_state = 14}, + [2296] = {.lex_state = 3, .external_lex_state = 12}, + [2297] = {.lex_state = 3, .external_lex_state = 12}, + [2298] = {.lex_state = 3, .external_lex_state = 12}, [2299] = {.lex_state = 53, .external_lex_state = 15}, - [2300] = {.lex_state = 53, .external_lex_state = 13}, - [2301] = {.lex_state = 53, .external_lex_state = 15}, - [2302] = {.lex_state = 53, .external_lex_state = 13}, - [2303] = {.lex_state = 53, .external_lex_state = 14}, - [2304] = {.lex_state = 53, .external_lex_state = 14}, - [2305] = {.lex_state = 53, .external_lex_state = 12}, - [2306] = {.lex_state = 53, .external_lex_state = 14}, - [2307] = {.lex_state = 53, .external_lex_state = 14}, - [2308] = {.lex_state = 53, .external_lex_state = 14}, - [2309] = {.lex_state = 53, .external_lex_state = 12}, - [2310] = {.lex_state = 53, .external_lex_state = 14}, - [2311] = {.lex_state = 53, .external_lex_state = 12}, - [2312] = {.lex_state = 53, .external_lex_state = 12}, - [2313] = {.lex_state = 53, .external_lex_state = 13}, - [2314] = {.lex_state = 53, .external_lex_state = 12}, - [2315] = {.lex_state = 53, .external_lex_state = 12}, - [2316] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2300] = {.lex_state = 53, .external_lex_state = 14}, + [2301] = {.lex_state = 53, .external_lex_state = 13}, + [2302] = {.lex_state = 53, .external_lex_state = 14}, + [2303] = {.lex_state = 53, .external_lex_state = 12}, + [2304] = {.lex_state = 53, .external_lex_state = 15}, + [2305] = {.lex_state = 53, .external_lex_state = 14}, + [2306] = {.lex_state = 53, .external_lex_state = 12}, + [2307] = {.lex_state = 53, .external_lex_state = 15}, + [2308] = {.lex_state = 53, .external_lex_state = 12}, + [2309] = {.lex_state = 53, .external_lex_state = 15}, + [2310] = {.lex_state = 53, .external_lex_state = 15}, + [2311] = {.lex_state = 53, .external_lex_state = 13}, + [2312] = {.lex_state = 53, .external_lex_state = 13}, + [2313] = {.lex_state = 53, .external_lex_state = 14}, + [2314] = {.lex_state = 53, .external_lex_state = 15}, + [2315] = {.lex_state = 53, .external_lex_state = 15}, + [2316] = {.lex_state = 53, .external_lex_state = 13}, [2317] = {.lex_state = 53, .external_lex_state = 13}, - [2318] = {.lex_state = 9, .external_lex_state = 15}, - [2319] = {.lex_state = 53, .external_lex_state = 14}, + [2318] = {.lex_state = 53, .external_lex_state = 9}, + [2319] = {.lex_state = 53, .external_lex_state = 13}, [2320] = {.lex_state = 53, .external_lex_state = 14}, [2321] = {.lex_state = 53, .external_lex_state = 12}, - [2322] = {.lex_state = 53, .external_lex_state = 13}, + [2322] = {.lex_state = 53, .external_lex_state = 15}, [2323] = {.lex_state = 53, .external_lex_state = 13}, - [2324] = {.lex_state = 53, .external_lex_state = 12}, - [2325] = {.lex_state = 53, .external_lex_state = 14}, - [2326] = {.lex_state = 53, .external_lex_state = 18}, - [2327] = {.lex_state = 53, .external_lex_state = 14}, - [2328] = {.lex_state = 53, .external_lex_state = 12}, + [2324] = {.lex_state = 53, .external_lex_state = 14}, + [2325] = {.lex_state = 53, .external_lex_state = 18}, + [2326] = {.lex_state = 53, .external_lex_state = 12}, + [2327] = {.lex_state = 53, .external_lex_state = 15}, + [2328] = {.lex_state = 53, .external_lex_state = 13}, [2329] = {.lex_state = 53, .external_lex_state = 12}, - [2330] = {.lex_state = 53, .external_lex_state = 14}, - [2331] = {.lex_state = 53, .external_lex_state = 12}, - [2332] = {.lex_state = 53, .external_lex_state = 9}, + [2330] = {.lex_state = 53, .external_lex_state = 12}, + [2331] = {.lex_state = 9, .external_lex_state = 14}, + [2332] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, [2333] = {.lex_state = 53, .external_lex_state = 13}, - [2334] = {.lex_state = 9, .external_lex_state = 15}, - [2335] = {.lex_state = 53, .external_lex_state = 14}, - [2336] = {.lex_state = 53, .external_lex_state = 9}, + [2334] = {.lex_state = 53, .external_lex_state = 15}, + [2335] = {.lex_state = 53, .external_lex_state = 13}, + [2336] = {.lex_state = 53, .external_lex_state = 13}, [2337] = {.lex_state = 53, .external_lex_state = 13}, - [2338] = {.lex_state = 53, .external_lex_state = 15}, - [2339] = {.lex_state = 53, .external_lex_state = 14}, - [2340] = {.lex_state = 53, .external_lex_state = 13}, - [2341] = {.lex_state = 53, .external_lex_state = 13}, - [2342] = {.lex_state = 53, .external_lex_state = 14}, + [2338] = {.lex_state = 53, .external_lex_state = 12}, + [2339] = {.lex_state = 53, .external_lex_state = 18}, + [2340] = {.lex_state = 53, .external_lex_state = 9}, + [2341] = {.lex_state = 9, .external_lex_state = 14}, + [2342] = {.lex_state = 53, .external_lex_state = 15}, [2343] = {.lex_state = 53, .external_lex_state = 15}, - [2344] = {.lex_state = 53, .external_lex_state = 13}, - [2345] = {.lex_state = 53, .external_lex_state = 14}, - [2346] = {.lex_state = 53, .external_lex_state = 14}, - [2347] = {.lex_state = 53, .external_lex_state = 15}, - [2348] = {.lex_state = 53, .external_lex_state = 12}, - [2349] = {.lex_state = 53, .external_lex_state = 14}, - [2350] = {.lex_state = 53, .external_lex_state = 15}, - [2351] = {.lex_state = 53, .external_lex_state = 14}, - [2352] = {.lex_state = 53, .external_lex_state = 12}, - [2353] = {.lex_state = 53, .external_lex_state = 12}, + [2344] = {.lex_state = 53, .external_lex_state = 15}, + [2345] = {.lex_state = 53, .external_lex_state = 12}, + [2346] = {.lex_state = 53, .external_lex_state = 15}, + [2347] = {.lex_state = 53, .external_lex_state = 12}, + [2348] = {.lex_state = 53, .external_lex_state = 15}, + [2349] = {.lex_state = 53, .external_lex_state = 15}, + [2350] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2351] = {.lex_state = 53, .external_lex_state = 12}, + [2352] = {.lex_state = 53, .external_lex_state = 13}, + [2353] = {.lex_state = 53, .external_lex_state = 14}, [2354] = {.lex_state = 53, .external_lex_state = 15}, - [2355] = {.lex_state = 53, .external_lex_state = 13}, - [2356] = {.lex_state = 9, .external_lex_state = 15}, - [2357] = {.lex_state = 53, .external_lex_state = 15}, - [2358] = {.lex_state = 53, .external_lex_state = 13}, - [2359] = {.lex_state = 53, .external_lex_state = 9}, - [2360] = {.lex_state = 53, .external_lex_state = 14}, - [2361] = {.lex_state = 53, .external_lex_state = 9}, - [2362] = {.lex_state = 53, .external_lex_state = 15}, - [2363] = {.lex_state = 53, .external_lex_state = 15}, + [2355] = {.lex_state = 53, .external_lex_state = 15}, + [2356] = {.lex_state = 53, .external_lex_state = 13}, + [2357] = {.lex_state = 53, .external_lex_state = 13}, + [2358] = {.lex_state = 53, .external_lex_state = 12}, + [2359] = {.lex_state = 53, .external_lex_state = 15}, + [2360] = {.lex_state = 53, .external_lex_state = 12}, + [2361] = {.lex_state = 53, .external_lex_state = 12}, + [2362] = {.lex_state = 53, .external_lex_state = 9}, + [2363] = {.lex_state = 53, .external_lex_state = 14}, [2364] = {.lex_state = 53, .external_lex_state = 14}, - [2365] = {.lex_state = 53, .external_lex_state = 14}, - [2366] = {.lex_state = 53, .external_lex_state = 9}, - [2367] = {.lex_state = 53, .external_lex_state = 13}, - [2368] = {.lex_state = 53, .external_lex_state = 14}, - [2369] = {.lex_state = 53, .external_lex_state = 14}, - [2370] = {.lex_state = 53, .external_lex_state = 13}, - [2371] = {.lex_state = 53, .external_lex_state = 14}, - [2372] = {.lex_state = 53, .external_lex_state = 14}, - [2373] = {.lex_state = 53, .external_lex_state = 14}, - [2374] = {.lex_state = 53, .external_lex_state = 18}, - [2375] = {.lex_state = 53, .external_lex_state = 12}, + [2365] = {.lex_state = 53, .external_lex_state = 15}, + [2366] = {.lex_state = 53, .external_lex_state = 12}, + [2367] = {.lex_state = 53, .external_lex_state = 15}, + [2368] = {.lex_state = 53, .external_lex_state = 9}, + [2369] = {.lex_state = 53, .external_lex_state = 12}, + [2370] = {.lex_state = 53, .external_lex_state = 15}, + [2371] = {.lex_state = 53, .external_lex_state = 15}, + [2372] = {.lex_state = 53, .external_lex_state = 15}, + [2373] = {.lex_state = 9, .external_lex_state = 14}, + [2374] = {.lex_state = 53, .external_lex_state = 13}, + [2375] = {.lex_state = 53, .external_lex_state = 18}, [2376] = {.lex_state = 53, .external_lex_state = 15}, - [2377] = {.lex_state = 53, .external_lex_state = 14}, - [2378] = {.lex_state = 53, .external_lex_state = 12}, + [2377] = {.lex_state = 53, .external_lex_state = 15}, + [2378] = {.lex_state = 53, .external_lex_state = 15}, [2379] = {.lex_state = 53, .external_lex_state = 14}, - [2380] = {.lex_state = 53, .external_lex_state = 12}, - [2381] = {.lex_state = 53, .external_lex_state = 12}, - [2382] = {.lex_state = 53, .external_lex_state = 13}, - [2383] = {.lex_state = 53, .external_lex_state = 9}, - [2384] = {.lex_state = 53, .external_lex_state = 13}, - [2385] = {.lex_state = 53, .external_lex_state = 14}, - [2386] = {.lex_state = 53, .external_lex_state = 14}, - [2387] = {.lex_state = 53, .external_lex_state = 13}, - [2388] = {.lex_state = 53, .external_lex_state = 14}, - [2389] = {.lex_state = 53, .external_lex_state = 15}, + [2380] = {.lex_state = 53, .external_lex_state = 13}, + [2381] = {.lex_state = 53, .external_lex_state = 13}, + [2382] = {.lex_state = 53, .external_lex_state = 14}, + [2383] = {.lex_state = 53, .external_lex_state = 14}, + [2384] = {.lex_state = 53, .external_lex_state = 14}, + [2385] = {.lex_state = 53, .external_lex_state = 15}, + [2386] = {.lex_state = 53, .external_lex_state = 12}, + [2387] = {.lex_state = 53, .external_lex_state = 15}, + [2388] = {.lex_state = 53, .external_lex_state = 9}, + [2389] = {.lex_state = 53, .external_lex_state = 12}, [2390] = {.lex_state = 53, .external_lex_state = 15}, - [2391] = {.lex_state = 53, .external_lex_state = 13}, - [2392] = {.lex_state = 3, .external_lex_state = 13}, - [2393] = {.lex_state = 53, .external_lex_state = 14}, - [2394] = {.lex_state = 53, .external_lex_state = 14}, - [2395] = {.lex_state = 53, .external_lex_state = 14}, - [2396] = {.lex_state = 53, .external_lex_state = 12}, - [2397] = {.lex_state = 53, .external_lex_state = 14}, - [2398] = {.lex_state = 53, .external_lex_state = 14}, - [2399] = {.lex_state = 53, .external_lex_state = 14}, - [2400] = {.lex_state = 53, .external_lex_state = 9}, - [2401] = {.lex_state = 53, .external_lex_state = 12}, - [2402] = {.lex_state = 53, .external_lex_state = 12}, - [2403] = {.lex_state = 53, .external_lex_state = 14}, - [2404] = {.lex_state = 53, .external_lex_state = 14}, - [2405] = {.lex_state = 53, .external_lex_state = 14}, - [2406] = {.lex_state = 53, .external_lex_state = 12}, - [2407] = {.lex_state = 53, .external_lex_state = 15}, - [2408] = {.lex_state = 53, .external_lex_state = 13}, - [2409] = {.lex_state = 53, .external_lex_state = 18}, - [2410] = {.lex_state = 53, .external_lex_state = 14}, - [2411] = {.lex_state = 53, .external_lex_state = 13}, - [2412] = {.lex_state = 53, .external_lex_state = 15}, - [2413] = {.lex_state = 53, .external_lex_state = 13}, - [2414] = {.lex_state = 53, .external_lex_state = 14}, - [2415] = {.lex_state = 53, .external_lex_state = 14}, - [2416] = {.lex_state = 53, .external_lex_state = 13}, - [2417] = {.lex_state = 53, .external_lex_state = 14}, - [2418] = {.lex_state = 53, .external_lex_state = 12}, - [2419] = {.lex_state = 53, .external_lex_state = 14}, + [2391] = {.lex_state = 53, .external_lex_state = 12}, + [2392] = {.lex_state = 53, .external_lex_state = 14}, + [2393] = {.lex_state = 53, .external_lex_state = 15}, + [2394] = {.lex_state = 53, .external_lex_state = 15}, + [2395] = {.lex_state = 53, .external_lex_state = 13}, + [2396] = {.lex_state = 53, .external_lex_state = 15}, + [2397] = {.lex_state = 53, .external_lex_state = 15}, + [2398] = {.lex_state = 53, .external_lex_state = 15}, + [2399] = {.lex_state = 53, .external_lex_state = 15}, + [2400] = {.lex_state = 53, .external_lex_state = 15}, + [2401] = {.lex_state = 53, .external_lex_state = 13}, + [2402] = {.lex_state = 53, .external_lex_state = 13}, + [2403] = {.lex_state = 53, .external_lex_state = 15}, + [2404] = {.lex_state = 53, .external_lex_state = 15}, + [2405] = {.lex_state = 53, .external_lex_state = 13}, + [2406] = {.lex_state = 53, .external_lex_state = 15}, + [2407] = {.lex_state = 53, .external_lex_state = 12}, + [2408] = {.lex_state = 3, .external_lex_state = 12}, + [2409] = {.lex_state = 53, .external_lex_state = 9}, + [2410] = {.lex_state = 53, .external_lex_state = 18}, + [2411] = {.lex_state = 53, .external_lex_state = 15}, + [2412] = {.lex_state = 53, .external_lex_state = 14}, + [2413] = {.lex_state = 53, .external_lex_state = 12}, + [2414] = {.lex_state = 53, .external_lex_state = 15}, + [2415] = {.lex_state = 53, .external_lex_state = 12}, + [2416] = {.lex_state = 53, .external_lex_state = 15}, + [2417] = {.lex_state = 53, .external_lex_state = 15}, + [2418] = {.lex_state = 53, .external_lex_state = 15}, + [2419] = {.lex_state = 53, .external_lex_state = 13}, [2420] = {.lex_state = 53, .external_lex_state = 14}, - [2421] = {.lex_state = 53, .external_lex_state = 14}, - [2422] = {.lex_state = 53, .external_lex_state = 12}, - [2423] = {.lex_state = 53, .external_lex_state = 12}, - [2424] = {.lex_state = 53, .external_lex_state = 14}, - [2425] = {.lex_state = 53, .external_lex_state = 9}, - [2426] = {.lex_state = 53, .external_lex_state = 9}, - [2427] = {.lex_state = 53, .external_lex_state = 14}, - [2428] = {.lex_state = 53, .external_lex_state = 12}, - [2429] = {.lex_state = 53, .external_lex_state = 12}, - [2430] = {.lex_state = 53, .external_lex_state = 12}, - [2431] = {.lex_state = 53, .external_lex_state = 14}, - [2432] = {.lex_state = 53, .external_lex_state = 12}, - [2433] = {.lex_state = 53, .external_lex_state = 12}, + [2421] = {.lex_state = 53, .external_lex_state = 15}, + [2422] = {.lex_state = 53, .external_lex_state = 15}, + [2423] = {.lex_state = 53, .external_lex_state = 13}, + [2424] = {.lex_state = 53, .external_lex_state = 13}, + [2425] = {.lex_state = 53, .external_lex_state = 15}, + [2426] = {.lex_state = 53, .external_lex_state = 12}, + [2427] = {.lex_state = 53, .external_lex_state = 15}, + [2428] = {.lex_state = 53, .external_lex_state = 13}, + [2429] = {.lex_state = 53, .external_lex_state = 13}, + [2430] = {.lex_state = 53, .external_lex_state = 13}, + [2431] = {.lex_state = 53, .external_lex_state = 9}, + [2432] = {.lex_state = 53, .external_lex_state = 15}, + [2433] = {.lex_state = 53, .external_lex_state = 9}, [2434] = {.lex_state = 53, .external_lex_state = 13}, - [2435] = {.lex_state = 53, .external_lex_state = 12}, - [2436] = {.lex_state = 53, .external_lex_state = 12}, - [2437] = {.lex_state = 53, .external_lex_state = 12}, - [2438] = {.lex_state = 53, .external_lex_state = 12}, - [2439] = {.lex_state = 53, .external_lex_state = 14}, - [2440] = {.lex_state = 53, .external_lex_state = 14}, + [2435] = {.lex_state = 53, .external_lex_state = 13}, + [2436] = {.lex_state = 53, .external_lex_state = 9}, + [2437] = {.lex_state = 53, .external_lex_state = 13}, + [2438] = {.lex_state = 53, .external_lex_state = 13}, + [2439] = {.lex_state = 53, .external_lex_state = 13}, + [2440] = {.lex_state = 53, .external_lex_state = 12}, [2441] = {.lex_state = 53, .external_lex_state = 14}, [2442] = {.lex_state = 53, .external_lex_state = 15}, - [2443] = {.lex_state = 53, .external_lex_state = 12}, - [2444] = {.lex_state = 53, .external_lex_state = 15}, - [2445] = {.lex_state = 53, .external_lex_state = 15}, - [2446] = {.lex_state = 53, .external_lex_state = 9}, - [2447] = {.lex_state = 53, .external_lex_state = 12}, - [2448] = {.lex_state = 53, .external_lex_state = 15}, + [2443] = {.lex_state = 53, .external_lex_state = 15}, + [2444] = {.lex_state = 53, .external_lex_state = 13}, + [2445] = {.lex_state = 53, .external_lex_state = 12}, + [2446] = {.lex_state = 53, .external_lex_state = 14}, + [2447] = {.lex_state = 53, .external_lex_state = 14}, + [2448] = {.lex_state = 53, .external_lex_state = 13}, [2449] = {.lex_state = 53, .external_lex_state = 14}, - [2450] = {.lex_state = 9, .external_lex_state = 15}, - [2451] = {.lex_state = 53, .external_lex_state = 12}, - [2452] = {.lex_state = 9, .external_lex_state = 15}, - [2453] = {.lex_state = 53, .external_lex_state = 15}, - [2454] = {.lex_state = 9, .external_lex_state = 15}, - [2455] = {.lex_state = 9, .external_lex_state = 15}, - [2456] = {.lex_state = 53, .external_lex_state = 15}, - [2457] = {.lex_state = 53, .external_lex_state = 13}, - [2458] = {.lex_state = 53, .external_lex_state = 13}, + [2450] = {.lex_state = 53, .external_lex_state = 15}, + [2451] = {.lex_state = 53, .external_lex_state = 15}, + [2452] = {.lex_state = 9, .external_lex_state = 14}, + [2453] = {.lex_state = 53, .external_lex_state = 14}, + [2454] = {.lex_state = 53, .external_lex_state = 13}, + [2455] = {.lex_state = 9, .external_lex_state = 14}, + [2456] = {.lex_state = 53, .external_lex_state = 14}, + [2457] = {.lex_state = 9, .external_lex_state = 14}, + [2458] = {.lex_state = 9, .external_lex_state = 14}, [2459] = {.lex_state = 53, .external_lex_state = 14}, - [2460] = {.lex_state = 53, .external_lex_state = 9}, - [2461] = {.lex_state = 53, .external_lex_state = 15}, - [2462] = {.lex_state = 53, .external_lex_state = 15}, - [2463] = {.lex_state = 53, .external_lex_state = 13}, - [2464] = {.lex_state = 53, .external_lex_state = 14}, - [2465] = {.lex_state = 53, .external_lex_state = 14}, - [2466] = {.lex_state = 53, .external_lex_state = 12}, + [2460] = {.lex_state = 53, .external_lex_state = 15}, + [2461] = {.lex_state = 53, .external_lex_state = 12}, + [2462] = {.lex_state = 53, .external_lex_state = 14}, + [2463] = {.lex_state = 53, .external_lex_state = 9}, + [2464] = {.lex_state = 53, .external_lex_state = 13}, + [2465] = {.lex_state = 53, .external_lex_state = 12}, + [2466] = {.lex_state = 53, .external_lex_state = 15}, [2467] = {.lex_state = 53, .external_lex_state = 12}, - [2468] = {.lex_state = 53, .external_lex_state = 13}, - [2469] = {.lex_state = 53, .external_lex_state = 14}, - [2470] = {.lex_state = 3, .external_lex_state = 13}, + [2468] = {.lex_state = 53, .external_lex_state = 15}, + [2469] = {.lex_state = 53, .external_lex_state = 12}, + [2470] = {.lex_state = 53, .external_lex_state = 13}, [2471] = {.lex_state = 53, .external_lex_state = 15}, - [2472] = {.lex_state = 3, .external_lex_state = 13}, - [2473] = {.lex_state = 53, .external_lex_state = 14}, - [2474] = {.lex_state = 9, .external_lex_state = 15}, - [2475] = {.lex_state = 53, .external_lex_state = 12}, - [2476] = {.lex_state = 3, .external_lex_state = 13}, - [2477] = {.lex_state = 53, .external_lex_state = 13}, - [2478] = {.lex_state = 53, .external_lex_state = 13}, - [2479] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2480] = {.lex_state = 53, .external_lex_state = 15}, - [2481] = {.lex_state = 53, .external_lex_state = 13}, - [2482] = {.lex_state = 53, .external_lex_state = 14}, - [2483] = {.lex_state = 53, .external_lex_state = 12}, - [2484] = {.lex_state = 53, .external_lex_state = 14}, - [2485] = {.lex_state = 53, .external_lex_state = 12}, - [2486] = {.lex_state = 53, .external_lex_state = 12}, + [2472] = {.lex_state = 53, .external_lex_state = 13}, + [2473] = {.lex_state = 3, .external_lex_state = 12}, + [2474] = {.lex_state = 53, .external_lex_state = 15}, + [2475] = {.lex_state = 53, .external_lex_state = 9}, + [2476] = {.lex_state = 53, .external_lex_state = 13}, + [2477] = {.lex_state = 9, .external_lex_state = 14}, + [2478] = {.lex_state = 53, .external_lex_state = 12}, + [2479] = {.lex_state = 53, .external_lex_state = 12}, + [2480] = {.lex_state = 3, .external_lex_state = 12}, + [2481] = {.lex_state = 3, .external_lex_state = 12}, + [2482] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2483] = {.lex_state = 53, .external_lex_state = 15}, + [2484] = {.lex_state = 53, .external_lex_state = 13}, + [2485] = {.lex_state = 53, .external_lex_state = 15}, + [2486] = {.lex_state = 53, .external_lex_state = 15}, [2487] = {.lex_state = 53, .external_lex_state = 14}, - [2488] = {.lex_state = 53, .external_lex_state = 15}, - [2489] = {.lex_state = 53, .external_lex_state = 15}, - [2490] = {.lex_state = 53, .external_lex_state = 18}, + [2488] = {.lex_state = 53, .external_lex_state = 13}, + [2489] = {.lex_state = 53, .external_lex_state = 13}, + [2490] = {.lex_state = 53, .external_lex_state = 12}, [2491] = {.lex_state = 53, .external_lex_state = 14}, - [2492] = {.lex_state = 53, .external_lex_state = 9}, - [2493] = {.lex_state = 53, .external_lex_state = 15}, - [2494] = {.lex_state = 53, .external_lex_state = 14}, - [2495] = {.lex_state = 53, .external_lex_state = 17}, - [2496] = {.lex_state = 53, .external_lex_state = 15}, + [2492] = {.lex_state = 53, .external_lex_state = 14}, + [2493] = {.lex_state = 53, .external_lex_state = 14}, + [2494] = {.lex_state = 53, .external_lex_state = 13}, + [2495] = {.lex_state = 10, .external_lex_state = 14}, + [2496] = {.lex_state = 53, .external_lex_state = 14}, [2497] = {.lex_state = 53, .external_lex_state = 17}, - [2498] = {.lex_state = 53, .external_lex_state = 12}, + [2498] = {.lex_state = 53, .external_lex_state = 13}, [2499] = {.lex_state = 53, .external_lex_state = 17}, - [2500] = {.lex_state = 53, .external_lex_state = 17}, - [2501] = {.lex_state = 53, .external_lex_state = 14}, - [2502] = {.lex_state = 53, .external_lex_state = 9}, - [2503] = {.lex_state = 53, .external_lex_state = 17}, - [2504] = {.lex_state = 53, .external_lex_state = 12}, - [2505] = {.lex_state = 53, .external_lex_state = 12}, - [2506] = {.lex_state = 53, .external_lex_state = 9}, - [2507] = {.lex_state = 53, .external_lex_state = 15}, - [2508] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2500] = {.lex_state = 53, .external_lex_state = 14}, + [2501] = {.lex_state = 53, .external_lex_state = 17}, + [2502] = {.lex_state = 53, .external_lex_state = 17}, + [2503] = {.lex_state = 53, .external_lex_state = 13}, + [2504] = {.lex_state = 53, .external_lex_state = 13}, + [2505] = {.lex_state = 53, .external_lex_state = 15}, + [2506] = {.lex_state = 53, .external_lex_state = 15}, + [2507] = {.lex_state = 53, .external_lex_state = 12}, + [2508] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, [2509] = {.lex_state = 53, .external_lex_state = 9}, - [2510] = {.lex_state = 53, .external_lex_state = 15}, - [2511] = {.lex_state = 53, .external_lex_state = 17}, - [2512] = {.lex_state = 53, .external_lex_state = 15}, - [2513] = {.lex_state = 53, .external_lex_state = 15}, - [2514] = {.lex_state = 53, .external_lex_state = 15}, + [2510] = {.lex_state = 53, .external_lex_state = 14}, + [2511] = {.lex_state = 53, .external_lex_state = 15}, + [2512] = {.lex_state = 53, .external_lex_state = 9}, + [2513] = {.lex_state = 53, .external_lex_state = 17}, + [2514] = {.lex_state = 10, .external_lex_state = 14}, [2515] = {.lex_state = 53, .external_lex_state = 9}, - [2516] = {.lex_state = 10, .external_lex_state = 15}, - [2517] = {.lex_state = 53, .external_lex_state = 14}, - [2518] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2519] = {.lex_state = 10, .external_lex_state = 15}, - [2520] = {.lex_state = 53, .external_lex_state = 13}, - [2521] = {.lex_state = 53, .external_lex_state = 15}, - [2522] = {.lex_state = 10, .external_lex_state = 15}, - [2523] = {.lex_state = 53, .external_lex_state = 12}, - [2524] = {.lex_state = 53, .external_lex_state = 15}, - [2525] = {.lex_state = 53, .external_lex_state = 12}, - [2526] = {.lex_state = 53, .external_lex_state = 13}, - [2527] = {.lex_state = 53, .external_lex_state = 9}, - [2528] = {.lex_state = 53, .external_lex_state = 17}, - [2529] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2530] = {.lex_state = 53, .external_lex_state = 9}, - [2531] = {.lex_state = 53, .external_lex_state = 15}, - [2532] = {.lex_state = 53, .external_lex_state = 15}, - [2533] = {.lex_state = 53, .external_lex_state = 9}, - [2534] = {.lex_state = 53, .external_lex_state = 9}, - [2535] = {.lex_state = 53, .external_lex_state = 15}, + [2516] = {.lex_state = 53, .external_lex_state = 14}, + [2517] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2518] = {.lex_state = 53, .external_lex_state = 14}, + [2519] = {.lex_state = 53, .external_lex_state = 13}, + [2520] = {.lex_state = 53, .external_lex_state = 14}, + [2521] = {.lex_state = 53, .external_lex_state = 17}, + [2522] = {.lex_state = 53, .external_lex_state = 9}, + [2523] = {.lex_state = 10, .external_lex_state = 14}, + [2524] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2525] = {.lex_state = 53, .external_lex_state = 14}, + [2526] = {.lex_state = 53, .external_lex_state = 14}, + [2527] = {.lex_state = 53, .external_lex_state = 13}, + [2528] = {.lex_state = 53, .external_lex_state = 9}, + [2529] = {.lex_state = 10, .external_lex_state = 14}, + [2530] = {.lex_state = 53, .external_lex_state = 14}, + [2531] = {.lex_state = 10, .external_lex_state = 14}, + [2532] = {.lex_state = 53, .external_lex_state = 17}, + [2533] = {.lex_state = 53, .external_lex_state = 17}, + [2534] = {.lex_state = 53, .external_lex_state = 15}, + [2535] = {.lex_state = 53, .external_lex_state = 17}, [2536] = {.lex_state = 53, .external_lex_state = 17}, - [2537] = {.lex_state = 53, .external_lex_state = 9}, - [2538] = {.lex_state = 53, .external_lex_state = 17}, - [2539] = {.lex_state = 53, .external_lex_state = 15}, - [2540] = {.lex_state = 53, .external_lex_state = 14}, - [2541] = {.lex_state = 53, .external_lex_state = 17}, - [2542] = {.lex_state = 53, .external_lex_state = 17}, - [2543] = {.lex_state = 10, .external_lex_state = 15}, - [2544] = {.lex_state = 53, .external_lex_state = 9}, - [2545] = {.lex_state = 53, .external_lex_state = 9}, + [2537] = {.lex_state = 53, .external_lex_state = 14}, + [2538] = {.lex_state = 53, .external_lex_state = 14}, + [2539] = {.lex_state = 53, .external_lex_state = 12}, + [2540] = {.lex_state = 53, .external_lex_state = 9}, + [2541] = {.lex_state = 53, .external_lex_state = 15}, + [2542] = {.lex_state = 53, .external_lex_state = 14}, + [2543] = {.lex_state = 10, .external_lex_state = 14}, + [2544] = {.lex_state = 53, .external_lex_state = 14}, + [2545] = {.lex_state = 53, .external_lex_state = 15}, [2546] = {.lex_state = 53, .external_lex_state = 17}, - [2547] = {.lex_state = 53, .external_lex_state = 15}, - [2548] = {.lex_state = 53, .external_lex_state = 14}, - [2549] = {.lex_state = 53, .external_lex_state = 14}, - [2550] = {.lex_state = 53, .external_lex_state = 14}, - [2551] = {.lex_state = 53, .external_lex_state = 17}, - [2552] = {.lex_state = 53, .external_lex_state = 17}, - [2553] = {.lex_state = 53, .external_lex_state = 14}, + [2547] = {.lex_state = 53, .external_lex_state = 14}, + [2548] = {.lex_state = 53, .external_lex_state = 15}, + [2549] = {.lex_state = 53, .external_lex_state = 9}, + [2550] = {.lex_state = 53, .external_lex_state = 9}, + [2551] = {.lex_state = 53, .external_lex_state = 9}, + [2552] = {.lex_state = 53, .external_lex_state = 9}, + [2553] = {.lex_state = 53, .external_lex_state = 9}, [2554] = {.lex_state = 53, .external_lex_state = 9}, - [2555] = {.lex_state = 53, .external_lex_state = 14}, - [2556] = {.lex_state = 53, .external_lex_state = 14}, - [2557] = {.lex_state = 53, .external_lex_state = 17}, - [2558] = {.lex_state = 10, .external_lex_state = 15}, - [2559] = {.lex_state = 10, .external_lex_state = 15}, - [2560] = {.lex_state = 10, .external_lex_state = 15}, + [2555] = {.lex_state = 53, .external_lex_state = 15}, + [2556] = {.lex_state = 53, .external_lex_state = 17}, + [2557] = {.lex_state = 53, .external_lex_state = 12}, + [2558] = {.lex_state = 53, .external_lex_state = 17}, + [2559] = {.lex_state = 10, .external_lex_state = 14}, + [2560] = {.lex_state = 10, .external_lex_state = 14}, [2561] = {.lex_state = 53, .external_lex_state = 15}, - [2562] = {.lex_state = 10, .external_lex_state = 15}, - [2563] = {.lex_state = 53, .external_lex_state = 14}, - [2564] = {.lex_state = 53, .external_lex_state = 17}, + [2562] = {.lex_state = 10, .external_lex_state = 14}, + [2563] = {.lex_state = 10, .external_lex_state = 14}, + [2564] = {.lex_state = 53, .external_lex_state = 15}, [2565] = {.lex_state = 53, .external_lex_state = 12}, - [2566] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2567] = {.lex_state = 53, .external_lex_state = 15}, - [2568] = {.lex_state = 53, .external_lex_state = 15}, - [2569] = {.lex_state = 53, .external_lex_state = 9}, - [2570] = {.lex_state = 53, .external_lex_state = 9}, - [2571] = {.lex_state = 53, .external_lex_state = 15}, - [2572] = {.lex_state = 53, .external_lex_state = 9}, - [2573] = {.lex_state = 53, .external_lex_state = 14}, - [2574] = {.lex_state = 53, .external_lex_state = 12}, - [2575] = {.lex_state = 53, .external_lex_state = 13}, + [2566] = {.lex_state = 53, .external_lex_state = 14}, + [2567] = {.lex_state = 53, .external_lex_state = 17}, + [2568] = {.lex_state = 53, .external_lex_state = 9}, + [2569] = {.lex_state = 53, .external_lex_state = 15}, + [2570] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2571] = {.lex_state = 53, .external_lex_state = 17}, + [2572] = {.lex_state = 53, .external_lex_state = 14}, + [2573] = {.lex_state = 53, .external_lex_state = 13}, + [2574] = {.lex_state = 53, .external_lex_state = 14}, + [2575] = {.lex_state = 53, .external_lex_state = 9}, [2576] = {.lex_state = 53, .external_lex_state = 15}, - [2577] = {.lex_state = 53, .external_lex_state = 9}, - [2578] = {.lex_state = 53, .external_lex_state = 14}, - [2579] = {.lex_state = 53, .external_lex_state = 17}, - [2580] = {.lex_state = 53, .external_lex_state = 13}, - [2581] = {.lex_state = 53, .external_lex_state = 12}, - [2582] = {.lex_state = 53, .external_lex_state = 13}, - [2583] = {.lex_state = 53, .external_lex_state = 17}, - [2584] = {.lex_state = 53, .external_lex_state = 12}, + [2577] = {.lex_state = 53, .external_lex_state = 14}, + [2578] = {.lex_state = 53, .external_lex_state = 17}, + [2579] = {.lex_state = 53, .external_lex_state = 9}, + [2580] = {.lex_state = 53, .external_lex_state = 9}, + [2581] = {.lex_state = 53, .external_lex_state = 13}, + [2582] = {.lex_state = 53, .external_lex_state = 14}, + [2583] = {.lex_state = 53, .external_lex_state = 15}, + [2584] = {.lex_state = 53, .external_lex_state = 14}, [2585] = {.lex_state = 53, .external_lex_state = 15}, - [2586] = {.lex_state = 53, .external_lex_state = 15}, - [2587] = {.lex_state = 53, .external_lex_state = 14}, - [2588] = {.lex_state = 53, .external_lex_state = 15}, - [2589] = {.lex_state = 10, .external_lex_state = 15}, + [2586] = {.lex_state = 53, .external_lex_state = 13}, + [2587] = {.lex_state = 53, .external_lex_state = 12}, + [2588] = {.lex_state = 53, .external_lex_state = 17}, + [2589] = {.lex_state = 53, .external_lex_state = 9}, [2590] = {.lex_state = 53, .external_lex_state = 14}, - [2591] = {.lex_state = 53, .external_lex_state = 9}, - [2592] = {.lex_state = 10, .external_lex_state = 15}, - [2593] = {.lex_state = 53, .external_lex_state = 12}, - [2594] = {.lex_state = 53, .external_lex_state = 13}, - [2595] = {.lex_state = 53, .external_lex_state = 15}, - [2596] = {.lex_state = 4, .external_lex_state = 15}, - [2597] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2598] = {.lex_state = 53, .external_lex_state = 14}, - [2599] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2600] = {.lex_state = 53, .external_lex_state = 14}, - [2601] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2602] = {.lex_state = 53, .external_lex_state = 15}, + [2591] = {.lex_state = 53, .external_lex_state = 13}, + [2592] = {.lex_state = 53, .external_lex_state = 17}, + [2593] = {.lex_state = 53, .external_lex_state = 14}, + [2594] = {.lex_state = 53, .external_lex_state = 15}, + [2595] = {.lex_state = 53, .external_lex_state = 9}, + [2596] = {.lex_state = 53, .external_lex_state = 9}, + [2597] = {.lex_state = 53, .external_lex_state = 13}, + [2598] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2599] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2600] = {.lex_state = 4, .external_lex_state = 14}, + [2601] = {.lex_state = 53, .external_lex_state = 14}, + [2602] = {.lex_state = 53, .external_lex_state = 13}, [2603] = {.lex_state = 53, .external_lex_state = 12}, - [2604] = {.lex_state = 53, .external_lex_state = 13}, + [2604] = {.lex_state = 53, .external_lex_state = 15}, [2605] = {.lex_state = 53, .external_lex_state = 15}, - [2606] = {.lex_state = 53, .external_lex_state = 12}, + [2606] = {.lex_state = 53, .external_lex_state = 13}, [2607] = {.lex_state = 53, .external_lex_state = 13}, - [2608] = {.lex_state = 53, .external_lex_state = 15}, - [2609] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2610] = {.lex_state = 53, .external_lex_state = 14}, - [2611] = {.lex_state = 53, .external_lex_state = 14}, - [2612] = {.lex_state = 53, .external_lex_state = 12}, - [2613] = {.lex_state = 53, .external_lex_state = 15}, - [2614] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2615] = {.lex_state = 53, .external_lex_state = 13}, + [2608] = {.lex_state = 53, .external_lex_state = 12}, + [2609] = {.lex_state = 53, .external_lex_state = 14}, + [2610] = {.lex_state = 53, .external_lex_state = 13}, + [2611] = {.lex_state = 53, .external_lex_state = 12}, + [2612] = {.lex_state = 53, .external_lex_state = 14}, + [2613] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2614] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2615] = {.lex_state = 53, .external_lex_state = 15}, [2616] = {.lex_state = 53, .external_lex_state = 13}, [2617] = {.lex_state = 53, .external_lex_state = 15}, - [2618] = {.lex_state = 53, .external_lex_state = 14}, - [2619] = {.lex_state = 53, .external_lex_state = 14}, - [2620] = {.lex_state = 53, .external_lex_state = 13}, - [2621] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2622] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2623] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2624] = {.lex_state = 53, .external_lex_state = 13}, - [2625] = {.lex_state = 4, .external_lex_state = 15}, + [2618] = {.lex_state = 53, .external_lex_state = 12}, + [2619] = {.lex_state = 53, .external_lex_state = 12}, + [2620] = {.lex_state = 53, .external_lex_state = 12}, + [2621] = {.lex_state = 53, .external_lex_state = 12}, + [2622] = {.lex_state = 53, .external_lex_state = 15}, + [2623] = {.lex_state = 53, .external_lex_state = 14}, + [2624] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2625] = {.lex_state = 53, .external_lex_state = 12}, [2626] = {.lex_state = 53, .external_lex_state = 12}, - [2627] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2628] = {.lex_state = 53, .external_lex_state = 15}, - [2629] = {.lex_state = 53, .external_lex_state = 12}, - [2630] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2627] = {.lex_state = 53, .external_lex_state = 15}, + [2628] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2629] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2630] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, [2631] = {.lex_state = 53, .external_lex_state = 15}, - [2632] = {.lex_state = 53, .external_lex_state = 15}, - [2633] = {.lex_state = 53, .external_lex_state = 14}, - [2634] = {.lex_state = 53, .external_lex_state = 15}, - [2635] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2636] = {.lex_state = 53, .external_lex_state = 14}, - [2637] = {.lex_state = 53, .external_lex_state = 12}, - [2638] = {.lex_state = 53, .external_lex_state = 15}, + [2632] = {.lex_state = 53, .external_lex_state = 12}, + [2633] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2634] = {.lex_state = 53, .external_lex_state = 14}, + [2635] = {.lex_state = 53, .external_lex_state = 14}, + [2636] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2637] = {.lex_state = 53, .external_lex_state = 14}, + [2638] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, [2639] = {.lex_state = 53, .external_lex_state = 15}, - [2640] = {.lex_state = 53, .external_lex_state = 15}, - [2641] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2642] = {.lex_state = 53, .external_lex_state = 13}, - [2643] = {.lex_state = 53, .external_lex_state = 13}, - [2644] = {.lex_state = 53, .external_lex_state = 14}, - [2645] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2646] = {.lex_state = 53, .external_lex_state = 12}, - [2647] = {.lex_state = 4, .external_lex_state = 15}, - [2648] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2649] = {.lex_state = 53, .external_lex_state = 13}, - [2650] = {.lex_state = 53, .external_lex_state = 12}, - [2651] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2652] = {.lex_state = 53, .external_lex_state = 14}, - [2653] = {.lex_state = 4, .external_lex_state = 15}, - [2654] = {.lex_state = 53, .external_lex_state = 13}, - [2655] = {.lex_state = 53, .external_lex_state = 13}, - [2656] = {.lex_state = 53, .external_lex_state = 14}, - [2657] = {.lex_state = 53, .external_lex_state = 13}, - [2658] = {.lex_state = 53, .external_lex_state = 12}, + [2640] = {.lex_state = 53, .external_lex_state = 12}, + [2641] = {.lex_state = 53, .external_lex_state = 15}, + [2642] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2643] = {.lex_state = 4, .external_lex_state = 14}, + [2644] = {.lex_state = 53, .external_lex_state = 13}, + [2645] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2646] = {.lex_state = 53, .external_lex_state = 15}, + [2647] = {.lex_state = 53, .external_lex_state = 12}, + [2648] = {.lex_state = 53, .external_lex_state = 12}, + [2649] = {.lex_state = 53, .external_lex_state = 14}, + [2650] = {.lex_state = 53, .external_lex_state = 14}, + [2651] = {.lex_state = 53, .external_lex_state = 15}, + [2652] = {.lex_state = 53, .external_lex_state = 12}, + [2653] = {.lex_state = 4, .external_lex_state = 14}, + [2654] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2655] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2656] = {.lex_state = 53, .external_lex_state = 13}, + [2657] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2658] = {.lex_state = 53, .external_lex_state = 15}, [2659] = {.lex_state = 53, .external_lex_state = 14}, - [2660] = {.lex_state = 53, .external_lex_state = 15}, - [2661] = {.lex_state = 53, .external_lex_state = 13}, + [2660] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2661] = {.lex_state = 53, .external_lex_state = 14}, [2662] = {.lex_state = 53, .external_lex_state = 13}, [2663] = {.lex_state = 53, .external_lex_state = 12}, - [2664] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2665] = {.lex_state = 53, .external_lex_state = 13}, - [2666] = {.lex_state = 53, .external_lex_state = 15}, - [2667] = {.lex_state = 53, .external_lex_state = 15}, - [2668] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2669] = {.lex_state = 53, .external_lex_state = 13}, - [2670] = {.lex_state = 4, .external_lex_state = 15}, - [2671] = {.lex_state = 53, .external_lex_state = 13}, - [2672] = {.lex_state = 53, .external_lex_state = 14}, - [2673] = {.lex_state = 53, .external_lex_state = 15}, + [2664] = {.lex_state = 53, .external_lex_state = 14}, + [2665] = {.lex_state = 53, .external_lex_state = 12}, + [2666] = {.lex_state = 53, .external_lex_state = 14}, + [2667] = {.lex_state = 53, .external_lex_state = 14}, + [2668] = {.lex_state = 53, .external_lex_state = 13}, + [2669] = {.lex_state = 4, .external_lex_state = 14}, + [2670] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2671] = {.lex_state = 53, .external_lex_state = 14}, + [2672] = {.lex_state = 53, .external_lex_state = 15}, + [2673] = {.lex_state = 53, .external_lex_state = 13}, [2674] = {.lex_state = 53, .external_lex_state = 15}, - [2675] = {.lex_state = 4, .external_lex_state = 15}, - [2676] = {.lex_state = 53, .external_lex_state = 13}, + [2675] = {.lex_state = 53, .external_lex_state = 13}, + [2676] = {.lex_state = 53, .external_lex_state = 12}, [2677] = {.lex_state = 53, .external_lex_state = 13}, - [2678] = {.lex_state = 53, .external_lex_state = 15}, - [2679] = {.lex_state = 53, .external_lex_state = 13}, - [2680] = {.lex_state = 53, .external_lex_state = 15}, - [2681] = {.lex_state = 53, .external_lex_state = 15}, - [2682] = {.lex_state = 53, .external_lex_state = 15}, - [2683] = {.lex_state = 53, .external_lex_state = 14}, - [2684] = {.lex_state = 53, .external_lex_state = 15}, - [2685] = {.lex_state = 53, .external_lex_state = 13}, - [2686] = {.lex_state = 53, .external_lex_state = 15}, - [2687] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2688] = {.lex_state = 53, .external_lex_state = 15}, - [2689] = {.lex_state = 53, .external_lex_state = 14}, - [2690] = {.lex_state = 53, .external_lex_state = 15}, - [2691] = {.lex_state = 53, .external_lex_state = 15}, - [2692] = {.lex_state = 53, .external_lex_state = 15}, - [2693] = {.lex_state = 53, .external_lex_state = 14}, + [2678] = {.lex_state = 53, .external_lex_state = 14}, + [2679] = {.lex_state = 53, .external_lex_state = 15}, + [2680] = {.lex_state = 53, .external_lex_state = 12}, + [2681] = {.lex_state = 4, .external_lex_state = 14}, + [2682] = {.lex_state = 53, .external_lex_state = 14}, + [2683] = {.lex_state = 4, .external_lex_state = 14}, + [2684] = {.lex_state = 53, .external_lex_state = 14}, + [2685] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2686] = {.lex_state = 53, .external_lex_state = 14}, + [2687] = {.lex_state = 53, .external_lex_state = 12}, + [2688] = {.lex_state = 53, .external_lex_state = 14}, + [2689] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2690] = {.lex_state = 53, .external_lex_state = 14}, + [2691] = {.lex_state = 53, .external_lex_state = 12}, + [2692] = {.lex_state = 53, .external_lex_state = 14}, + [2693] = {.lex_state = 53, .external_lex_state = 15}, [2694] = {.lex_state = 53, .external_lex_state = 14}, - [2695] = {.lex_state = 53, .external_lex_state = 15}, - [2696] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2695] = {.lex_state = 53, .external_lex_state = 14}, + [2696] = {.lex_state = 53, .external_lex_state = 15}, [2697] = {.lex_state = 53, .external_lex_state = 14}, - [2698] = {.lex_state = 53, .external_lex_state = 12}, + [2698] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, [2699] = {.lex_state = 53, .external_lex_state = 12}, - [2700] = {.lex_state = 53, .external_lex_state = 13}, + [2700] = {.lex_state = 53, .external_lex_state = 15}, [2701] = {.lex_state = 53, .external_lex_state = 15}, - [2702] = {.lex_state = 53, .external_lex_state = 13}, - [2703] = {.lex_state = 53, .external_lex_state = 15}, - [2704] = {.lex_state = 53, .external_lex_state = 13}, - [2705] = {.lex_state = 53, .external_lex_state = 13}, - [2706] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2702] = {.lex_state = 53, .external_lex_state = 15}, + [2703] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2704] = {.lex_state = 53, .external_lex_state = 15}, + [2705] = {.lex_state = 53, .external_lex_state = 14}, + [2706] = {.lex_state = 53, .external_lex_state = 13}, [2707] = {.lex_state = 53, .external_lex_state = 14}, - [2708] = {.lex_state = 53, .external_lex_state = 13}, - [2709] = {.lex_state = 53, .external_lex_state = 13}, + [2708] = {.lex_state = 53, .external_lex_state = 15}, + [2709] = {.lex_state = 53, .external_lex_state = 12}, [2710] = {.lex_state = 53, .external_lex_state = 13}, - [2711] = {.lex_state = 53, .external_lex_state = 13}, - [2712] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2713] = {.lex_state = 53, .external_lex_state = 15}, - [2714] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2715] = {.lex_state = 53, .external_lex_state = 14}, + [2711] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2712] = {.lex_state = 53, .external_lex_state = 12}, + [2713] = {.lex_state = 53, .external_lex_state = 14}, + [2714] = {.lex_state = 53, .external_lex_state = 15}, + [2715] = {.lex_state = 53, .external_lex_state = 12}, [2716] = {.lex_state = 53, .external_lex_state = 15}, - [2717] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2717] = {.lex_state = 53, .external_lex_state = 12}, [2718] = {.lex_state = 53, .external_lex_state = 15}, - [2719] = {.lex_state = 53, .external_lex_state = 14}, - [2720] = {.lex_state = 53, .external_lex_state = 15}, - [2721] = {.lex_state = 53, .external_lex_state = 14}, - [2722] = {.lex_state = 53, .external_lex_state = 12}, - [2723] = {.lex_state = 53, .external_lex_state = 15}, - [2724] = {.lex_state = 53, .external_lex_state = 12}, - [2725] = {.lex_state = 53, .external_lex_state = 15}, - [2726] = {.lex_state = 53, .external_lex_state = 15}, - [2727] = {.lex_state = 53, .external_lex_state = 14}, - [2728] = {.lex_state = 53, .external_lex_state = 13}, - [2729] = {.lex_state = 53, .external_lex_state = 13}, - [2730] = {.lex_state = 53, .external_lex_state = 15}, - [2731] = {.lex_state = 53, .external_lex_state = 15}, - [2732] = {.lex_state = 53, .external_lex_state = 12}, - [2733] = {.lex_state = 53, .external_lex_state = 14}, - [2734] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2735] = {.lex_state = 53, .external_lex_state = 15}, - [2736] = {.lex_state = 53, .external_lex_state = 14}, - [2737] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2738] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2739] = {.lex_state = 53, .external_lex_state = 12}, - [2740] = {.lex_state = 53, .external_lex_state = 15}, - [2741] = {.lex_state = 53, .external_lex_state = 15}, - [2742] = {.lex_state = 53, .external_lex_state = 13}, - [2743] = {.lex_state = 53, .external_lex_state = 15}, - [2744] = {.lex_state = 53, .external_lex_state = 13}, - [2745] = {.lex_state = 53, .external_lex_state = 15}, - [2746] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2747] = {.lex_state = 53, .external_lex_state = 12}, - [2748] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2719] = {.lex_state = 53, .external_lex_state = 12}, + [2720] = {.lex_state = 53, .external_lex_state = 14}, + [2721] = {.lex_state = 53, .external_lex_state = 15}, + [2722] = {.lex_state = 53, .external_lex_state = 14}, + [2723] = {.lex_state = 53, .external_lex_state = 14}, + [2724] = {.lex_state = 53, .external_lex_state = 14}, + [2725] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2726] = {.lex_state = 53, .external_lex_state = 12}, + [2727] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2728] = {.lex_state = 53, .external_lex_state = 14}, + [2729] = {.lex_state = 53, .external_lex_state = 15}, + [2730] = {.lex_state = 53, .external_lex_state = 14}, + [2731] = {.lex_state = 53, .external_lex_state = 13}, + [2732] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2733] = {.lex_state = 53, .external_lex_state = 12}, + [2734] = {.lex_state = 53, .external_lex_state = 15}, + [2735] = {.lex_state = 53, .external_lex_state = 14}, + [2736] = {.lex_state = 53, .external_lex_state = 15}, + [2737] = {.lex_state = 53, .external_lex_state = 14}, + [2738] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2739] = {.lex_state = 53, .external_lex_state = 14}, + [2740] = {.lex_state = 53, .external_lex_state = 12}, + [2741] = {.lex_state = 53, .external_lex_state = 12}, + [2742] = {.lex_state = 53, .external_lex_state = 14}, + [2743] = {.lex_state = 53, .external_lex_state = 14}, + [2744] = {.lex_state = 53, .external_lex_state = 12}, + [2745] = {.lex_state = 53, .external_lex_state = 12}, + [2746] = {.lex_state = 53, .external_lex_state = 15}, + [2747] = {.lex_state = 53, .external_lex_state = 14}, + [2748] = {.lex_state = 53, .external_lex_state = 13}, [2749] = {.lex_state = 53, .external_lex_state = 13}, - [2750] = {.lex_state = 53, .external_lex_state = 12}, - [2751] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2752] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2753] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2754] = {.lex_state = 53, .external_lex_state = 13}, - [2755] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2756] = {.lex_state = 53, .external_lex_state = 14}, - [2757] = {.lex_state = 53, .external_lex_state = 15}, - [2758] = {.lex_state = 53, .external_lex_state = 13}, - [2759] = {.lex_state = 53, .external_lex_state = 14}, - [2760] = {.lex_state = 53, .external_lex_state = 15}, - [2761] = {.lex_state = 53, .external_lex_state = 12}, - [2762] = {.lex_state = 4, .external_lex_state = 15}, - [2763] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2764] = {.lex_state = 4, .external_lex_state = 15}, - [2765] = {.lex_state = 53, .external_lex_state = 15}, - [2766] = {.lex_state = 53, .external_lex_state = 13}, - [2767] = {.lex_state = 53, .external_lex_state = 13}, - [2768] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2769] = {.lex_state = 53, .external_lex_state = 14}, + [2750] = {.lex_state = 53, .external_lex_state = 14}, + [2751] = {.lex_state = 4, .external_lex_state = 14}, + [2752] = {.lex_state = 53, .external_lex_state = 14}, + [2753] = {.lex_state = 53, .external_lex_state = 14}, + [2754] = {.lex_state = 53, .external_lex_state = 14}, + [2755] = {.lex_state = 53, .external_lex_state = 14}, + [2756] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2757] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2758] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2759] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2760] = {.lex_state = 53, .external_lex_state = 13}, + [2761] = {.lex_state = 53, .external_lex_state = 14}, + [2762] = {.lex_state = 53, .external_lex_state = 12}, + [2763] = {.lex_state = 53, .external_lex_state = 14}, + [2764] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2765] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2766] = {.lex_state = 53, .external_lex_state = 12}, + [2767] = {.lex_state = 53, .external_lex_state = 12}, + [2768] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2769] = {.lex_state = 53, .external_lex_state = 13}, [2770] = {.lex_state = 53, .external_lex_state = 14}, [2771] = {.lex_state = 53, .external_lex_state = 14}, - [2772] = {.lex_state = 53, .external_lex_state = 15}, - [2773] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2774] = {.lex_state = 53, .external_lex_state = 14}, - [2775] = {.lex_state = 53, .external_lex_state = 15}, - [2776] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2777] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2778] = {.lex_state = 53, .external_lex_state = 13}, - [2779] = {.lex_state = 53, .external_lex_state = 15}, - [2780] = {.lex_state = 53, .external_lex_state = 15}, - [2781] = {.lex_state = 53, .external_lex_state = 15}, - [2782] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2783] = {.lex_state = 53, .external_lex_state = 15}, - [2784] = {.lex_state = 53, .external_lex_state = 15}, + [2772] = {.lex_state = 4, .external_lex_state = 14}, + [2773] = {.lex_state = 53, .external_lex_state = 12}, + [2774] = {.lex_state = 53, .external_lex_state = 12}, + [2775] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2776] = {.lex_state = 53, .external_lex_state = 15}, + [2777] = {.lex_state = 53, .external_lex_state = 14}, + [2778] = {.lex_state = 53, .external_lex_state = 12}, + [2779] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2780] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2781] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2782] = {.lex_state = 53, .external_lex_state = 12}, + [2783] = {.lex_state = 53, .external_lex_state = 14}, + [2784] = {.lex_state = 53, .external_lex_state = 14}, [2785] = {.lex_state = 53, .external_lex_state = 14}, - [2786] = {.lex_state = 53, .external_lex_state = 15}, - [2787] = {.lex_state = 53, .external_lex_state = 12}, + [2786] = {.lex_state = 53, .external_lex_state = 12}, + [2787] = {.lex_state = 53, .external_lex_state = 14}, + [2788] = {.lex_state = 53, .external_lex_state = 14}, + [2789] = {.lex_state = 53, .external_lex_state = 14}, + [2790] = {.lex_state = 53, .external_lex_state = 15}, + [2791] = {.lex_state = 53, .external_lex_state = 13}, }; static const TSSymbol ts_reserved_words[16][MAX_RESERVED_WORD_SET_SIZE] = { @@ -10658,6 +10687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1), [anon_sym_RPAREN] = ACTIONS(1), [anon_sym_COMMA] = ACTIONS(1), + [anon_sym_lazy] = ACTIONS(1), [anon_sym_as] = ACTIONS(1), [anon_sym_STAR] = ACTIONS(1), [anon_sym_print] = ACTIONS(1), @@ -10757,138 +10787,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_end] = ACTIONS(1), }, [STATE(1)] = { - [sym_module] = STATE(2695), - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [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(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1788), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1788), - [ts_builtin_sym_end] = ACTIONS(7), - [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(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_for] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), - [anon_sym_def] = ACTIONS(49), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_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_string_start] = ACTIONS(81), - }, - [STATE(2)] = { + [sym_module] = STATE(2650), [sym__statement] = STATE(68), [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), + [sym_import_statement] = STATE(2268), + [sym_future_import_statement] = STATE(2268), + [sym_import_from_statement] = STATE(2268), + [sym_lazy_import_statement] = STATE(2268), + [sym_print_statement] = STATE(2268), + [sym_assert_statement] = STATE(2268), + [sym_expression_statement] = STATE(2268), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2268), + [sym_delete_statement] = STATE(2268), + [sym_raise_statement] = STATE(2268), + [sym_pass_statement] = STATE(2268), + [sym_break_statement] = STATE(2268), + [sym_continue_statement] = STATE(2268), [sym_if_statement] = STATE(68), [sym_match_statement] = STATE(68), [sym_for_statement] = STATE(68), @@ -10896,4024 +10813,3976 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(68), [sym_with_statement] = STATE(68), [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), + [sym_global_statement] = STATE(2268), + [sym_nonlocal_statement] = STATE(2268), + [sym_exec_statement] = STATE(2268), + [sym_type_alias_statement] = STATE(2268), [sym_class_definition] = STATE(68), [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(761), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym_decorator] = STATE(1818), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [aux_sym_decorated_definition_repeat1] = STATE(1818), + [ts_builtin_sym_end] = ACTIONS(7), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(37), + [anon_sym_match] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_for] = ACTIONS(43), + [anon_sym_while] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_with] = ACTIONS(49), + [anon_sym_def] = ACTIONS(51), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(83), + }, + [STATE(2)] = { + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(2571), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(103), + [sym_string_start] = ACTIONS(83), }, [STATE(3)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(490), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(705), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(105), + [sym_string_start] = ACTIONS(83), }, [STATE(4)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(615), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(478), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(83), }, [STATE(5)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(698), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(611), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(83), }, [STATE(6)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(751), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(716), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(83), }, [STATE(7)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(753), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(741), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(83), }, [STATE(8)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(771), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(746), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(83), }, [STATE(9)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(786), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(774), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(83), }, [STATE(10)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(789), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(785), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(83), }, [STATE(11)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(791), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(789), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(83), }, [STATE(12)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(797), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(791), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(83), }, [STATE(13)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(712), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(797), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(83), }, [STATE(14)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(719), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(710), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(83), }, [STATE(15)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(680), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(721), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(83), }, [STATE(16)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(804), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(649), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(83), }, [STATE(17)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(807), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(808), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(83), }, [STATE(18)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(809), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(811), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(83), }, [STATE(19)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(706), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(812), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(83), }, [STATE(20)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(816), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(696), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(83), }, [STATE(21)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(666), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(820), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(83), }, [STATE(22)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(668), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(661), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(83), }, [STATE(23)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(820), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(663), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(83), }, [STATE(24)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(709), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(826), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(83), }, [STATE(25)] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(2499), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(709), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(83), }, [STATE(26)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(812), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(2501), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(103), + [sym_string_start] = ACTIONS(83), }, [STATE(27)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(669), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(831), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(83), }, [STATE(28)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(654), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(667), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(83), }, [STATE(29)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(833), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(673), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(83), }, [STATE(30)] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(2536), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(835), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(83), }, [STATE(31)] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(2541), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(2532), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(103), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(83), }, [STATE(32)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(661), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(2535), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(103), + [sym_string_start] = ACTIONS(83), }, [STATE(33)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(653), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(836), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(83), }, [STATE(34)] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(2552), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(679), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(83), }, [STATE(35)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(670), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), - [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(101), - [sym_string_start] = ACTIONS(81), - }, - [STATE(36)] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(2564), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1798), - [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(103), - [sym_string_start] = ACTIONS(81), - }, - [STATE(37)] = { [sym__statement] = STATE(73), [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), [sym_if_statement] = STATE(73), [sym_match_statement] = STATE(73), [sym_for_statement] = STATE(73), @@ -14921,114 +14790,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(73), [sym_with_statement] = STATE(73), [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), + [sym_global_statement] = STATE(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), [sym_class_definition] = STATE(73), [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(834), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(2556), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(103), + [sym_string_start] = ACTIONS(83), }, - [STATE(38)] = { + [STATE(36)] = { [sym__statement] = STATE(73), [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), [sym_if_statement] = STATE(73), [sym_match_statement] = STATE(73), [sym_for_statement] = STATE(73), @@ -15036,3449 +14907,3509 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(73), [sym_with_statement] = STATE(73), [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), + [sym_global_statement] = STATE(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), [sym_class_definition] = STATE(73), [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(737), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(2558), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(103), + [sym_string_start] = ACTIONS(83), + }, + [STATE(37)] = { + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(680), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1801), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(83), + }, + [STATE(38)] = { + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(739), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1801), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(105), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(83), }, [STATE(39)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(725), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(744), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(105), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(83), }, [STATE(40)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(757), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(755), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(105), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(83), }, [STATE(41)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1801), [sym_block] = STATE(762), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(105), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(83), }, [STATE(42)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(767), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(764), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(105), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(83), }, [STATE(43)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(778), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(766), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(105), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(83), }, [STATE(44)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(708), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(770), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(105), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(83), }, [STATE(45)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(721), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(711), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(105), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(83), }, [STATE(46)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(662), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(724), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(105), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(83), }, [STATE(47)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(818), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(671), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(105), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(83), }, [STATE(48)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(825), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(778), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(105), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(83), }, [STATE(49)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(829), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(786), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(105), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(83), }, [STATE(50)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(693), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(788), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(105), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(83), }, [STATE(51)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(730), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(708), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(105), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(83), }, [STATE(52)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(660), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(796), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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(105), - [sym_string_start] = ACTIONS(81), - }, - [STATE(53)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(664), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(105), + [sym_string_start] = ACTIONS(83), + }, + [STATE(53)] = { + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(683), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(105), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(83), }, [STATE(54)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(774), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(686), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(105), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(83), }, [STATE(55)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(696), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(806), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(105), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(83), }, [STATE(56)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(801), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(714), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(105), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(83), }, [STATE(57)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(688), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(814), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(105), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(83), }, [STATE(58)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(658), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(689), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(105), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(83), }, [STATE(59)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(726), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(666), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(105), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(83), }, [STATE(60)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(727), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(824), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(105), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(83), }, [STATE(61)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(681), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(825), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(105), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(83), }, [STATE(62)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(673), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(654), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(105), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(83), }, [STATE(63)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(656), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(646), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(105), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(83), }, [STATE(64)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(480), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(648), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(105), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(83), }, [STATE(65)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(620), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(486), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(105), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(83), }, [STATE(66)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(701), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), - [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(105), - [sym_string_start] = ACTIONS(81), - }, - [STATE(67)] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(2551), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1798), - [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(103), - [sym_string_start] = ACTIONS(81), - }, - [STATE(68)] = { [sym__statement] = STATE(72), [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), [sym_if_statement] = STATE(72), [sym_match_statement] = STATE(72), [sym_for_statement] = STATE(72), @@ -18486,113 +18417,116 @@ 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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), + [sym_global_statement] = STATE(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), [sym_class_definition] = STATE(72), [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1798), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(618), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(105), + [sym_string_start] = ACTIONS(83), }, - [STATE(69)] = { + [STATE(67)] = { [sym__statement] = STATE(71), [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), [sym_if_statement] = STATE(71), [sym_match_statement] = STATE(71), [sym_for_statement] = STATE(71), @@ -18600,10626 +18534,10864 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(71), [sym_with_statement] = STATE(71), [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), + [sym_global_statement] = STATE(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), [sym_class_definition] = STATE(71), [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1788), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym_decorator] = STATE(1801), + [sym_block] = STATE(678), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1788), - [ts_builtin_sym_end] = ACTIONS(109), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_for] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), - [anon_sym_def] = ACTIONS(49), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(83), }, - [STATE(70)] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1798), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [STATE(68)] = { + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2268), + [sym_future_import_statement] = STATE(2268), + [sym_import_from_statement] = STATE(2268), + [sym_lazy_import_statement] = STATE(2268), + [sym_print_statement] = STATE(2268), + [sym_assert_statement] = STATE(2268), + [sym_expression_statement] = STATE(2268), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2268), + [sym_delete_statement] = STATE(2268), + [sym_raise_statement] = STATE(2268), + [sym_pass_statement] = STATE(2268), + [sym_break_statement] = STATE(2268), + [sym_continue_statement] = STATE(2268), + [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(2268), + [sym_nonlocal_statement] = STATE(2268), + [sym_exec_statement] = STATE(2268), + [sym_type_alias_statement] = STATE(2268), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1818), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1818), + [ts_builtin_sym_end] = ACTIONS(109), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(37), + [anon_sym_match] = ACTIONS(39), + [anon_sym_async] = ACTIONS(41), + [anon_sym_for] = ACTIONS(43), + [anon_sym_while] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_with] = ACTIONS(49), + [anon_sym_def] = ACTIONS(51), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(83), + }, + [STATE(69)] = { + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2268), + [sym_future_import_statement] = STATE(2268), + [sym_import_from_statement] = STATE(2268), + [sym_lazy_import_statement] = STATE(2268), + [sym_print_statement] = STATE(2268), + [sym_assert_statement] = STATE(2268), + [sym_expression_statement] = STATE(2268), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2268), + [sym_delete_statement] = STATE(2268), + [sym_raise_statement] = STATE(2268), + [sym_pass_statement] = STATE(2268), + [sym_break_statement] = STATE(2268), + [sym_continue_statement] = STATE(2268), + [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(2268), + [sym_nonlocal_statement] = STATE(2268), + [sym_exec_statement] = STATE(2268), + [sym_type_alias_statement] = STATE(2268), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1818), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1818), + [ts_builtin_sym_end] = ACTIONS(111), + [sym_identifier] = ACTIONS(113), + [anon_sym_import] = ACTIONS(116), + [anon_sym_from] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(122), + [anon_sym_lazy] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(128), + [anon_sym_print] = ACTIONS(131), + [anon_sym_assert] = ACTIONS(134), + [anon_sym_return] = ACTIONS(137), + [anon_sym_del] = ACTIONS(140), + [anon_sym_raise] = ACTIONS(143), + [anon_sym_pass] = ACTIONS(146), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(152), + [anon_sym_if] = ACTIONS(155), + [anon_sym_match] = ACTIONS(158), + [anon_sym_async] = ACTIONS(161), + [anon_sym_for] = ACTIONS(164), + [anon_sym_while] = ACTIONS(167), + [anon_sym_try] = ACTIONS(170), + [anon_sym_with] = ACTIONS(173), + [anon_sym_def] = ACTIONS(176), + [anon_sym_global] = ACTIONS(179), + [anon_sym_nonlocal] = ACTIONS(182), + [anon_sym_exec] = ACTIONS(185), + [anon_sym_type] = ACTIONS(188), + [anon_sym_class] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(194), + [anon_sym_AT] = ACTIONS(197), + [anon_sym_DASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_PLUS] = ACTIONS(200), + [anon_sym_not] = ACTIONS(206), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_lambda] = ACTIONS(209), + [anon_sym_yield] = ACTIONS(212), + [sym_ellipsis] = ACTIONS(215), + [sym_integer] = ACTIONS(218), + [sym_float] = ACTIONS(215), + [anon_sym_await] = ACTIONS(221), + [sym_true] = ACTIONS(218), + [sym_false] = ACTIONS(218), + [sym_none] = ACTIONS(218), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(224), + }, + [STATE(70)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1801), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1801), + [sym_identifier] = ACTIONS(113), + [anon_sym_import] = ACTIONS(116), + [anon_sym_from] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(122), + [anon_sym_lazy] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(128), + [anon_sym_print] = ACTIONS(131), + [anon_sym_assert] = ACTIONS(134), + [anon_sym_return] = ACTIONS(137), + [anon_sym_del] = ACTIONS(140), + [anon_sym_raise] = ACTIONS(143), + [anon_sym_pass] = ACTIONS(146), + [anon_sym_break] = ACTIONS(149), + [anon_sym_continue] = ACTIONS(152), + [anon_sym_if] = ACTIONS(227), + [anon_sym_match] = ACTIONS(230), + [anon_sym_async] = ACTIONS(233), + [anon_sym_for] = ACTIONS(236), + [anon_sym_while] = ACTIONS(239), + [anon_sym_try] = ACTIONS(242), + [anon_sym_with] = ACTIONS(245), + [anon_sym_def] = ACTIONS(248), + [anon_sym_global] = ACTIONS(179), + [anon_sym_nonlocal] = ACTIONS(182), + [anon_sym_exec] = ACTIONS(185), + [anon_sym_type] = ACTIONS(188), + [anon_sym_class] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(194), + [anon_sym_AT] = ACTIONS(197), + [anon_sym_DASH] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_PLUS] = ACTIONS(200), + [anon_sym_not] = ACTIONS(206), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_lambda] = ACTIONS(209), + [anon_sym_yield] = ACTIONS(212), + [sym_ellipsis] = ACTIONS(215), + [sym_integer] = ACTIONS(218), + [sym_float] = ACTIONS(215), + [anon_sym_await] = ACTIONS(221), + [sym_true] = ACTIONS(218), + [sym_false] = ACTIONS(218), + [sym_none] = ACTIONS(218), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__dedent] = ACTIONS(111), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(224), }, [STATE(71)] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [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(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1788), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1788), - [ts_builtin_sym_end] = ACTIONS(113), - [sym_identifier] = ACTIONS(115), - [anon_sym_import] = ACTIONS(118), - [anon_sym_from] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(124), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_print] = ACTIONS(130), - [anon_sym_assert] = ACTIONS(133), - [anon_sym_return] = ACTIONS(136), - [anon_sym_del] = ACTIONS(139), - [anon_sym_raise] = ACTIONS(142), - [anon_sym_pass] = ACTIONS(145), - [anon_sym_break] = ACTIONS(148), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_if] = ACTIONS(154), - [anon_sym_match] = ACTIONS(157), - [anon_sym_async] = ACTIONS(160), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(166), - [anon_sym_try] = ACTIONS(169), - [anon_sym_with] = ACTIONS(172), - [anon_sym_def] = ACTIONS(175), - [anon_sym_global] = ACTIONS(178), - [anon_sym_nonlocal] = ACTIONS(181), - [anon_sym_exec] = ACTIONS(184), - [anon_sym_type] = ACTIONS(187), - [anon_sym_class] = ACTIONS(190), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_AT] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(202), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_not] = ACTIONS(205), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_lambda] = ACTIONS(208), - [anon_sym_yield] = ACTIONS(211), - [sym_ellipsis] = ACTIONS(214), - [sym_integer] = ACTIONS(217), - [sym_float] = ACTIONS(214), - [anon_sym_await] = ACTIONS(220), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_none] = ACTIONS(217), + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1801), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1801), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(223), + [sym__dedent] = ACTIONS(254), + [sym_string_start] = ACTIONS(83), }, [STATE(72)] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1798), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1798), - [sym_identifier] = ACTIONS(115), - [anon_sym_import] = ACTIONS(118), - [anon_sym_from] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(124), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_print] = ACTIONS(130), - [anon_sym_assert] = ACTIONS(133), - [anon_sym_return] = ACTIONS(136), - [anon_sym_del] = ACTIONS(139), - [anon_sym_raise] = ACTIONS(142), - [anon_sym_pass] = ACTIONS(145), - [anon_sym_break] = ACTIONS(148), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_if] = ACTIONS(226), - [anon_sym_match] = ACTIONS(229), - [anon_sym_async] = ACTIONS(232), - [anon_sym_for] = ACTIONS(235), - [anon_sym_while] = ACTIONS(238), - [anon_sym_try] = ACTIONS(241), - [anon_sym_with] = ACTIONS(244), - [anon_sym_def] = ACTIONS(247), - [anon_sym_global] = ACTIONS(178), - [anon_sym_nonlocal] = ACTIONS(181), - [anon_sym_exec] = ACTIONS(184), - [anon_sym_type] = ACTIONS(187), - [anon_sym_class] = ACTIONS(250), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_AT] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(202), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_not] = ACTIONS(205), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_lambda] = ACTIONS(208), - [anon_sym_yield] = ACTIONS(211), - [sym_ellipsis] = ACTIONS(214), - [sym_integer] = ACTIONS(217), - [sym_float] = ACTIONS(214), - [anon_sym_await] = ACTIONS(220), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_none] = ACTIONS(217), + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1801), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1801), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(113), - [sym_string_start] = ACTIONS(223), + [sym__dedent] = ACTIONS(256), + [sym_string_start] = ACTIONS(83), }, [STATE(73)] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1798), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [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(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1801), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1801), [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_if] = ACTIONS(85), + [anon_sym_match] = ACTIONS(87), + [anon_sym_async] = ACTIONS(89), + [anon_sym_for] = ACTIONS(91), + [anon_sym_while] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [anon_sym_with] = ACTIONS(97), + [anon_sym_def] = ACTIONS(99), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_class] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(253), - [sym_string_start] = ACTIONS(81), + [sym__dedent] = ACTIONS(258), + [sym_string_start] = ACTIONS(83), }, [STATE(74)] = { - [sym_named_expression] = STATE(1750), - [sym__named_expression_lhs] = STATE(2653), - [sym_type_parameter] = STATE(2095), - [sym_list_splat_pattern] = STATE(1416), - [sym_as_pattern] = STATE(1750), - [sym_expression] = STATE(1757), + [sym_named_expression] = STATE(1730), + [sym__named_expression_lhs] = STATE(2751), + [sym_type_parameter] = STATE(2113), + [sym_list_splat_pattern] = STATE(1361), + [sym_as_pattern] = STATE(1730), + [sym_expression] = STATE(1759), [sym_primary_expression] = STATE(962), - [sym_not_operator] = STATE(1750), - [sym_boolean_operator] = STATE(1750), - [sym_binary_operator] = STATE(1348), - [sym_unary_operator] = STATE(1348), - [sym_comparison_operator] = STATE(1750), - [sym_lambda] = STATE(1750), - [sym_attribute] = STATE(1348), - [sym_subscript] = STATE(1348), - [sym_call] = STATE(1348), - [sym_type] = STATE(2236), - [sym_splat_type] = STATE(2046), - [sym_generic_type] = STATE(2046), - [sym_union_type] = STATE(2046), - [sym_constrained_type] = STATE(2046), - [sym_member_type] = STATE(2046), - [sym_list] = STATE(1348), - [sym_set] = STATE(1348), - [sym_tuple] = STATE(1348), - [sym_dictionary] = STATE(1348), - [sym_list_comprehension] = STATE(1348), - [sym_dictionary_comprehension] = STATE(1348), - [sym_set_comprehension] = STATE(1348), - [sym_generator_expression] = STATE(1348), - [sym_parenthesized_expression] = STATE(1348), - [sym_conditional_expression] = STATE(1750), - [sym_concatenated_string] = STATE(1348), - [sym_string] = STATE(1017), - [sym_await] = STATE(1348), - [sym_identifier] = ACTIONS(255), - [anon_sym_SEMI] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(261), - [anon_sym_COMMA] = ACTIONS(264), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(267), - [anon_sym_print] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(259), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(274), - [anon_sym_match] = ACTIONS(277), - [anon_sym_async] = ACTIONS(270), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(279), - [anon_sym_exec] = ACTIONS(270), - [anon_sym_type] = ACTIONS(282), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(259), - [anon_sym_DASH] = ACTIONS(288), - [anon_sym_PIPE] = ACTIONS(259), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(288), - [anon_sym_not] = ACTIONS(293), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(259), - [anon_sym_SLASH_SLASH] = ACTIONS(259), - [anon_sym_AMP] = ACTIONS(259), - [anon_sym_CARET] = ACTIONS(259), - [anon_sym_LT_LT] = ACTIONS(259), - [anon_sym_TILDE] = ACTIONS(296), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [anon_sym_lambda] = ACTIONS(298), - [anon_sym_PLUS_EQ] = ACTIONS(300), - [anon_sym_DASH_EQ] = ACTIONS(300), - [anon_sym_STAR_EQ] = ACTIONS(300), - [anon_sym_SLASH_EQ] = ACTIONS(300), - [anon_sym_AT_EQ] = ACTIONS(300), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(300), - [anon_sym_PERCENT_EQ] = ACTIONS(300), - [anon_sym_STAR_STAR_EQ] = ACTIONS(300), - [anon_sym_GT_GT_EQ] = ACTIONS(300), - [anon_sym_LT_LT_EQ] = ACTIONS(300), - [anon_sym_AMP_EQ] = ACTIONS(300), - [anon_sym_CARET_EQ] = ACTIONS(300), - [anon_sym_PIPE_EQ] = ACTIONS(300), - [sym_ellipsis] = ACTIONS(302), - [sym_integer] = ACTIONS(304), - [sym_float] = ACTIONS(302), - [anon_sym_await] = ACTIONS(306), - [sym_true] = ACTIONS(304), - [sym_false] = ACTIONS(304), - [sym_none] = ACTIONS(304), + [sym_not_operator] = STATE(1730), + [sym_boolean_operator] = STATE(1730), + [sym_binary_operator] = STATE(1422), + [sym_unary_operator] = STATE(1422), + [sym_comparison_operator] = STATE(1730), + [sym_lambda] = STATE(1730), + [sym_attribute] = STATE(1422), + [sym_subscript] = STATE(1422), + [sym_call] = STATE(1422), + [sym_type] = STATE(2225), + [sym_splat_type] = STATE(2105), + [sym_generic_type] = STATE(2105), + [sym_union_type] = STATE(2105), + [sym_constrained_type] = STATE(2105), + [sym_member_type] = STATE(2105), + [sym_list] = STATE(1422), + [sym_set] = STATE(1422), + [sym_tuple] = STATE(1422), + [sym_dictionary] = STATE(1422), + [sym_list_comprehension] = STATE(1422), + [sym_dictionary_comprehension] = STATE(1422), + [sym_set_comprehension] = STATE(1422), + [sym_generator_expression] = STATE(1422), + [sym_parenthesized_expression] = STATE(1422), + [sym_conditional_expression] = STATE(1730), + [sym_concatenated_string] = STATE(1422), + [sym_string] = STATE(1032), + [sym_await] = STATE(1422), + [sym_identifier] = ACTIONS(260), + [anon_sym_SEMI] = ACTIONS(262), + [anon_sym_DOT] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(266), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_lazy] = ACTIONS(272), + [anon_sym_as] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(274), + [anon_sym_print] = ACTIONS(277), + [anon_sym_GT_GT] = ACTIONS(264), + [anon_sym_COLON_EQ] = ACTIONS(279), + [anon_sym_if] = ACTIONS(264), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_match] = ACTIONS(272), + [anon_sym_async] = ACTIONS(277), + [anon_sym_in] = ACTIONS(264), + [anon_sym_STAR_STAR] = ACTIONS(284), + [anon_sym_exec] = ACTIONS(277), + [anon_sym_type] = ACTIONS(287), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(291), + [anon_sym_AT] = ACTIONS(264), + [anon_sym_DASH] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(264), + [anon_sym_LBRACE] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(293), + [anon_sym_not] = ACTIONS(298), + [anon_sym_and] = ACTIONS(264), + [anon_sym_or] = ACTIONS(264), + [anon_sym_SLASH] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_SLASH_SLASH] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(264), + [anon_sym_CARET] = ACTIONS(264), + [anon_sym_LT_LT] = ACTIONS(264), + [anon_sym_TILDE] = ACTIONS(301), + [anon_sym_is] = ACTIONS(264), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_LT_EQ] = ACTIONS(262), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_LT_GT] = ACTIONS(262), + [anon_sym_lambda] = ACTIONS(303), + [anon_sym_PLUS_EQ] = ACTIONS(305), + [anon_sym_DASH_EQ] = ACTIONS(305), + [anon_sym_STAR_EQ] = ACTIONS(305), + [anon_sym_SLASH_EQ] = ACTIONS(305), + [anon_sym_AT_EQ] = ACTIONS(305), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(305), + [anon_sym_PERCENT_EQ] = ACTIONS(305), + [anon_sym_STAR_STAR_EQ] = ACTIONS(305), + [anon_sym_GT_GT_EQ] = ACTIONS(305), + [anon_sym_LT_LT_EQ] = ACTIONS(305), + [anon_sym_AMP_EQ] = ACTIONS(305), + [anon_sym_CARET_EQ] = ACTIONS(305), + [anon_sym_PIPE_EQ] = ACTIONS(305), + [sym_ellipsis] = ACTIONS(307), + [sym_integer] = ACTIONS(309), + [sym_float] = ACTIONS(307), + [anon_sym_await] = ACTIONS(311), + [sym_true] = ACTIONS(309), + [sym_false] = ACTIONS(309), + [sym_none] = ACTIONS(309), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(257), - [sym_string_start] = ACTIONS(308), + [sym__newline] = ACTIONS(262), + [sym_string_start] = ACTIONS(313), }, [STATE(75)] = { - [sym_named_expression] = STATE(1750), - [sym__named_expression_lhs] = STATE(2653), - [sym_list_splat_pattern] = STATE(1416), - [sym_as_pattern] = STATE(1750), - [sym_expression] = STATE(1757), + [sym_named_expression] = STATE(1730), + [sym__named_expression_lhs] = STATE(2751), + [sym_list_splat_pattern] = STATE(1361), + [sym_as_pattern] = STATE(1730), + [sym_expression] = STATE(1759), [sym_primary_expression] = STATE(962), - [sym_not_operator] = STATE(1750), - [sym_boolean_operator] = STATE(1750), - [sym_binary_operator] = STATE(1348), - [sym_unary_operator] = STATE(1348), - [sym_comparison_operator] = STATE(1750), - [sym_lambda] = STATE(1750), - [sym_attribute] = STATE(1348), - [sym_subscript] = STATE(1348), - [sym_call] = STATE(1348), - [sym_type] = STATE(2236), - [sym_splat_type] = STATE(2046), - [sym_generic_type] = STATE(2046), - [sym_union_type] = STATE(2046), - [sym_constrained_type] = STATE(2046), - [sym_member_type] = STATE(2046), - [sym_list] = STATE(1348), - [sym_set] = STATE(1348), - [sym_tuple] = STATE(1348), - [sym_dictionary] = STATE(1348), - [sym_list_comprehension] = STATE(1348), - [sym_dictionary_comprehension] = STATE(1348), - [sym_set_comprehension] = STATE(1348), - [sym_generator_expression] = STATE(1348), - [sym_parenthesized_expression] = STATE(1348), - [sym_conditional_expression] = STATE(1750), - [sym_concatenated_string] = STATE(1348), - [sym_string] = STATE(1017), - [sym_await] = STATE(1348), - [sym_identifier] = ACTIONS(255), - [anon_sym_SEMI] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(261), - [anon_sym_COMMA] = ACTIONS(264), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(267), - [anon_sym_print] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(259), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_match] = ACTIONS(277), - [anon_sym_async] = ACTIONS(270), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(279), - [anon_sym_exec] = ACTIONS(270), - [anon_sym_type] = ACTIONS(282), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_AT] = ACTIONS(259), - [anon_sym_DASH] = ACTIONS(288), - [anon_sym_PIPE] = ACTIONS(259), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(288), - [anon_sym_not] = ACTIONS(293), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(259), - [anon_sym_SLASH_SLASH] = ACTIONS(259), - [anon_sym_AMP] = ACTIONS(259), - [anon_sym_CARET] = ACTIONS(259), - [anon_sym_LT_LT] = ACTIONS(259), - [anon_sym_TILDE] = ACTIONS(296), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [anon_sym_lambda] = ACTIONS(298), - [anon_sym_PLUS_EQ] = ACTIONS(300), - [anon_sym_DASH_EQ] = ACTIONS(300), - [anon_sym_STAR_EQ] = ACTIONS(300), - [anon_sym_SLASH_EQ] = ACTIONS(300), - [anon_sym_AT_EQ] = ACTIONS(300), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(300), - [anon_sym_PERCENT_EQ] = ACTIONS(300), - [anon_sym_STAR_STAR_EQ] = ACTIONS(300), - [anon_sym_GT_GT_EQ] = ACTIONS(300), - [anon_sym_LT_LT_EQ] = ACTIONS(300), - [anon_sym_AMP_EQ] = ACTIONS(300), - [anon_sym_CARET_EQ] = ACTIONS(300), - [anon_sym_PIPE_EQ] = ACTIONS(300), - [sym_ellipsis] = ACTIONS(302), - [sym_integer] = ACTIONS(304), - [sym_float] = ACTIONS(302), - [anon_sym_await] = ACTIONS(306), - [sym_true] = ACTIONS(304), - [sym_false] = ACTIONS(304), - [sym_none] = ACTIONS(304), + [sym_not_operator] = STATE(1730), + [sym_boolean_operator] = STATE(1730), + [sym_binary_operator] = STATE(1422), + [sym_unary_operator] = STATE(1422), + [sym_comparison_operator] = STATE(1730), + [sym_lambda] = STATE(1730), + [sym_attribute] = STATE(1422), + [sym_subscript] = STATE(1422), + [sym_call] = STATE(1422), + [sym_type] = STATE(2225), + [sym_splat_type] = STATE(2105), + [sym_generic_type] = STATE(2105), + [sym_union_type] = STATE(2105), + [sym_constrained_type] = STATE(2105), + [sym_member_type] = STATE(2105), + [sym_list] = STATE(1422), + [sym_set] = STATE(1422), + [sym_tuple] = STATE(1422), + [sym_dictionary] = STATE(1422), + [sym_list_comprehension] = STATE(1422), + [sym_dictionary_comprehension] = STATE(1422), + [sym_set_comprehension] = STATE(1422), + [sym_generator_expression] = STATE(1422), + [sym_parenthesized_expression] = STATE(1422), + [sym_conditional_expression] = STATE(1730), + [sym_concatenated_string] = STATE(1422), + [sym_string] = STATE(1032), + [sym_await] = STATE(1422), + [sym_identifier] = ACTIONS(260), + [anon_sym_SEMI] = ACTIONS(262), + [anon_sym_DOT] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(266), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_lazy] = ACTIONS(272), + [anon_sym_as] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(274), + [anon_sym_print] = ACTIONS(277), + [anon_sym_GT_GT] = ACTIONS(264), + [anon_sym_COLON_EQ] = ACTIONS(279), + [anon_sym_if] = ACTIONS(264), + [anon_sym_COLON] = ACTIONS(289), + [anon_sym_match] = ACTIONS(272), + [anon_sym_async] = ACTIONS(277), + [anon_sym_in] = ACTIONS(264), + [anon_sym_STAR_STAR] = ACTIONS(284), + [anon_sym_exec] = ACTIONS(277), + [anon_sym_type] = ACTIONS(287), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_AT] = ACTIONS(264), + [anon_sym_DASH] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(264), + [anon_sym_LBRACE] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(293), + [anon_sym_not] = ACTIONS(298), + [anon_sym_and] = ACTIONS(264), + [anon_sym_or] = ACTIONS(264), + [anon_sym_SLASH] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_SLASH_SLASH] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(264), + [anon_sym_CARET] = ACTIONS(264), + [anon_sym_LT_LT] = ACTIONS(264), + [anon_sym_TILDE] = ACTIONS(301), + [anon_sym_is] = ACTIONS(264), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_LT_EQ] = ACTIONS(262), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_LT_GT] = ACTIONS(262), + [anon_sym_lambda] = ACTIONS(303), + [anon_sym_PLUS_EQ] = ACTIONS(305), + [anon_sym_DASH_EQ] = ACTIONS(305), + [anon_sym_STAR_EQ] = ACTIONS(305), + [anon_sym_SLASH_EQ] = ACTIONS(305), + [anon_sym_AT_EQ] = ACTIONS(305), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(305), + [anon_sym_PERCENT_EQ] = ACTIONS(305), + [anon_sym_STAR_STAR_EQ] = ACTIONS(305), + [anon_sym_GT_GT_EQ] = ACTIONS(305), + [anon_sym_LT_LT_EQ] = ACTIONS(305), + [anon_sym_AMP_EQ] = ACTIONS(305), + [anon_sym_CARET_EQ] = ACTIONS(305), + [anon_sym_PIPE_EQ] = ACTIONS(305), + [sym_ellipsis] = ACTIONS(307), + [sym_integer] = ACTIONS(309), + [sym_float] = ACTIONS(307), + [anon_sym_await] = ACTIONS(311), + [sym_true] = ACTIONS(309), + [sym_false] = ACTIONS(309), + [sym_none] = ACTIONS(309), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(257), - [sym_string_start] = ACTIONS(308), + [sym__newline] = ACTIONS(262), + [sym_string_start] = ACTIONS(313), }, [STATE(76)] = { - [sym__simple_statements] = STATE(806), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1740), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1085), - [sym_type] = STATE(2074), - [sym_splat_type] = STATE(2046), - [sym_generic_type] = STATE(2046), - [sym_union_type] = STATE(2046), - [sym_constrained_type] = STATE(2046), - [sym_member_type] = STATE(2046), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [sym_identifier] = ACTIONS(313), + [sym__simple_statements] = STATE(827), + [sym_import_statement] = STATE(2268), + [sym_future_import_statement] = STATE(2268), + [sym_import_from_statement] = STATE(2268), + [sym_lazy_import_statement] = STATE(2268), + [sym_print_statement] = STATE(2268), + [sym_assert_statement] = STATE(2268), + [sym_expression_statement] = STATE(2268), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2268), + [sym_delete_statement] = STATE(2268), + [sym_raise_statement] = STATE(2268), + [sym_pass_statement] = STATE(2268), + [sym_break_statement] = STATE(2268), + [sym_continue_statement] = STATE(2268), + [sym_global_statement] = STATE(2268), + [sym_nonlocal_statement] = STATE(2268), + [sym_exec_statement] = STATE(2268), + [sym_type_alias_statement] = STATE(2268), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(657), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1744), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(659), + [sym_subscript] = STATE(659), + [sym_call] = STATE(1088), + [sym_type] = STATE(2093), + [sym_splat_type] = STATE(2105), + [sym_generic_type] = STATE(2105), + [sym_union_type] = STATE(2105), + [sym_constrained_type] = STATE(2105), + [sym_member_type] = STATE(2105), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [sym_identifier] = ACTIONS(318), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(317), - [anon_sym_print] = ACTIONS(319), - [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(321), - [anon_sym_async] = ACTIONS(323), - [anon_sym_STAR_STAR] = ACTIONS(325), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(327), - [anon_sym_type] = ACTIONS(329), - [anon_sym_LBRACK] = ACTIONS(331), - [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(333), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), + [anon_sym_LPAREN] = ACTIONS(320), + [anon_sym_lazy] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(324), + [anon_sym_print] = ACTIONS(326), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(328), + [anon_sym_async] = ACTIONS(330), + [anon_sym_STAR_STAR] = ACTIONS(332), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(334), + [anon_sym_type] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(340), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(335), - [sym__indent] = ACTIONS(337), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(342), + [sym__indent] = ACTIONS(344), + [sym_string_start] = ACTIONS(83), }, [STATE(77)] = { - [sym__simple_statements] = STATE(821), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1740), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1085), - [sym_type] = STATE(2074), - [sym_splat_type] = STATE(2046), - [sym_generic_type] = STATE(2046), - [sym_union_type] = STATE(2046), - [sym_constrained_type] = STATE(2046), - [sym_member_type] = STATE(2046), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [sym_identifier] = ACTIONS(313), + [sym__simple_statements] = STATE(832), + [sym_import_statement] = STATE(2268), + [sym_future_import_statement] = STATE(2268), + [sym_import_from_statement] = STATE(2268), + [sym_lazy_import_statement] = STATE(2268), + [sym_print_statement] = STATE(2268), + [sym_assert_statement] = STATE(2268), + [sym_expression_statement] = STATE(2268), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2268), + [sym_delete_statement] = STATE(2268), + [sym_raise_statement] = STATE(2268), + [sym_pass_statement] = STATE(2268), + [sym_break_statement] = STATE(2268), + [sym_continue_statement] = STATE(2268), + [sym_global_statement] = STATE(2268), + [sym_nonlocal_statement] = STATE(2268), + [sym_exec_statement] = STATE(2268), + [sym_type_alias_statement] = STATE(2268), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(657), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1744), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(659), + [sym_subscript] = STATE(659), + [sym_call] = STATE(1088), + [sym_type] = STATE(2093), + [sym_splat_type] = STATE(2105), + [sym_generic_type] = STATE(2105), + [sym_union_type] = STATE(2105), + [sym_constrained_type] = STATE(2105), + [sym_member_type] = STATE(2105), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [sym_identifier] = ACTIONS(318), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(317), - [anon_sym_print] = ACTIONS(319), - [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(321), - [anon_sym_async] = ACTIONS(323), - [anon_sym_STAR_STAR] = ACTIONS(325), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(327), - [anon_sym_type] = ACTIONS(329), - [anon_sym_LBRACK] = ACTIONS(331), - [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(333), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), + [anon_sym_LPAREN] = ACTIONS(320), + [anon_sym_lazy] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(324), + [anon_sym_print] = ACTIONS(326), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(328), + [anon_sym_async] = ACTIONS(330), + [anon_sym_STAR_STAR] = ACTIONS(332), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(334), + [anon_sym_type] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(340), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(339), - [sym__indent] = ACTIONS(341), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(346), + [sym__indent] = ACTIONS(348), + [sym_string_start] = ACTIONS(83), }, [STATE(78)] = { - [sym__simple_statements] = STATE(815), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1740), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1085), - [sym_type] = STATE(2074), - [sym_splat_type] = STATE(2046), - [sym_generic_type] = STATE(2046), - [sym_union_type] = STATE(2046), - [sym_constrained_type] = STATE(2046), - [sym_member_type] = STATE(2046), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [sym_identifier] = ACTIONS(313), + [sym__simple_statements] = STATE(819), + [sym_import_statement] = STATE(2268), + [sym_future_import_statement] = STATE(2268), + [sym_import_from_statement] = STATE(2268), + [sym_lazy_import_statement] = STATE(2268), + [sym_print_statement] = STATE(2268), + [sym_assert_statement] = STATE(2268), + [sym_expression_statement] = STATE(2268), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2268), + [sym_delete_statement] = STATE(2268), + [sym_raise_statement] = STATE(2268), + [sym_pass_statement] = STATE(2268), + [sym_break_statement] = STATE(2268), + [sym_continue_statement] = STATE(2268), + [sym_global_statement] = STATE(2268), + [sym_nonlocal_statement] = STATE(2268), + [sym_exec_statement] = STATE(2268), + [sym_type_alias_statement] = STATE(2268), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(657), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1744), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(659), + [sym_subscript] = STATE(659), + [sym_call] = STATE(1088), + [sym_type] = STATE(2093), + [sym_splat_type] = STATE(2105), + [sym_generic_type] = STATE(2105), + [sym_union_type] = STATE(2105), + [sym_constrained_type] = STATE(2105), + [sym_member_type] = STATE(2105), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [sym_identifier] = ACTIONS(318), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(317), - [anon_sym_print] = ACTIONS(319), - [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(321), - [anon_sym_async] = ACTIONS(323), - [anon_sym_STAR_STAR] = ACTIONS(325), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(327), - [anon_sym_type] = ACTIONS(329), - [anon_sym_LBRACK] = ACTIONS(331), - [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(333), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), + [anon_sym_LPAREN] = ACTIONS(320), + [anon_sym_lazy] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(324), + [anon_sym_print] = ACTIONS(326), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(328), + [anon_sym_async] = ACTIONS(330), + [anon_sym_STAR_STAR] = ACTIONS(332), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(334), + [anon_sym_type] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(340), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(343), - [sym__indent] = ACTIONS(345), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(350), + [sym__indent] = ACTIONS(352), + [sym_string_start] = ACTIONS(83), }, [STATE(79)] = { - [sym__simple_statements] = STATE(735), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1740), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1085), - [sym_type] = STATE(2074), - [sym_splat_type] = STATE(2046), - [sym_generic_type] = STATE(2046), - [sym_union_type] = STATE(2046), - [sym_constrained_type] = STATE(2046), - [sym_member_type] = STATE(2046), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [sym_identifier] = ACTIONS(313), + [sym__simple_statements] = STATE(810), + [sym_import_statement] = STATE(2268), + [sym_future_import_statement] = STATE(2268), + [sym_import_from_statement] = STATE(2268), + [sym_lazy_import_statement] = STATE(2268), + [sym_print_statement] = STATE(2268), + [sym_assert_statement] = STATE(2268), + [sym_expression_statement] = STATE(2268), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2268), + [sym_delete_statement] = STATE(2268), + [sym_raise_statement] = STATE(2268), + [sym_pass_statement] = STATE(2268), + [sym_break_statement] = STATE(2268), + [sym_continue_statement] = STATE(2268), + [sym_global_statement] = STATE(2268), + [sym_nonlocal_statement] = STATE(2268), + [sym_exec_statement] = STATE(2268), + [sym_type_alias_statement] = STATE(2268), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(657), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1744), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(659), + [sym_subscript] = STATE(659), + [sym_call] = STATE(1088), + [sym_type] = STATE(2093), + [sym_splat_type] = STATE(2105), + [sym_generic_type] = STATE(2105), + [sym_union_type] = STATE(2105), + [sym_constrained_type] = STATE(2105), + [sym_member_type] = STATE(2105), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [sym_identifier] = ACTIONS(318), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(317), - [anon_sym_print] = ACTIONS(319), - [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(321), - [anon_sym_async] = ACTIONS(323), - [anon_sym_STAR_STAR] = ACTIONS(325), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(327), - [anon_sym_type] = ACTIONS(329), - [anon_sym_LBRACK] = ACTIONS(331), - [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(333), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), + [anon_sym_LPAREN] = ACTIONS(320), + [anon_sym_lazy] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(324), + [anon_sym_print] = ACTIONS(326), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(328), + [anon_sym_async] = ACTIONS(330), + [anon_sym_STAR_STAR] = ACTIONS(332), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(334), + [anon_sym_type] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(340), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(347), - [sym__indent] = ACTIONS(349), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(354), + [sym__indent] = ACTIONS(356), + [sym_string_start] = ACTIONS(83), }, [STATE(80)] = { - [sym__simple_statements] = STATE(823), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1740), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1085), - [sym_type] = STATE(2074), - [sym_splat_type] = STATE(2046), - [sym_generic_type] = STATE(2046), - [sym_union_type] = STATE(2046), - [sym_constrained_type] = STATE(2046), - [sym_member_type] = STATE(2046), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [sym_identifier] = ACTIONS(313), + [sym__simple_statements] = STATE(780), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [sym_global_statement] = STATE(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(657), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1744), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(659), + [sym_subscript] = STATE(659), + [sym_call] = STATE(1088), + [sym_type] = STATE(2093), + [sym_splat_type] = STATE(2105), + [sym_generic_type] = STATE(2105), + [sym_union_type] = STATE(2105), + [sym_constrained_type] = STATE(2105), + [sym_member_type] = STATE(2105), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [sym_identifier] = ACTIONS(318), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(317), - [anon_sym_print] = ACTIONS(319), - [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(321), - [anon_sym_async] = ACTIONS(323), - [anon_sym_STAR_STAR] = ACTIONS(325), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(327), - [anon_sym_type] = ACTIONS(329), - [anon_sym_LBRACK] = ACTIONS(331), - [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(333), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), + [anon_sym_LPAREN] = ACTIONS(320), + [anon_sym_lazy] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(324), + [anon_sym_print] = ACTIONS(326), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(328), + [anon_sym_async] = ACTIONS(330), + [anon_sym_STAR_STAR] = ACTIONS(332), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(334), + [anon_sym_type] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(340), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(351), - [sym__indent] = ACTIONS(353), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(358), + [sym__indent] = ACTIONS(360), + [sym_string_start] = ACTIONS(83), }, [STATE(81)] = { - [sym__simple_statements] = STATE(738), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1740), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1085), - [sym_type] = STATE(2074), - [sym_splat_type] = STATE(2046), - [sym_generic_type] = STATE(2046), - [sym_union_type] = STATE(2046), - [sym_constrained_type] = STATE(2046), - [sym_member_type] = STATE(2046), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [sym_identifier] = ACTIONS(313), + [sym__simple_statements] = STATE(795), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [sym_global_statement] = STATE(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(657), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1744), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(659), + [sym_subscript] = STATE(659), + [sym_call] = STATE(1088), + [sym_type] = STATE(2093), + [sym_splat_type] = STATE(2105), + [sym_generic_type] = STATE(2105), + [sym_union_type] = STATE(2105), + [sym_constrained_type] = STATE(2105), + [sym_member_type] = STATE(2105), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [sym_identifier] = ACTIONS(318), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(317), - [anon_sym_print] = ACTIONS(319), - [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(321), - [anon_sym_async] = ACTIONS(323), - [anon_sym_STAR_STAR] = ACTIONS(325), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(327), - [anon_sym_type] = ACTIONS(329), - [anon_sym_LBRACK] = ACTIONS(331), - [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(333), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), + [anon_sym_LPAREN] = ACTIONS(320), + [anon_sym_lazy] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(324), + [anon_sym_print] = ACTIONS(326), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(328), + [anon_sym_async] = ACTIONS(330), + [anon_sym_STAR_STAR] = ACTIONS(332), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(334), + [anon_sym_type] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(340), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(355), - [sym__indent] = ACTIONS(357), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(362), + [sym__indent] = ACTIONS(364), + [sym_string_start] = ACTIONS(83), }, [STATE(82)] = { - [sym__simple_statements] = STATE(783), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1740), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1085), - [sym_type] = STATE(2074), - [sym_splat_type] = STATE(2046), - [sym_generic_type] = STATE(2046), - [sym_union_type] = STATE(2046), - [sym_constrained_type] = STATE(2046), - [sym_member_type] = STATE(2046), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [sym_identifier] = ACTIONS(313), + [sym__simple_statements] = STATE(815), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [sym_global_statement] = STATE(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(657), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1744), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(659), + [sym_subscript] = STATE(659), + [sym_call] = STATE(1088), + [sym_type] = STATE(2093), + [sym_splat_type] = STATE(2105), + [sym_generic_type] = STATE(2105), + [sym_union_type] = STATE(2105), + [sym_constrained_type] = STATE(2105), + [sym_member_type] = STATE(2105), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [sym_identifier] = ACTIONS(318), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(317), - [anon_sym_print] = ACTIONS(319), - [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(321), - [anon_sym_async] = ACTIONS(323), - [anon_sym_STAR_STAR] = ACTIONS(325), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(327), - [anon_sym_type] = ACTIONS(329), - [anon_sym_LBRACK] = ACTIONS(331), - [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(333), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), + [anon_sym_LPAREN] = ACTIONS(320), + [anon_sym_lazy] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(324), + [anon_sym_print] = ACTIONS(326), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(328), + [anon_sym_async] = ACTIONS(330), + [anon_sym_STAR_STAR] = ACTIONS(332), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(334), + [anon_sym_type] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(340), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(359), - [sym__indent] = ACTIONS(361), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(366), + [sym__indent] = ACTIONS(368), + [sym_string_start] = ACTIONS(83), }, [STATE(83)] = { - [sym__simple_statements] = STATE(802), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1740), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1085), - [sym_type] = STATE(2074), - [sym_splat_type] = STATE(2046), - [sym_generic_type] = STATE(2046), - [sym_union_type] = STATE(2046), - [sym_constrained_type] = STATE(2046), - [sym_member_type] = STATE(2046), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [sym_identifier] = ACTIONS(313), + [sym__simple_statements] = STATE(807), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [sym_global_statement] = STATE(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(657), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1744), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(659), + [sym_subscript] = STATE(659), + [sym_call] = STATE(1088), + [sym_type] = STATE(2093), + [sym_splat_type] = STATE(2105), + [sym_generic_type] = STATE(2105), + [sym_union_type] = STATE(2105), + [sym_constrained_type] = STATE(2105), + [sym_member_type] = STATE(2105), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [sym_identifier] = ACTIONS(318), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(317), - [anon_sym_print] = ACTIONS(319), - [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(321), - [anon_sym_async] = ACTIONS(323), - [anon_sym_STAR_STAR] = ACTIONS(325), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(327), - [anon_sym_type] = ACTIONS(329), - [anon_sym_LBRACK] = ACTIONS(331), - [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(333), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), + [anon_sym_LPAREN] = ACTIONS(320), + [anon_sym_lazy] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(324), + [anon_sym_print] = ACTIONS(326), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(328), + [anon_sym_async] = ACTIONS(330), + [anon_sym_STAR_STAR] = ACTIONS(332), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(334), + [anon_sym_type] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(340), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(363), - [sym__indent] = ACTIONS(365), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(370), + [sym__indent] = ACTIONS(372), + [sym_string_start] = ACTIONS(83), }, [STATE(84)] = { - [sym_chevron] = STATE(2114), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_list_splat_pattern] = STATE(1077), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1817), - [sym_primary_expression] = STATE(859), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_attribute] = STATE(1085), - [sym_subscript] = STATE(1085), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [sym_identifier] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(369), - [anon_sym_COMMA] = ACTIONS(264), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(372), - [anon_sym_print] = ACTIONS(375), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(284), + [sym_chevron] = STATE(2137), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_list_splat_pattern] = STATE(1112), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1805), + [sym_primary_expression] = STATE(942), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_attribute] = STATE(1088), + [sym_subscript] = STATE(1088), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [sym_identifier] = ACTIONS(374), + [anon_sym_SEMI] = ACTIONS(262), + [anon_sym_DOT] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(376), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_lazy] = ACTIONS(379), + [anon_sym_as] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_print] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(386), + [anon_sym_COLON_EQ] = ACTIONS(279), + [anon_sym_if] = ACTIONS(264), + [anon_sym_COLON] = ACTIONS(289), [anon_sym_match] = ACTIONS(379), - [anon_sym_async] = ACTIONS(375), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(259), - [anon_sym_exec] = ACTIONS(375), + [anon_sym_async] = ACTIONS(384), + [anon_sym_in] = ACTIONS(264), + [anon_sym_STAR_STAR] = ACTIONS(264), + [anon_sym_exec] = ACTIONS(384), [anon_sym_type] = ACTIONS(379), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_AT] = ACTIONS(259), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_PIPE] = ACTIONS(259), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_not] = ACTIONS(387), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(259), - [anon_sym_SLASH_SLASH] = ACTIONS(259), - [anon_sym_AMP] = ACTIONS(259), - [anon_sym_CARET] = ACTIONS(259), - [anon_sym_LT_LT] = ACTIONS(259), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_PLUS_EQ] = ACTIONS(300), - [anon_sym_DASH_EQ] = ACTIONS(300), - [anon_sym_STAR_EQ] = ACTIONS(300), - [anon_sym_SLASH_EQ] = ACTIONS(300), - [anon_sym_AT_EQ] = ACTIONS(300), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(300), - [anon_sym_PERCENT_EQ] = ACTIONS(300), - [anon_sym_STAR_STAR_EQ] = ACTIONS(300), - [anon_sym_GT_GT_EQ] = ACTIONS(300), - [anon_sym_LT_LT_EQ] = ACTIONS(300), - [anon_sym_AMP_EQ] = ACTIONS(300), - [anon_sym_CARET_EQ] = ACTIONS(300), - [anon_sym_PIPE_EQ] = ACTIONS(300), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(390), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_AT] = ACTIONS(264), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PIPE] = ACTIONS(264), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_not] = ACTIONS(394), + [anon_sym_and] = ACTIONS(264), + [anon_sym_or] = ACTIONS(264), + [anon_sym_SLASH] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_SLASH_SLASH] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(264), + [anon_sym_CARET] = ACTIONS(264), + [anon_sym_LT_LT] = ACTIONS(264), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_is] = ACTIONS(264), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_LT_EQ] = ACTIONS(262), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_LT_GT] = ACTIONS(262), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_PLUS_EQ] = ACTIONS(305), + [anon_sym_DASH_EQ] = ACTIONS(305), + [anon_sym_STAR_EQ] = ACTIONS(305), + [anon_sym_SLASH_EQ] = ACTIONS(305), + [anon_sym_AT_EQ] = ACTIONS(305), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(305), + [anon_sym_PERCENT_EQ] = ACTIONS(305), + [anon_sym_STAR_STAR_EQ] = ACTIONS(305), + [anon_sym_GT_GT_EQ] = ACTIONS(305), + [anon_sym_LT_LT_EQ] = ACTIONS(305), + [anon_sym_AMP_EQ] = ACTIONS(305), + [anon_sym_CARET_EQ] = ACTIONS(305), + [anon_sym_PIPE_EQ] = ACTIONS(305), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(397), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(257), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(262), + [sym_string_start] = ACTIONS(83), }, [STATE(85)] = { - [sym_chevron] = STATE(2114), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_list_splat_pattern] = STATE(1077), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1817), - [sym_primary_expression] = STATE(859), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_attribute] = STATE(1085), - [sym_subscript] = STATE(1085), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [sym_identifier] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(369), - [anon_sym_COMMA] = ACTIONS(264), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(372), - [anon_sym_print] = ACTIONS(375), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(274), + [sym_chevron] = STATE(2137), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_list_splat_pattern] = STATE(1112), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1805), + [sym_primary_expression] = STATE(942), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_attribute] = STATE(1088), + [sym_subscript] = STATE(1088), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [sym_identifier] = ACTIONS(374), + [anon_sym_SEMI] = ACTIONS(262), + [anon_sym_DOT] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(376), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_lazy] = ACTIONS(379), + [anon_sym_as] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_print] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(386), + [anon_sym_COLON_EQ] = ACTIONS(279), + [anon_sym_if] = ACTIONS(264), + [anon_sym_COLON] = ACTIONS(281), [anon_sym_match] = ACTIONS(379), - [anon_sym_async] = ACTIONS(375), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(259), - [anon_sym_exec] = ACTIONS(375), + [anon_sym_async] = ACTIONS(384), + [anon_sym_in] = ACTIONS(264), + [anon_sym_STAR_STAR] = ACTIONS(264), + [anon_sym_exec] = ACTIONS(384), [anon_sym_type] = ACTIONS(379), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_AT] = ACTIONS(259), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_PIPE] = ACTIONS(259), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_not] = ACTIONS(387), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(259), - [anon_sym_SLASH_SLASH] = ACTIONS(259), - [anon_sym_AMP] = ACTIONS(259), - [anon_sym_CARET] = ACTIONS(259), - [anon_sym_LT_LT] = ACTIONS(259), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_PLUS_EQ] = ACTIONS(300), - [anon_sym_DASH_EQ] = ACTIONS(300), - [anon_sym_STAR_EQ] = ACTIONS(300), - [anon_sym_SLASH_EQ] = ACTIONS(300), - [anon_sym_AT_EQ] = ACTIONS(300), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(300), - [anon_sym_PERCENT_EQ] = ACTIONS(300), - [anon_sym_STAR_STAR_EQ] = ACTIONS(300), - [anon_sym_GT_GT_EQ] = ACTIONS(300), - [anon_sym_LT_LT_EQ] = ACTIONS(300), - [anon_sym_AMP_EQ] = ACTIONS(300), - [anon_sym_CARET_EQ] = ACTIONS(300), - [anon_sym_PIPE_EQ] = ACTIONS(300), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(390), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_AT] = ACTIONS(264), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PIPE] = ACTIONS(264), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_not] = ACTIONS(394), + [anon_sym_and] = ACTIONS(264), + [anon_sym_or] = ACTIONS(264), + [anon_sym_SLASH] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_SLASH_SLASH] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(264), + [anon_sym_CARET] = ACTIONS(264), + [anon_sym_LT_LT] = ACTIONS(264), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_is] = ACTIONS(264), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_LT_EQ] = ACTIONS(262), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_LT_GT] = ACTIONS(262), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_PLUS_EQ] = ACTIONS(305), + [anon_sym_DASH_EQ] = ACTIONS(305), + [anon_sym_STAR_EQ] = ACTIONS(305), + [anon_sym_SLASH_EQ] = ACTIONS(305), + [anon_sym_AT_EQ] = ACTIONS(305), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(305), + [anon_sym_PERCENT_EQ] = ACTIONS(305), + [anon_sym_STAR_STAR_EQ] = ACTIONS(305), + [anon_sym_GT_GT_EQ] = ACTIONS(305), + [anon_sym_LT_LT_EQ] = ACTIONS(305), + [anon_sym_AMP_EQ] = ACTIONS(305), + [anon_sym_CARET_EQ] = ACTIONS(305), + [anon_sym_PIPE_EQ] = ACTIONS(305), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(397), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(257), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(262), + [sym_string_start] = ACTIONS(83), }, [STATE(86)] = { - [sym_named_expression] = STATE(1750), - [sym__named_expression_lhs] = STATE(2653), - [sym_list_splat_pattern] = STATE(1416), - [sym_as_pattern] = STATE(1750), - [sym_expression] = STATE(1868), + [sym_named_expression] = STATE(1730), + [sym__named_expression_lhs] = STATE(2751), + [sym_list_splat_pattern] = STATE(1361), + [sym_as_pattern] = STATE(1730), + [sym_expression] = STATE(1847), [sym_primary_expression] = STATE(962), - [sym_not_operator] = STATE(1750), - [sym_boolean_operator] = STATE(1750), - [sym_binary_operator] = STATE(1348), - [sym_unary_operator] = STATE(1348), - [sym_comparison_operator] = STATE(1750), - [sym_lambda] = STATE(1750), - [sym_attribute] = STATE(1348), - [sym_subscript] = STATE(1348), - [sym_call] = STATE(1348), - [sym_list] = STATE(1348), - [sym_set] = STATE(1348), - [sym_tuple] = STATE(1348), - [sym_dictionary] = STATE(1348), - [sym_list_comprehension] = STATE(1348), - [sym_dictionary_comprehension] = STATE(1348), - [sym_set_comprehension] = STATE(1348), - [sym_generator_expression] = STATE(1348), - [sym_parenthesized_expression] = STATE(1348), - [sym_conditional_expression] = STATE(1750), - [sym_concatenated_string] = STATE(1348), - [sym_string] = STATE(1017), - [sym_await] = STATE(1348), - [sym_identifier] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(261), - [anon_sym_COMMA] = ACTIONS(264), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(394), - [anon_sym_print] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(259), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_match] = ACTIONS(277), - [anon_sym_async] = ACTIONS(270), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(259), - [anon_sym_exec] = ACTIONS(270), - [anon_sym_type] = ACTIONS(277), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_AT] = ACTIONS(259), - [anon_sym_DASH] = ACTIONS(288), - [anon_sym_PIPE] = ACTIONS(259), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(288), - [anon_sym_not] = ACTIONS(293), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(259), - [anon_sym_SLASH_SLASH] = ACTIONS(259), - [anon_sym_AMP] = ACTIONS(259), - [anon_sym_CARET] = ACTIONS(259), - [anon_sym_LT_LT] = ACTIONS(259), - [anon_sym_TILDE] = ACTIONS(296), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [anon_sym_lambda] = ACTIONS(298), - [anon_sym_PLUS_EQ] = ACTIONS(300), - [anon_sym_DASH_EQ] = ACTIONS(300), - [anon_sym_STAR_EQ] = ACTIONS(300), - [anon_sym_SLASH_EQ] = ACTIONS(300), - [anon_sym_AT_EQ] = ACTIONS(300), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(300), - [anon_sym_PERCENT_EQ] = ACTIONS(300), - [anon_sym_STAR_STAR_EQ] = ACTIONS(300), - [anon_sym_GT_GT_EQ] = ACTIONS(300), - [anon_sym_LT_LT_EQ] = ACTIONS(300), - [anon_sym_AMP_EQ] = ACTIONS(300), - [anon_sym_CARET_EQ] = ACTIONS(300), - [anon_sym_PIPE_EQ] = ACTIONS(300), - [sym_ellipsis] = ACTIONS(302), - [sym_integer] = ACTIONS(304), - [sym_float] = ACTIONS(302), - [anon_sym_await] = ACTIONS(306), - [sym_true] = ACTIONS(304), - [sym_false] = ACTIONS(304), - [sym_none] = ACTIONS(304), + [sym_not_operator] = STATE(1730), + [sym_boolean_operator] = STATE(1730), + [sym_binary_operator] = STATE(1422), + [sym_unary_operator] = STATE(1422), + [sym_comparison_operator] = STATE(1730), + [sym_lambda] = STATE(1730), + [sym_attribute] = STATE(1422), + [sym_subscript] = STATE(1422), + [sym_call] = STATE(1422), + [sym_list] = STATE(1422), + [sym_set] = STATE(1422), + [sym_tuple] = STATE(1422), + [sym_dictionary] = STATE(1422), + [sym_list_comprehension] = STATE(1422), + [sym_dictionary_comprehension] = STATE(1422), + [sym_set_comprehension] = STATE(1422), + [sym_generator_expression] = STATE(1422), + [sym_parenthesized_expression] = STATE(1422), + [sym_conditional_expression] = STATE(1730), + [sym_concatenated_string] = STATE(1422), + [sym_string] = STATE(1032), + [sym_await] = STATE(1422), + [sym_identifier] = ACTIONS(399), + [anon_sym_SEMI] = ACTIONS(262), + [anon_sym_DOT] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(266), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_lazy] = ACTIONS(272), + [anon_sym_as] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(401), + [anon_sym_print] = ACTIONS(277), + [anon_sym_GT_GT] = ACTIONS(264), + [anon_sym_COLON_EQ] = ACTIONS(279), + [anon_sym_if] = ACTIONS(264), + [anon_sym_COLON] = ACTIONS(289), + [anon_sym_match] = ACTIONS(272), + [anon_sym_async] = ACTIONS(277), + [anon_sym_in] = ACTIONS(264), + [anon_sym_STAR_STAR] = ACTIONS(264), + [anon_sym_exec] = ACTIONS(277), + [anon_sym_type] = ACTIONS(272), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_AT] = ACTIONS(264), + [anon_sym_DASH] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(264), + [anon_sym_LBRACE] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(293), + [anon_sym_not] = ACTIONS(298), + [anon_sym_and] = ACTIONS(264), + [anon_sym_or] = ACTIONS(264), + [anon_sym_SLASH] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_SLASH_SLASH] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(264), + [anon_sym_CARET] = ACTIONS(264), + [anon_sym_LT_LT] = ACTIONS(264), + [anon_sym_TILDE] = ACTIONS(301), + [anon_sym_is] = ACTIONS(264), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_LT_EQ] = ACTIONS(262), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_LT_GT] = ACTIONS(262), + [anon_sym_lambda] = ACTIONS(303), + [anon_sym_PLUS_EQ] = ACTIONS(305), + [anon_sym_DASH_EQ] = ACTIONS(305), + [anon_sym_STAR_EQ] = ACTIONS(305), + [anon_sym_SLASH_EQ] = ACTIONS(305), + [anon_sym_AT_EQ] = ACTIONS(305), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(305), + [anon_sym_PERCENT_EQ] = ACTIONS(305), + [anon_sym_STAR_STAR_EQ] = ACTIONS(305), + [anon_sym_GT_GT_EQ] = ACTIONS(305), + [anon_sym_LT_LT_EQ] = ACTIONS(305), + [anon_sym_AMP_EQ] = ACTIONS(305), + [anon_sym_CARET_EQ] = ACTIONS(305), + [anon_sym_PIPE_EQ] = ACTIONS(305), + [sym_ellipsis] = ACTIONS(307), + [sym_integer] = ACTIONS(309), + [sym_float] = ACTIONS(307), + [anon_sym_await] = ACTIONS(311), + [sym_true] = ACTIONS(309), + [sym_false] = ACTIONS(309), + [sym_none] = ACTIONS(309), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(257), - [sym_string_start] = ACTIONS(308), + [sym__newline] = ACTIONS(262), + [sym_string_start] = ACTIONS(313), }, [STATE(87)] = { - [sym_named_expression] = STATE(1750), - [sym__named_expression_lhs] = STATE(2653), - [sym_list_splat_pattern] = STATE(1416), - [sym_as_pattern] = STATE(1750), - [sym_expression] = STATE(1864), + [sym_named_expression] = STATE(1730), + [sym__named_expression_lhs] = STATE(2751), + [sym_list_splat_pattern] = STATE(1361), + [sym_as_pattern] = STATE(1730), + [sym_expression] = STATE(1879), [sym_primary_expression] = STATE(962), - [sym_not_operator] = STATE(1750), - [sym_boolean_operator] = STATE(1750), - [sym_binary_operator] = STATE(1348), - [sym_unary_operator] = STATE(1348), - [sym_comparison_operator] = STATE(1750), - [sym_lambda] = STATE(1750), - [sym_attribute] = STATE(1348), - [sym_subscript] = STATE(1348), - [sym_call] = STATE(1348), - [sym_list] = STATE(1348), - [sym_set] = STATE(1348), - [sym_tuple] = STATE(1348), - [sym_dictionary] = STATE(1348), - [sym_list_comprehension] = STATE(1348), - [sym_dictionary_comprehension] = STATE(1348), - [sym_set_comprehension] = STATE(1348), - [sym_generator_expression] = STATE(1348), - [sym_parenthesized_expression] = STATE(1348), - [sym_conditional_expression] = STATE(1750), - [sym_concatenated_string] = STATE(1348), - [sym_string] = STATE(1017), - [sym_await] = STATE(1348), - [sym_identifier] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(261), - [anon_sym_COMMA] = ACTIONS(264), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(394), - [anon_sym_print] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(259), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_match] = ACTIONS(277), - [anon_sym_async] = ACTIONS(270), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(259), - [anon_sym_exec] = ACTIONS(270), - [anon_sym_type] = ACTIONS(277), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_AT] = ACTIONS(259), - [anon_sym_DASH] = ACTIONS(288), - [anon_sym_PIPE] = ACTIONS(259), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(288), - [anon_sym_not] = ACTIONS(293), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(259), - [anon_sym_SLASH_SLASH] = ACTIONS(259), - [anon_sym_AMP] = ACTIONS(259), - [anon_sym_CARET] = ACTIONS(259), - [anon_sym_LT_LT] = ACTIONS(259), - [anon_sym_TILDE] = ACTIONS(296), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [anon_sym_lambda] = ACTIONS(298), - [anon_sym_PLUS_EQ] = ACTIONS(300), - [anon_sym_DASH_EQ] = ACTIONS(300), - [anon_sym_STAR_EQ] = ACTIONS(300), - [anon_sym_SLASH_EQ] = ACTIONS(300), - [anon_sym_AT_EQ] = ACTIONS(300), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(300), - [anon_sym_PERCENT_EQ] = ACTIONS(300), - [anon_sym_STAR_STAR_EQ] = ACTIONS(300), - [anon_sym_GT_GT_EQ] = ACTIONS(300), - [anon_sym_LT_LT_EQ] = ACTIONS(300), - [anon_sym_AMP_EQ] = ACTIONS(300), - [anon_sym_CARET_EQ] = ACTIONS(300), - [anon_sym_PIPE_EQ] = ACTIONS(300), - [sym_ellipsis] = ACTIONS(302), - [sym_integer] = ACTIONS(304), - [sym_float] = ACTIONS(302), - [anon_sym_await] = ACTIONS(306), - [sym_true] = ACTIONS(304), - [sym_false] = ACTIONS(304), - [sym_none] = ACTIONS(304), + [sym_not_operator] = STATE(1730), + [sym_boolean_operator] = STATE(1730), + [sym_binary_operator] = STATE(1422), + [sym_unary_operator] = STATE(1422), + [sym_comparison_operator] = STATE(1730), + [sym_lambda] = STATE(1730), + [sym_attribute] = STATE(1422), + [sym_subscript] = STATE(1422), + [sym_call] = STATE(1422), + [sym_list] = STATE(1422), + [sym_set] = STATE(1422), + [sym_tuple] = STATE(1422), + [sym_dictionary] = STATE(1422), + [sym_list_comprehension] = STATE(1422), + [sym_dictionary_comprehension] = STATE(1422), + [sym_set_comprehension] = STATE(1422), + [sym_generator_expression] = STATE(1422), + [sym_parenthesized_expression] = STATE(1422), + [sym_conditional_expression] = STATE(1730), + [sym_concatenated_string] = STATE(1422), + [sym_string] = STATE(1032), + [sym_await] = STATE(1422), + [sym_identifier] = ACTIONS(399), + [anon_sym_SEMI] = ACTIONS(262), + [anon_sym_DOT] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(266), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_lazy] = ACTIONS(272), + [anon_sym_as] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(401), + [anon_sym_print] = ACTIONS(277), + [anon_sym_GT_GT] = ACTIONS(264), + [anon_sym_COLON_EQ] = ACTIONS(279), + [anon_sym_if] = ACTIONS(264), + [anon_sym_COLON] = ACTIONS(289), + [anon_sym_match] = ACTIONS(272), + [anon_sym_async] = ACTIONS(277), + [anon_sym_in] = ACTIONS(264), + [anon_sym_STAR_STAR] = ACTIONS(264), + [anon_sym_exec] = ACTIONS(277), + [anon_sym_type] = ACTIONS(272), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(315), + [anon_sym_AT] = ACTIONS(264), + [anon_sym_DASH] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(264), + [anon_sym_LBRACE] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(293), + [anon_sym_not] = ACTIONS(298), + [anon_sym_and] = ACTIONS(264), + [anon_sym_or] = ACTIONS(264), + [anon_sym_SLASH] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_SLASH_SLASH] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(264), + [anon_sym_CARET] = ACTIONS(264), + [anon_sym_LT_LT] = ACTIONS(264), + [anon_sym_TILDE] = ACTIONS(301), + [anon_sym_is] = ACTIONS(264), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_LT_EQ] = ACTIONS(262), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_LT_GT] = ACTIONS(262), + [anon_sym_lambda] = ACTIONS(303), + [anon_sym_PLUS_EQ] = ACTIONS(305), + [anon_sym_DASH_EQ] = ACTIONS(305), + [anon_sym_STAR_EQ] = ACTIONS(305), + [anon_sym_SLASH_EQ] = ACTIONS(305), + [anon_sym_AT_EQ] = ACTIONS(305), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(305), + [anon_sym_PERCENT_EQ] = ACTIONS(305), + [anon_sym_STAR_STAR_EQ] = ACTIONS(305), + [anon_sym_GT_GT_EQ] = ACTIONS(305), + [anon_sym_LT_LT_EQ] = ACTIONS(305), + [anon_sym_AMP_EQ] = ACTIONS(305), + [anon_sym_CARET_EQ] = ACTIONS(305), + [anon_sym_PIPE_EQ] = ACTIONS(305), + [sym_ellipsis] = ACTIONS(307), + [sym_integer] = ACTIONS(309), + [sym_float] = ACTIONS(307), + [anon_sym_await] = ACTIONS(311), + [sym_true] = ACTIONS(309), + [sym_false] = ACTIONS(309), + [sym_none] = ACTIONS(309), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(257), - [sym_string_start] = ACTIONS(308), + [sym__newline] = ACTIONS(262), + [sym_string_start] = ACTIONS(313), }, [STATE(88)] = { - [sym__simple_statements] = STATE(844), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(703), + [sym_import_statement] = STATE(2268), + [sym_future_import_statement] = STATE(2268), + [sym_import_from_statement] = STATE(2268), + [sym_lazy_import_statement] = STATE(2268), + [sym_print_statement] = STATE(2268), + [sym_assert_statement] = STATE(2268), + [sym_expression_statement] = STATE(2268), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2268), + [sym_delete_statement] = STATE(2268), + [sym_raise_statement] = STATE(2268), + [sym_pass_statement] = STATE(2268), + [sym_break_statement] = STATE(2268), + [sym_continue_statement] = STATE(2268), + [sym_global_statement] = STATE(2268), + [sym_nonlocal_statement] = STATE(2268), + [sym_exec_statement] = STATE(2268), + [sym_type_alias_statement] = STATE(2268), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(401), - [sym__indent] = ACTIONS(403), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(408), + [sym__indent] = ACTIONS(410), + [sym_string_start] = ACTIONS(83), }, [STATE(89)] = { - [sym__simple_statements] = STATE(589), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(637), + [sym_import_statement] = STATE(2268), + [sym_future_import_statement] = STATE(2268), + [sym_import_from_statement] = STATE(2268), + [sym_lazy_import_statement] = STATE(2268), + [sym_print_statement] = STATE(2268), + [sym_assert_statement] = STATE(2268), + [sym_expression_statement] = STATE(2268), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2268), + [sym_delete_statement] = STATE(2268), + [sym_raise_statement] = STATE(2268), + [sym_pass_statement] = STATE(2268), + [sym_break_statement] = STATE(2268), + [sym_continue_statement] = STATE(2268), + [sym_global_statement] = STATE(2268), + [sym_nonlocal_statement] = STATE(2268), + [sym_exec_statement] = STATE(2268), + [sym_type_alias_statement] = STATE(2268), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(405), - [sym__indent] = ACTIONS(407), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(412), + [sym__indent] = ACTIONS(414), + [sym_string_start] = ACTIONS(83), }, [STATE(90)] = { - [sym__simple_statements] = STATE(686), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(781), + [sym_import_statement] = STATE(2268), + [sym_future_import_statement] = STATE(2268), + [sym_import_from_statement] = STATE(2268), + [sym_lazy_import_statement] = STATE(2268), + [sym_print_statement] = STATE(2268), + [sym_assert_statement] = STATE(2268), + [sym_expression_statement] = STATE(2268), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2268), + [sym_delete_statement] = STATE(2268), + [sym_raise_statement] = STATE(2268), + [sym_pass_statement] = STATE(2268), + [sym_break_statement] = STATE(2268), + [sym_continue_statement] = STATE(2268), + [sym_global_statement] = STATE(2268), + [sym_nonlocal_statement] = STATE(2268), + [sym_exec_statement] = STATE(2268), + [sym_type_alias_statement] = STATE(2268), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(409), - [sym__indent] = ACTIONS(411), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(416), + [sym__indent] = ACTIONS(418), + [sym_string_start] = ACTIONS(83), }, [STATE(91)] = { - [sym__simple_statements] = STATE(2579), - [sym_import_statement] = STATE(2246), - [sym_future_import_statement] = STATE(2246), - [sym_import_from_statement] = STATE(2246), - [sym_print_statement] = STATE(2246), - [sym_assert_statement] = STATE(2246), - [sym_expression_statement] = STATE(2246), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2246), - [sym_delete_statement] = STATE(2246), - [sym_raise_statement] = STATE(2246), - [sym_pass_statement] = STATE(2246), - [sym_break_statement] = STATE(2246), - [sym_continue_statement] = STATE(2246), - [sym_global_statement] = STATE(2246), - [sym_nonlocal_statement] = STATE(2246), - [sym_exec_statement] = STATE(2246), - [sym_type_alias_statement] = STATE(2246), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(787), + [sym_import_statement] = STATE(2268), + [sym_future_import_statement] = STATE(2268), + [sym_import_from_statement] = STATE(2268), + [sym_lazy_import_statement] = STATE(2268), + [sym_print_statement] = STATE(2268), + [sym_assert_statement] = STATE(2268), + [sym_expression_statement] = STATE(2268), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2268), + [sym_delete_statement] = STATE(2268), + [sym_raise_statement] = STATE(2268), + [sym_pass_statement] = STATE(2268), + [sym_break_statement] = STATE(2268), + [sym_continue_statement] = STATE(2268), + [sym_global_statement] = STATE(2268), + [sym_nonlocal_statement] = STATE(2268), + [sym_exec_statement] = STATE(2268), + [sym_type_alias_statement] = STATE(2268), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(413), - [sym__indent] = ACTIONS(415), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(420), + [sym__indent] = ACTIONS(422), + [sym_string_start] = ACTIONS(83), }, [STATE(92)] = { - [sym__simple_statements] = STATE(752), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(2567), + [sym_import_statement] = STATE(2250), + [sym_future_import_statement] = STATE(2250), + [sym_import_from_statement] = STATE(2250), + [sym_lazy_import_statement] = STATE(2250), + [sym_print_statement] = STATE(2250), + [sym_assert_statement] = STATE(2250), + [sym_expression_statement] = STATE(2250), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2250), + [sym_delete_statement] = STATE(2250), + [sym_raise_statement] = STATE(2250), + [sym_pass_statement] = STATE(2250), + [sym_break_statement] = STATE(2250), + [sym_continue_statement] = STATE(2250), + [sym_global_statement] = STATE(2250), + [sym_nonlocal_statement] = STATE(2250), + [sym_exec_statement] = STATE(2250), + [sym_type_alias_statement] = STATE(2250), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(417), - [sym__indent] = ACTIONS(419), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(424), + [sym__indent] = ACTIONS(426), + [sym_string_start] = ACTIONS(83), }, [STATE(93)] = { - [sym__simple_statements] = STATE(754), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(790), + [sym_import_statement] = STATE(2268), + [sym_future_import_statement] = STATE(2268), + [sym_import_from_statement] = STATE(2268), + [sym_lazy_import_statement] = STATE(2268), + [sym_print_statement] = STATE(2268), + [sym_assert_statement] = STATE(2268), + [sym_expression_statement] = STATE(2268), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2268), + [sym_delete_statement] = STATE(2268), + [sym_raise_statement] = STATE(2268), + [sym_pass_statement] = STATE(2268), + [sym_break_statement] = STATE(2268), + [sym_continue_statement] = STATE(2268), + [sym_global_statement] = STATE(2268), + [sym_nonlocal_statement] = STATE(2268), + [sym_exec_statement] = STATE(2268), + [sym_type_alias_statement] = STATE(2268), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(421), - [sym__indent] = ACTIONS(423), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(428), + [sym__indent] = ACTIONS(430), + [sym_string_start] = ACTIONS(83), }, [STATE(94)] = { - [sym__simple_statements] = STATE(667), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(722), + [sym_import_statement] = STATE(2268), + [sym_future_import_statement] = STATE(2268), + [sym_import_from_statement] = STATE(2268), + [sym_lazy_import_statement] = STATE(2268), + [sym_print_statement] = STATE(2268), + [sym_assert_statement] = STATE(2268), + [sym_expression_statement] = STATE(2268), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2268), + [sym_delete_statement] = STATE(2268), + [sym_raise_statement] = STATE(2268), + [sym_pass_statement] = STATE(2268), + [sym_break_statement] = STATE(2268), + [sym_continue_statement] = STATE(2268), + [sym_global_statement] = STATE(2268), + [sym_nonlocal_statement] = STATE(2268), + [sym_exec_statement] = STATE(2268), + [sym_type_alias_statement] = STATE(2268), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(425), - [sym__indent] = ACTIONS(427), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(432), + [sym__indent] = ACTIONS(434), + [sym_string_start] = ACTIONS(83), }, [STATE(95)] = { - [sym__simple_statements] = STATE(755), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(697), + [sym_import_statement] = STATE(2268), + [sym_future_import_statement] = STATE(2268), + [sym_import_from_statement] = STATE(2268), + [sym_lazy_import_statement] = STATE(2268), + [sym_print_statement] = STATE(2268), + [sym_assert_statement] = STATE(2268), + [sym_expression_statement] = STATE(2268), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2268), + [sym_delete_statement] = STATE(2268), + [sym_raise_statement] = STATE(2268), + [sym_pass_statement] = STATE(2268), + [sym_break_statement] = STATE(2268), + [sym_continue_statement] = STATE(2268), + [sym_global_statement] = STATE(2268), + [sym_nonlocal_statement] = STATE(2268), + [sym_exec_statement] = STATE(2268), + [sym_type_alias_statement] = STATE(2268), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(429), - [sym__indent] = ACTIONS(431), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(436), + [sym__indent] = ACTIONS(438), + [sym_string_start] = ACTIONS(83), }, [STATE(96)] = { - [sym__simple_statements] = STATE(671), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(800), + [sym_import_statement] = STATE(2268), + [sym_future_import_statement] = STATE(2268), + [sym_import_from_statement] = STATE(2268), + [sym_lazy_import_statement] = STATE(2268), + [sym_print_statement] = STATE(2268), + [sym_assert_statement] = STATE(2268), + [sym_expression_statement] = STATE(2268), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2268), + [sym_delete_statement] = STATE(2268), + [sym_raise_statement] = STATE(2268), + [sym_pass_statement] = STATE(2268), + [sym_break_statement] = STATE(2268), + [sym_continue_statement] = STATE(2268), + [sym_global_statement] = STATE(2268), + [sym_nonlocal_statement] = STATE(2268), + [sym_exec_statement] = STATE(2268), + [sym_type_alias_statement] = STATE(2268), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(433), - [sym__indent] = ACTIONS(435), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(440), + [sym__indent] = ACTIONS(442), + [sym_string_start] = ACTIONS(83), }, [STATE(97)] = { - [sym__simple_statements] = STATE(613), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(617), + [sym_import_statement] = STATE(2268), + [sym_future_import_statement] = STATE(2268), + [sym_import_from_statement] = STATE(2268), + [sym_lazy_import_statement] = STATE(2268), + [sym_print_statement] = STATE(2268), + [sym_assert_statement] = STATE(2268), + [sym_expression_statement] = STATE(2268), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2268), + [sym_delete_statement] = STATE(2268), + [sym_raise_statement] = STATE(2268), + [sym_pass_statement] = STATE(2268), + [sym_break_statement] = STATE(2268), + [sym_continue_statement] = STATE(2268), + [sym_global_statement] = STATE(2268), + [sym_nonlocal_statement] = STATE(2268), + [sym_exec_statement] = STATE(2268), + [sym_type_alias_statement] = STATE(2268), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(437), - [sym__indent] = ACTIONS(439), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(444), + [sym__indent] = ACTIONS(446), + [sym_string_start] = ACTIONS(83), }, [STATE(98)] = { - [sym__simple_statements] = STATE(772), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(650), + [sym_import_statement] = STATE(2268), + [sym_future_import_statement] = STATE(2268), + [sym_import_from_statement] = STATE(2268), + [sym_lazy_import_statement] = STATE(2268), + [sym_print_statement] = STATE(2268), + [sym_assert_statement] = STATE(2268), + [sym_expression_statement] = STATE(2268), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2268), + [sym_delete_statement] = STATE(2268), + [sym_raise_statement] = STATE(2268), + [sym_pass_statement] = STATE(2268), + [sym_break_statement] = STATE(2268), + [sym_continue_statement] = STATE(2268), + [sym_global_statement] = STATE(2268), + [sym_nonlocal_statement] = STATE(2268), + [sym_exec_statement] = STATE(2268), + [sym_type_alias_statement] = STATE(2268), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(441), - [sym__indent] = ACTIONS(443), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(448), + [sym__indent] = ACTIONS(450), + [sym_string_start] = ACTIONS(83), }, [STATE(99)] = { - [sym__simple_statements] = STATE(704), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(636), + [sym_import_statement] = STATE(2268), + [sym_future_import_statement] = STATE(2268), + [sym_import_from_statement] = STATE(2268), + [sym_lazy_import_statement] = STATE(2268), + [sym_print_statement] = STATE(2268), + [sym_assert_statement] = STATE(2268), + [sym_expression_statement] = STATE(2268), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2268), + [sym_delete_statement] = STATE(2268), + [sym_raise_statement] = STATE(2268), + [sym_pass_statement] = STATE(2268), + [sym_break_statement] = STATE(2268), + [sym_continue_statement] = STATE(2268), + [sym_global_statement] = STATE(2268), + [sym_nonlocal_statement] = STATE(2268), + [sym_exec_statement] = STATE(2268), + [sym_type_alias_statement] = STATE(2268), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(445), - [sym__indent] = ACTIONS(447), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(452), + [sym__indent] = ACTIONS(454), + [sym_string_start] = ACTIONS(83), }, [STATE(100)] = { - [sym__simple_statements] = STATE(2497), - [sym_import_statement] = STATE(2246), - [sym_future_import_statement] = STATE(2246), - [sym_import_from_statement] = STATE(2246), - [sym_print_statement] = STATE(2246), - [sym_assert_statement] = STATE(2246), - [sym_expression_statement] = STATE(2246), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2246), - [sym_delete_statement] = STATE(2246), - [sym_raise_statement] = STATE(2246), - [sym_pass_statement] = STATE(2246), - [sym_break_statement] = STATE(2246), - [sym_continue_statement] = STATE(2246), - [sym_global_statement] = STATE(2246), - [sym_nonlocal_statement] = STATE(2246), - [sym_exec_statement] = STATE(2246), - [sym_type_alias_statement] = STATE(2246), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(738), + [sym_import_statement] = STATE(2268), + [sym_future_import_statement] = STATE(2268), + [sym_import_from_statement] = STATE(2268), + [sym_lazy_import_statement] = STATE(2268), + [sym_print_statement] = STATE(2268), + [sym_assert_statement] = STATE(2268), + [sym_expression_statement] = STATE(2268), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2268), + [sym_delete_statement] = STATE(2268), + [sym_raise_statement] = STATE(2268), + [sym_pass_statement] = STATE(2268), + [sym_break_statement] = STATE(2268), + [sym_continue_statement] = STATE(2268), + [sym_global_statement] = STATE(2268), + [sym_nonlocal_statement] = STATE(2268), + [sym_exec_statement] = STATE(2268), + [sym_type_alias_statement] = STATE(2268), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(449), - [sym__indent] = ACTIONS(451), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(456), + [sym__indent] = ACTIONS(458), + [sym_string_start] = ACTIONS(83), }, [STATE(101)] = { - [sym__simple_statements] = STATE(720), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(802), + [sym_import_statement] = STATE(2268), + [sym_future_import_statement] = STATE(2268), + [sym_import_from_statement] = STATE(2268), + [sym_lazy_import_statement] = STATE(2268), + [sym_print_statement] = STATE(2268), + [sym_assert_statement] = STATE(2268), + [sym_expression_statement] = STATE(2268), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2268), + [sym_delete_statement] = STATE(2268), + [sym_raise_statement] = STATE(2268), + [sym_pass_statement] = STATE(2268), + [sym_break_statement] = STATE(2268), + [sym_continue_statement] = STATE(2268), + [sym_global_statement] = STATE(2268), + [sym_nonlocal_statement] = STATE(2268), + [sym_exec_statement] = STATE(2268), + [sym_type_alias_statement] = STATE(2268), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(453), - [sym__indent] = ACTIONS(455), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(460), + [sym__indent] = ACTIONS(462), + [sym_string_start] = ACTIONS(83), }, [STATE(102)] = { - [sym__simple_statements] = STATE(2500), - [sym_import_statement] = STATE(2246), - [sym_future_import_statement] = STATE(2246), - [sym_import_from_statement] = STATE(2246), - [sym_print_statement] = STATE(2246), - [sym_assert_statement] = STATE(2246), - [sym_expression_statement] = STATE(2246), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2246), - [sym_delete_statement] = STATE(2246), - [sym_raise_statement] = STATE(2246), - [sym_pass_statement] = STATE(2246), - [sym_break_statement] = STATE(2246), - [sym_continue_statement] = STATE(2246), - [sym_global_statement] = STATE(2246), - [sym_nonlocal_statement] = STATE(2246), - [sym_exec_statement] = STATE(2246), - [sym_type_alias_statement] = STATE(2246), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(718), + [sym_import_statement] = STATE(2268), + [sym_future_import_statement] = STATE(2268), + [sym_import_from_statement] = STATE(2268), + [sym_lazy_import_statement] = STATE(2268), + [sym_print_statement] = STATE(2268), + [sym_assert_statement] = STATE(2268), + [sym_expression_statement] = STATE(2268), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2268), + [sym_delete_statement] = STATE(2268), + [sym_raise_statement] = STATE(2268), + [sym_pass_statement] = STATE(2268), + [sym_break_statement] = STATE(2268), + [sym_continue_statement] = STATE(2268), + [sym_global_statement] = STATE(2268), + [sym_nonlocal_statement] = STATE(2268), + [sym_exec_statement] = STATE(2268), + [sym_type_alias_statement] = STATE(2268), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(457), - [sym__indent] = ACTIONS(459), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(464), + [sym__indent] = ACTIONS(466), + [sym_string_start] = ACTIONS(83), }, [STATE(103)] = { - [sym__simple_statements] = STATE(674), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(2592), + [sym_import_statement] = STATE(2250), + [sym_future_import_statement] = STATE(2250), + [sym_import_from_statement] = STATE(2250), + [sym_lazy_import_statement] = STATE(2250), + [sym_print_statement] = STATE(2250), + [sym_assert_statement] = STATE(2250), + [sym_expression_statement] = STATE(2250), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2250), + [sym_delete_statement] = STATE(2250), + [sym_raise_statement] = STATE(2250), + [sym_pass_statement] = STATE(2250), + [sym_break_statement] = STATE(2250), + [sym_continue_statement] = STATE(2250), + [sym_global_statement] = STATE(2250), + [sym_nonlocal_statement] = STATE(2250), + [sym_exec_statement] = STATE(2250), + [sym_type_alias_statement] = STATE(2250), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(461), - [sym__indent] = ACTIONS(463), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(468), + [sym__indent] = ACTIONS(470), + [sym_string_start] = ACTIONS(83), }, [STATE(104)] = { - [sym__simple_statements] = STATE(779), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(727), + [sym_import_statement] = STATE(2268), + [sym_future_import_statement] = STATE(2268), + [sym_import_from_statement] = STATE(2268), + [sym_lazy_import_statement] = STATE(2268), + [sym_print_statement] = STATE(2268), + [sym_assert_statement] = STATE(2268), + [sym_expression_statement] = STATE(2268), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2268), + [sym_delete_statement] = STATE(2268), + [sym_raise_statement] = STATE(2268), + [sym_pass_statement] = STATE(2268), + [sym_break_statement] = STATE(2268), + [sym_continue_statement] = STATE(2268), + [sym_global_statement] = STATE(2268), + [sym_nonlocal_statement] = STATE(2268), + [sym_exec_statement] = STATE(2268), + [sym_type_alias_statement] = STATE(2268), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(465), - [sym__indent] = ACTIONS(467), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(472), + [sym__indent] = ACTIONS(474), + [sym_string_start] = ACTIONS(83), }, [STATE(105)] = { - [sym__simple_statements] = STATE(714), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(662), + [sym_import_statement] = STATE(2268), + [sym_future_import_statement] = STATE(2268), + [sym_import_from_statement] = STATE(2268), + [sym_lazy_import_statement] = STATE(2268), + [sym_print_statement] = STATE(2268), + [sym_assert_statement] = STATE(2268), + [sym_expression_statement] = STATE(2268), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2268), + [sym_delete_statement] = STATE(2268), + [sym_raise_statement] = STATE(2268), + [sym_pass_statement] = STATE(2268), + [sym_break_statement] = STATE(2268), + [sym_continue_statement] = STATE(2268), + [sym_global_statement] = STATE(2268), + [sym_nonlocal_statement] = STATE(2268), + [sym_exec_statement] = STATE(2268), + [sym_type_alias_statement] = STATE(2268), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(469), - [sym__indent] = ACTIONS(471), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(476), + [sym__indent] = ACTIONS(478), + [sym_string_start] = ACTIONS(83), }, [STATE(106)] = { - [sym__simple_statements] = STATE(672), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(665), + [sym_import_statement] = STATE(2268), + [sym_future_import_statement] = STATE(2268), + [sym_import_from_statement] = STATE(2268), + [sym_lazy_import_statement] = STATE(2268), + [sym_print_statement] = STATE(2268), + [sym_assert_statement] = STATE(2268), + [sym_expression_statement] = STATE(2268), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2268), + [sym_delete_statement] = STATE(2268), + [sym_raise_statement] = STATE(2268), + [sym_pass_statement] = STATE(2268), + [sym_break_statement] = STATE(2268), + [sym_continue_statement] = STATE(2268), + [sym_global_statement] = STATE(2268), + [sym_nonlocal_statement] = STATE(2268), + [sym_exec_statement] = STATE(2268), + [sym_type_alias_statement] = STATE(2268), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(473), - [sym__indent] = ACTIONS(475), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(480), + [sym__indent] = ACTIONS(482), + [sym_string_start] = ACTIONS(83), }, [STATE(107)] = { - [sym__simple_statements] = STATE(787), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(743), + [sym_import_statement] = STATE(2268), + [sym_future_import_statement] = STATE(2268), + [sym_import_from_statement] = STATE(2268), + [sym_lazy_import_statement] = STATE(2268), + [sym_print_statement] = STATE(2268), + [sym_assert_statement] = STATE(2268), + [sym_expression_statement] = STATE(2268), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2268), + [sym_delete_statement] = STATE(2268), + [sym_raise_statement] = STATE(2268), + [sym_pass_statement] = STATE(2268), + [sym_break_statement] = STATE(2268), + [sym_continue_statement] = STATE(2268), + [sym_global_statement] = STATE(2268), + [sym_nonlocal_statement] = STATE(2268), + [sym_exec_statement] = STATE(2268), + [sym_type_alias_statement] = STATE(2268), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(477), - [sym__indent] = ACTIONS(479), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(484), + [sym__indent] = ACTIONS(486), + [sym_string_start] = ACTIONS(83), }, [STATE(108)] = { - [sym__simple_statements] = STATE(689), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(558), + [sym_import_statement] = STATE(2268), + [sym_future_import_statement] = STATE(2268), + [sym_import_from_statement] = STATE(2268), + [sym_lazy_import_statement] = STATE(2268), + [sym_print_statement] = STATE(2268), + [sym_assert_statement] = STATE(2268), + [sym_expression_statement] = STATE(2268), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2268), + [sym_delete_statement] = STATE(2268), + [sym_raise_statement] = STATE(2268), + [sym_pass_statement] = STATE(2268), + [sym_break_statement] = STATE(2268), + [sym_continue_statement] = STATE(2268), + [sym_global_statement] = STATE(2268), + [sym_nonlocal_statement] = STATE(2268), + [sym_exec_statement] = STATE(2268), + [sym_type_alias_statement] = STATE(2268), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(481), - [sym__indent] = ACTIONS(483), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(488), + [sym__indent] = ACTIONS(490), + [sym_string_start] = ACTIONS(83), }, [STATE(109)] = { - [sym__simple_statements] = STATE(846), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(2499), + [sym_import_statement] = STATE(2250), + [sym_future_import_statement] = STATE(2250), + [sym_import_from_statement] = STATE(2250), + [sym_lazy_import_statement] = STATE(2250), + [sym_print_statement] = STATE(2250), + [sym_assert_statement] = STATE(2250), + [sym_expression_statement] = STATE(2250), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2250), + [sym_delete_statement] = STATE(2250), + [sym_raise_statement] = STATE(2250), + [sym_pass_statement] = STATE(2250), + [sym_break_statement] = STATE(2250), + [sym_continue_statement] = STATE(2250), + [sym_global_statement] = STATE(2250), + [sym_nonlocal_statement] = STATE(2250), + [sym_exec_statement] = STATE(2250), + [sym_type_alias_statement] = STATE(2250), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(485), - [sym__indent] = ACTIONS(487), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(492), + [sym__indent] = ACTIONS(494), + [sym_string_start] = ACTIONS(83), }, [STATE(110)] = { - [sym__simple_statements] = STATE(588), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(747), + [sym_import_statement] = STATE(2268), + [sym_future_import_statement] = STATE(2268), + [sym_import_from_statement] = STATE(2268), + [sym_lazy_import_statement] = STATE(2268), + [sym_print_statement] = STATE(2268), + [sym_assert_statement] = STATE(2268), + [sym_expression_statement] = STATE(2268), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2268), + [sym_delete_statement] = STATE(2268), + [sym_raise_statement] = STATE(2268), + [sym_pass_statement] = STATE(2268), + [sym_break_statement] = STATE(2268), + [sym_continue_statement] = STATE(2268), + [sym_global_statement] = STATE(2268), + [sym_nonlocal_statement] = STATE(2268), + [sym_exec_statement] = STATE(2268), + [sym_type_alias_statement] = STATE(2268), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(489), - [sym__indent] = ACTIONS(491), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(496), + [sym__indent] = ACTIONS(498), + [sym_string_start] = ACTIONS(83), }, [STATE(111)] = { - [sym__simple_statements] = STATE(621), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(2502), + [sym_import_statement] = STATE(2250), + [sym_future_import_statement] = STATE(2250), + [sym_import_from_statement] = STATE(2250), + [sym_lazy_import_statement] = STATE(2250), + [sym_print_statement] = STATE(2250), + [sym_assert_statement] = STATE(2250), + [sym_expression_statement] = STATE(2250), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2250), + [sym_delete_statement] = STATE(2250), + [sym_raise_statement] = STATE(2250), + [sym_pass_statement] = STATE(2250), + [sym_break_statement] = STATE(2250), + [sym_continue_statement] = STATE(2250), + [sym_global_statement] = STATE(2250), + [sym_nonlocal_statement] = STATE(2250), + [sym_exec_statement] = STATE(2250), + [sym_type_alias_statement] = STATE(2250), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(493), - [sym__indent] = ACTIONS(495), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(500), + [sym__indent] = ACTIONS(502), + [sym_string_start] = ACTIONS(83), }, [STATE(112)] = { - [sym__simple_statements] = STATE(715), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(481), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [sym_global_statement] = STATE(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(497), - [sym__indent] = ACTIONS(499), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(504), + [sym__indent] = ACTIONS(506), + [sym_string_start] = ACTIONS(83), }, [STATE(113)] = { - [sym__simple_statements] = STATE(2538), - [sym_import_statement] = STATE(2246), - [sym_future_import_statement] = STATE(2246), - [sym_import_from_statement] = STATE(2246), - [sym_print_statement] = STATE(2246), - [sym_assert_statement] = STATE(2246), - [sym_expression_statement] = STATE(2246), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2246), - [sym_delete_statement] = STATE(2246), - [sym_raise_statement] = STATE(2246), - [sym_pass_statement] = STATE(2246), - [sym_break_statement] = STATE(2246), - [sym_continue_statement] = STATE(2246), - [sym_global_statement] = STATE(2246), - [sym_nonlocal_statement] = STATE(2246), - [sym_exec_statement] = STATE(2246), - [sym_type_alias_statement] = STATE(2246), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(608), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [sym_global_statement] = STATE(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(501), - [sym__indent] = ACTIONS(503), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(508), + [sym__indent] = ACTIONS(510), + [sym_string_start] = ACTIONS(83), }, [STATE(114)] = { - [sym__simple_statements] = STATE(792), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(712), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [sym_global_statement] = STATE(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(505), - [sym__indent] = ACTIONS(507), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(512), + [sym__indent] = ACTIONS(514), + [sym_string_start] = ACTIONS(83), }, [STATE(115)] = { - [sym__simple_statements] = STATE(724), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(749), + [sym_import_statement] = STATE(2268), + [sym_future_import_statement] = STATE(2268), + [sym_import_from_statement] = STATE(2268), + [sym_lazy_import_statement] = STATE(2268), + [sym_print_statement] = STATE(2268), + [sym_assert_statement] = STATE(2268), + [sym_expression_statement] = STATE(2268), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2268), + [sym_delete_statement] = STATE(2268), + [sym_raise_statement] = STATE(2268), + [sym_pass_statement] = STATE(2268), + [sym_break_statement] = STATE(2268), + [sym_continue_statement] = STATE(2268), + [sym_global_statement] = STATE(2268), + [sym_nonlocal_statement] = STATE(2268), + [sym_exec_statement] = STATE(2268), + [sym_type_alias_statement] = STATE(2268), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(509), - [sym__indent] = ACTIONS(511), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(516), + [sym__indent] = ACTIONS(518), + [sym_string_start] = ACTIONS(83), }, [STATE(116)] = { - [sym__simple_statements] = STATE(744), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(818), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [sym_global_statement] = STATE(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(513), - [sym__indent] = ACTIONS(515), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(520), + [sym__indent] = ACTIONS(522), + [sym_string_start] = ACTIONS(83), }, [STATE(117)] = { - [sym__simple_statements] = STATE(2542), - [sym_import_statement] = STATE(2246), - [sym_future_import_statement] = STATE(2246), - [sym_import_from_statement] = STATE(2246), - [sym_print_statement] = STATE(2246), - [sym_assert_statement] = STATE(2246), - [sym_expression_statement] = STATE(2246), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2246), - [sym_delete_statement] = STATE(2246), - [sym_raise_statement] = STATE(2246), - [sym_pass_statement] = STATE(2246), - [sym_break_statement] = STATE(2246), - [sym_continue_statement] = STATE(2246), - [sym_global_statement] = STATE(2246), - [sym_nonlocal_statement] = STATE(2246), - [sym_exec_statement] = STATE(2246), - [sym_type_alias_statement] = STATE(2246), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(823), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [sym_global_statement] = STATE(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(517), - [sym__indent] = ACTIONS(519), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(524), + [sym__indent] = ACTIONS(526), + [sym_string_start] = ACTIONS(83), }, [STATE(118)] = { - [sym__simple_statements] = STATE(711), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(733), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [sym_global_statement] = STATE(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(521), - [sym__indent] = ACTIONS(523), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(528), + [sym__indent] = ACTIONS(530), + [sym_string_start] = ACTIONS(83), }, [STATE(119)] = { - [sym__simple_statements] = STATE(840), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(670), + [sym_import_statement] = STATE(2268), + [sym_future_import_statement] = STATE(2268), + [sym_import_from_statement] = STATE(2268), + [sym_lazy_import_statement] = STATE(2268), + [sym_print_statement] = STATE(2268), + [sym_assert_statement] = STATE(2268), + [sym_expression_statement] = STATE(2268), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2268), + [sym_delete_statement] = STATE(2268), + [sym_raise_statement] = STATE(2268), + [sym_pass_statement] = STATE(2268), + [sym_break_statement] = STATE(2268), + [sym_continue_statement] = STATE(2268), + [sym_global_statement] = STATE(2268), + [sym_nonlocal_statement] = STATE(2268), + [sym_exec_statement] = STATE(2268), + [sym_type_alias_statement] = STATE(2268), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(525), - [sym__indent] = ACTIONS(527), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(532), + [sym__indent] = ACTIONS(534), + [sym_string_start] = ACTIONS(83), }, [STATE(120)] = { - [sym__simple_statements] = STATE(756), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(740), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [sym_global_statement] = STATE(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(529), - [sym__indent] = ACTIONS(531), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(536), + [sym__indent] = ACTIONS(538), + [sym_string_start] = ACTIONS(83), }, [STATE(121)] = { - [sym__simple_statements] = STATE(759), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(745), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [sym_global_statement] = STATE(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(533), - [sym__indent] = ACTIONS(535), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(540), + [sym__indent] = ACTIONS(542), + [sym_string_start] = ACTIONS(83), }, [STATE(122)] = { - [sym__simple_statements] = STATE(728), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(748), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [sym_global_statement] = STATE(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(537), - [sym__indent] = ACTIONS(539), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(544), + [sym__indent] = ACTIONS(546), + [sym_string_start] = ACTIONS(83), }, [STATE(123)] = { - [sym__simple_statements] = STATE(697), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(756), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [sym_global_statement] = STATE(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(541), - [sym__indent] = ACTIONS(543), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(548), + [sym__indent] = ACTIONS(550), + [sym_string_start] = ACTIONS(83), }, [STATE(124)] = { - [sym__simple_statements] = STATE(718), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(702), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [sym_global_statement] = STATE(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(545), - [sym__indent] = ACTIONS(547), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(552), + [sym__indent] = ACTIONS(554), + [sym_string_start] = ACTIONS(83), }, [STATE(125)] = { - [sym__simple_statements] = STATE(684), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(720), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [sym_global_statement] = STATE(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(549), - [sym__indent] = ACTIONS(551), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(556), + [sym__indent] = ACTIONS(558), + [sym_string_start] = ACTIONS(83), }, [STATE(126)] = { - [sym__simple_statements] = STATE(745), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(653), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [sym_global_statement] = STATE(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(553), - [sym__indent] = ACTIONS(555), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(560), + [sym__indent] = ACTIONS(562), + [sym_string_start] = ACTIONS(83), }, [STATE(127)] = { - [sym__simple_statements] = STATE(758), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(760), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [sym_global_statement] = STATE(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(557), - [sym__indent] = ACTIONS(559), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(564), + [sym__indent] = ACTIONS(566), + [sym_string_start] = ACTIONS(83), }, [STATE(128)] = { [sym__simple_statements] = STATE(763), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [sym_global_statement] = STATE(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(561), - [sym__indent] = ACTIONS(563), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(568), + [sym__indent] = ACTIONS(570), + [sym_string_start] = ACTIONS(83), }, [STATE(129)] = { - [sym__simple_statements] = STATE(705), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(765), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [sym_global_statement] = STATE(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(565), - [sym__indent] = ACTIONS(567), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(572), + [sym__indent] = ACTIONS(574), + [sym_string_start] = ACTIONS(83), }, [STATE(130)] = { - [sym__simple_statements] = STATE(723), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(699), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [sym_global_statement] = STATE(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(569), - [sym__indent] = ACTIONS(571), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(576), + [sym__indent] = ACTIONS(578), + [sym_string_start] = ACTIONS(83), }, [STATE(131)] = { - [sym__simple_statements] = STATE(665), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(773), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [sym_global_statement] = STATE(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(573), - [sym__indent] = ACTIONS(575), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(580), + [sym__indent] = ACTIONS(582), + [sym_string_start] = ACTIONS(83), }, [STATE(132)] = { [sym__simple_statements] = STATE(676), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [sym_global_statement] = STATE(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(577), - [sym__indent] = ACTIONS(579), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(584), + [sym__indent] = ACTIONS(586), + [sym_string_start] = ACTIONS(83), }, [STATE(133)] = { - [sym__simple_statements] = STATE(739), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(681), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [sym_global_statement] = STATE(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(581), - [sym__indent] = ACTIONS(583), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(588), + [sym__indent] = ACTIONS(590), + [sym_string_start] = ACTIONS(83), }, [STATE(134)] = { - [sym__simple_statements] = STATE(692), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(707), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [sym_global_statement] = STATE(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(585), - [sym__indent] = ACTIONS(587), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(592), + [sym__indent] = ACTIONS(594), + [sym_string_start] = ACTIONS(83), }, [STATE(135)] = { - [sym__simple_statements] = STATE(799), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(684), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [sym_global_statement] = STATE(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(589), - [sym__indent] = ACTIONS(591), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(596), + [sym__indent] = ACTIONS(598), + [sym_string_start] = ACTIONS(83), }, [STATE(136)] = { - [sym__simple_statements] = STATE(663), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(688), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [sym_global_statement] = STATE(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(593), - [sym__indent] = ACTIONS(595), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(600), + [sym__indent] = ACTIONS(602), + [sym_string_start] = ACTIONS(83), }, [STATE(137)] = { - [sym__simple_statements] = STATE(679), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(775), + [sym_import_statement] = STATE(2268), + [sym_future_import_statement] = STATE(2268), + [sym_import_from_statement] = STATE(2268), + [sym_lazy_import_statement] = STATE(2268), + [sym_print_statement] = STATE(2268), + [sym_assert_statement] = STATE(2268), + [sym_expression_statement] = STATE(2268), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2268), + [sym_delete_statement] = STATE(2268), + [sym_raise_statement] = STATE(2268), + [sym_pass_statement] = STATE(2268), + [sym_break_statement] = STATE(2268), + [sym_continue_statement] = STATE(2268), + [sym_global_statement] = STATE(2268), + [sym_nonlocal_statement] = STATE(2268), + [sym_exec_statement] = STATE(2268), + [sym_type_alias_statement] = STATE(2268), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(597), - [sym__indent] = ACTIONS(599), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(604), + [sym__indent] = ACTIONS(606), + [sym_string_start] = ACTIONS(83), }, [STATE(138)] = { - [sym__simple_statements] = STATE(678), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(713), + [sym_import_statement] = STATE(2268), + [sym_future_import_statement] = STATE(2268), + [sym_import_from_statement] = STATE(2268), + [sym_lazy_import_statement] = STATE(2268), + [sym_print_statement] = STATE(2268), + [sym_assert_statement] = STATE(2268), + [sym_expression_statement] = STATE(2268), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2268), + [sym_delete_statement] = STATE(2268), + [sym_raise_statement] = STATE(2268), + [sym_pass_statement] = STATE(2268), + [sym_break_statement] = STATE(2268), + [sym_continue_statement] = STATE(2268), + [sym_global_statement] = STATE(2268), + [sym_nonlocal_statement] = STATE(2268), + [sym_exec_statement] = STATE(2268), + [sym_type_alias_statement] = STATE(2268), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(601), - [sym__indent] = ACTIONS(603), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(608), + [sym__indent] = ACTIONS(610), + [sym_string_start] = ACTIONS(83), }, [STATE(139)] = { - [sym__simple_statements] = STATE(2557), - [sym_import_statement] = STATE(2246), - [sym_future_import_statement] = STATE(2246), - [sym_import_from_statement] = STATE(2246), - [sym_print_statement] = STATE(2246), - [sym_assert_statement] = STATE(2246), - [sym_expression_statement] = STATE(2246), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2246), - [sym_delete_statement] = STATE(2246), - [sym_raise_statement] = STATE(2246), - [sym_pass_statement] = STATE(2246), - [sym_break_statement] = STATE(2246), - [sym_continue_statement] = STATE(2246), - [sym_global_statement] = STATE(2246), - [sym_nonlocal_statement] = STATE(2246), - [sym_exec_statement] = STATE(2246), - [sym_type_alias_statement] = STATE(2246), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(691), + [sym_import_statement] = STATE(2340), + [sym_future_import_statement] = STATE(2340), + [sym_import_from_statement] = STATE(2340), + [sym_lazy_import_statement] = STATE(2340), + [sym_print_statement] = STATE(2340), + [sym_assert_statement] = STATE(2340), + [sym_expression_statement] = STATE(2340), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2340), + [sym_delete_statement] = STATE(2340), + [sym_raise_statement] = STATE(2340), + [sym_pass_statement] = STATE(2340), + [sym_break_statement] = STATE(2340), + [sym_continue_statement] = STATE(2340), + [sym_global_statement] = STATE(2340), + [sym_nonlocal_statement] = STATE(2340), + [sym_exec_statement] = STATE(2340), + [sym_type_alias_statement] = STATE(2340), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(605), - [sym__indent] = ACTIONS(607), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(612), + [sym__indent] = ACTIONS(614), + [sym_string_start] = ACTIONS(83), }, [STATE(140)] = { - [sym__simple_statements] = STATE(733), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(2533), + [sym_import_statement] = STATE(2250), + [sym_future_import_statement] = STATE(2250), + [sym_import_from_statement] = STATE(2250), + [sym_lazy_import_statement] = STATE(2250), + [sym_print_statement] = STATE(2250), + [sym_assert_statement] = STATE(2250), + [sym_expression_statement] = STATE(2250), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2250), + [sym_delete_statement] = STATE(2250), + [sym_raise_statement] = STATE(2250), + [sym_pass_statement] = STATE(2250), + [sym_break_statement] = STATE(2250), + [sym_continue_statement] = STATE(2250), + [sym_global_statement] = STATE(2250), + [sym_nonlocal_statement] = STATE(2250), + [sym_exec_statement] = STATE(2250), + [sym_type_alias_statement] = STATE(2250), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(609), - [sym__indent] = ACTIONS(611), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(616), + [sym__indent] = ACTIONS(618), + [sym_string_start] = ACTIONS(83), }, [STATE(141)] = { - [sym__simple_statements] = STATE(691), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(2536), + [sym_import_statement] = STATE(2250), + [sym_future_import_statement] = STATE(2250), + [sym_import_from_statement] = STATE(2250), + [sym_lazy_import_statement] = STATE(2250), + [sym_print_statement] = STATE(2250), + [sym_assert_statement] = STATE(2250), + [sym_expression_statement] = STATE(2250), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2250), + [sym_delete_statement] = STATE(2250), + [sym_raise_statement] = STATE(2250), + [sym_pass_statement] = STATE(2250), + [sym_break_statement] = STATE(2250), + [sym_continue_statement] = STATE(2250), + [sym_global_statement] = STATE(2250), + [sym_nonlocal_statement] = STATE(2250), + [sym_exec_statement] = STATE(2250), + [sym_type_alias_statement] = STATE(2250), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(613), - [sym__indent] = ACTIONS(615), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(620), + [sym__indent] = ACTIONS(622), + [sym_string_start] = ACTIONS(83), }, [STATE(142)] = { - [sym_import_statement] = STATE(2554), - [sym_future_import_statement] = STATE(2554), - [sym_import_from_statement] = STATE(2554), - [sym_print_statement] = STATE(2554), - [sym_assert_statement] = STATE(2554), - [sym_expression_statement] = STATE(2554), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2554), - [sym_delete_statement] = STATE(2554), - [sym_raise_statement] = STATE(2554), - [sym_pass_statement] = STATE(2554), - [sym_break_statement] = STATE(2554), - [sym_continue_statement] = STATE(2554), - [sym_global_statement] = STATE(2554), - [sym_nonlocal_statement] = STATE(2554), - [sym_exec_statement] = STATE(2554), - [sym_type_alias_statement] = STATE(2554), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym_import_statement] = STATE(2568), + [sym_future_import_statement] = STATE(2568), + [sym_import_from_statement] = STATE(2568), + [sym_lazy_import_statement] = STATE(2568), + [sym_print_statement] = STATE(2568), + [sym_assert_statement] = STATE(2568), + [sym_expression_statement] = STATE(2568), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2568), + [sym_delete_statement] = STATE(2568), + [sym_raise_statement] = STATE(2568), + [sym_pass_statement] = STATE(2568), + [sym_break_statement] = STATE(2568), + [sym_continue_statement] = STATE(2568), + [sym_global_statement] = STATE(2568), + [sym_nonlocal_statement] = STATE(2568), + [sym_exec_statement] = STATE(2568), + [sym_type_alias_statement] = STATE(2568), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(617), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(624), + [sym_string_start] = ACTIONS(83), }, [STATE(143)] = { - [sym_import_statement] = STATE(2554), - [sym_future_import_statement] = STATE(2554), - [sym_import_from_statement] = STATE(2554), - [sym_print_statement] = STATE(2554), - [sym_assert_statement] = STATE(2554), - [sym_expression_statement] = STATE(2554), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2554), - [sym_delete_statement] = STATE(2554), - [sym_raise_statement] = STATE(2554), - [sym_pass_statement] = STATE(2554), - [sym_break_statement] = STATE(2554), - [sym_continue_statement] = STATE(2554), - [sym_global_statement] = STATE(2554), - [sym_nonlocal_statement] = STATE(2554), - [sym_exec_statement] = STATE(2554), - [sym_type_alias_statement] = STATE(2554), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym_import_statement] = STATE(2568), + [sym_future_import_statement] = STATE(2568), + [sym_import_from_statement] = STATE(2568), + [sym_lazy_import_statement] = STATE(2568), + [sym_print_statement] = STATE(2568), + [sym_assert_statement] = STATE(2568), + [sym_expression_statement] = STATE(2568), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2568), + [sym_delete_statement] = STATE(2568), + [sym_raise_statement] = STATE(2568), + [sym_pass_statement] = STATE(2568), + [sym_break_statement] = STATE(2568), + [sym_continue_statement] = STATE(2568), + [sym_global_statement] = STATE(2568), + [sym_nonlocal_statement] = STATE(2568), + [sym_exec_statement] = STATE(2568), + [sym_type_alias_statement] = STATE(2568), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(619), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(626), + [sym_string_start] = ACTIONS(83), }, [STATE(144)] = { - [sym_import_statement] = STATE(2554), - [sym_future_import_statement] = STATE(2554), - [sym_import_from_statement] = STATE(2554), - [sym_print_statement] = STATE(2554), - [sym_assert_statement] = STATE(2554), - [sym_expression_statement] = STATE(2554), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2554), - [sym_delete_statement] = STATE(2554), - [sym_raise_statement] = STATE(2554), - [sym_pass_statement] = STATE(2554), - [sym_break_statement] = STATE(2554), - [sym_continue_statement] = STATE(2554), - [sym_global_statement] = STATE(2554), - [sym_nonlocal_statement] = STATE(2554), - [sym_exec_statement] = STATE(2554), - [sym_type_alias_statement] = STATE(2554), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym_import_statement] = STATE(2568), + [sym_future_import_statement] = STATE(2568), + [sym_import_from_statement] = STATE(2568), + [sym_lazy_import_statement] = STATE(2568), + [sym_print_statement] = STATE(2568), + [sym_assert_statement] = STATE(2568), + [sym_expression_statement] = STATE(2568), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2568), + [sym_delete_statement] = STATE(2568), + [sym_raise_statement] = STATE(2568), + [sym_pass_statement] = STATE(2568), + [sym_break_statement] = STATE(2568), + [sym_continue_statement] = STATE(2568), + [sym_global_statement] = STATE(2568), + [sym_nonlocal_statement] = STATE(2568), + [sym_exec_statement] = STATE(2568), + [sym_type_alias_statement] = STATE(2568), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(621), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(628), + [sym_string_start] = ACTIONS(83), }, [STATE(145)] = { - [sym_import_statement] = STATE(2554), - [sym_future_import_statement] = STATE(2554), - [sym_import_from_statement] = STATE(2554), - [sym_print_statement] = STATE(2554), - [sym_assert_statement] = STATE(2554), - [sym_expression_statement] = STATE(2554), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2554), - [sym_delete_statement] = STATE(2554), - [sym_raise_statement] = STATE(2554), - [sym_pass_statement] = STATE(2554), - [sym_break_statement] = STATE(2554), - [sym_continue_statement] = STATE(2554), - [sym_global_statement] = STATE(2554), - [sym_nonlocal_statement] = STATE(2554), - [sym_exec_statement] = STATE(2554), - [sym_type_alias_statement] = STATE(2554), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym_import_statement] = STATE(2568), + [sym_future_import_statement] = STATE(2568), + [sym_import_from_statement] = STATE(2568), + [sym_lazy_import_statement] = STATE(2568), + [sym_print_statement] = STATE(2568), + [sym_assert_statement] = STATE(2568), + [sym_expression_statement] = STATE(2568), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2568), + [sym_delete_statement] = STATE(2568), + [sym_raise_statement] = STATE(2568), + [sym_pass_statement] = STATE(2568), + [sym_break_statement] = STATE(2568), + [sym_continue_statement] = STATE(2568), + [sym_global_statement] = STATE(2568), + [sym_nonlocal_statement] = STATE(2568), + [sym_exec_statement] = STATE(2568), + [sym_type_alias_statement] = STATE(2568), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(623), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(630), + [sym_string_start] = ACTIONS(83), }, [STATE(146)] = { - [sym_import_statement] = STATE(2554), - [sym_future_import_statement] = STATE(2554), - [sym_import_from_statement] = STATE(2554), - [sym_print_statement] = STATE(2554), - [sym_assert_statement] = STATE(2554), - [sym_expression_statement] = STATE(2554), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2554), - [sym_delete_statement] = STATE(2554), - [sym_raise_statement] = STATE(2554), - [sym_pass_statement] = STATE(2554), - [sym_break_statement] = STATE(2554), - [sym_continue_statement] = STATE(2554), - [sym_global_statement] = STATE(2554), - [sym_nonlocal_statement] = STATE(2554), - [sym_exec_statement] = STATE(2554), - [sym_type_alias_statement] = STATE(2554), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym_import_statement] = STATE(2568), + [sym_future_import_statement] = STATE(2568), + [sym_import_from_statement] = STATE(2568), + [sym_lazy_import_statement] = STATE(2568), + [sym_print_statement] = STATE(2568), + [sym_assert_statement] = STATE(2568), + [sym_expression_statement] = STATE(2568), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2568), + [sym_delete_statement] = STATE(2568), + [sym_raise_statement] = STATE(2568), + [sym_pass_statement] = STATE(2568), + [sym_break_statement] = STATE(2568), + [sym_continue_statement] = STATE(2568), + [sym_global_statement] = STATE(2568), + [sym_nonlocal_statement] = STATE(2568), + [sym_exec_statement] = STATE(2568), + [sym_type_alias_statement] = STATE(2568), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(625), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(632), + [sym_string_start] = ACTIONS(83), }, [STATE(147)] = { - [sym_import_statement] = STATE(2554), - [sym_future_import_statement] = STATE(2554), - [sym_import_from_statement] = STATE(2554), - [sym_print_statement] = STATE(2554), - [sym_assert_statement] = STATE(2554), - [sym_expression_statement] = STATE(2554), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2554), - [sym_delete_statement] = STATE(2554), - [sym_raise_statement] = STATE(2554), - [sym_pass_statement] = STATE(2554), - [sym_break_statement] = STATE(2554), - [sym_continue_statement] = STATE(2554), - [sym_global_statement] = STATE(2554), - [sym_nonlocal_statement] = STATE(2554), - [sym_exec_statement] = STATE(2554), - [sym_type_alias_statement] = STATE(2554), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym_import_statement] = STATE(2568), + [sym_future_import_statement] = STATE(2568), + [sym_import_from_statement] = STATE(2568), + [sym_lazy_import_statement] = STATE(2568), + [sym_print_statement] = STATE(2568), + [sym_assert_statement] = STATE(2568), + [sym_expression_statement] = STATE(2568), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2568), + [sym_delete_statement] = STATE(2568), + [sym_raise_statement] = STATE(2568), + [sym_pass_statement] = STATE(2568), + [sym_break_statement] = STATE(2568), + [sym_continue_statement] = STATE(2568), + [sym_global_statement] = STATE(2568), + [sym_nonlocal_statement] = STATE(2568), + [sym_exec_statement] = STATE(2568), + [sym_type_alias_statement] = STATE(2568), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(627), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(634), + [sym_string_start] = ACTIONS(83), }, [STATE(148)] = { - [sym_import_statement] = STATE(2554), - [sym_future_import_statement] = STATE(2554), - [sym_import_from_statement] = STATE(2554), - [sym_print_statement] = STATE(2554), - [sym_assert_statement] = STATE(2554), - [sym_expression_statement] = STATE(2554), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2554), - [sym_delete_statement] = STATE(2554), - [sym_raise_statement] = STATE(2554), - [sym_pass_statement] = STATE(2554), - [sym_break_statement] = STATE(2554), - [sym_continue_statement] = STATE(2554), - [sym_global_statement] = STATE(2554), - [sym_nonlocal_statement] = STATE(2554), - [sym_exec_statement] = STATE(2554), - [sym_type_alias_statement] = STATE(2554), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym_import_statement] = STATE(2568), + [sym_future_import_statement] = STATE(2568), + [sym_import_from_statement] = STATE(2568), + [sym_lazy_import_statement] = STATE(2568), + [sym_print_statement] = STATE(2568), + [sym_assert_statement] = STATE(2568), + [sym_expression_statement] = STATE(2568), + [sym_tuple_expression] = STATE(2509), + [sym_named_expression] = STATE(1661), + [sym__named_expression_lhs] = STATE(2643), + [sym_return_statement] = STATE(2568), + [sym_delete_statement] = STATE(2568), + [sym_raise_statement] = STATE(2568), + [sym_pass_statement] = STATE(2568), + [sym_break_statement] = STATE(2568), + [sym_continue_statement] = STATE(2568), + [sym_global_statement] = STATE(2568), + [sym_nonlocal_statement] = STATE(2568), + [sym_exec_statement] = STATE(2568), + [sym_type_alias_statement] = STATE(2568), + [sym_pattern] = STATE(1635), + [sym_tuple_pattern] = STATE(1637), + [sym_list_pattern] = STATE(1637), + [sym_list_splat_pattern] = STATE(669), + [sym_as_pattern] = STATE(1661), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(961), + [sym_not_operator] = STATE(1661), + [sym_boolean_operator] = STATE(1661), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_comparison_operator] = STATE(1661), + [sym_lambda] = STATE(1661), + [sym_assignment] = STATE(2509), + [sym_augmented_assignment] = STATE(2509), + [sym_pattern_list] = STATE(1656), + [sym_yield] = STATE(2509), + [sym_attribute] = STATE(692), + [sym_subscript] = STATE(692), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_conditional_expression] = STATE(1661), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), [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(397), - [anon_sym_async] = ACTIONS(399), - [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), + [anon_sym_lazy] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_print] = ACTIONS(21), + [anon_sym_assert] = ACTIONS(23), + [anon_sym_return] = ACTIONS(25), + [anon_sym_del] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_pass] = ACTIONS(31), + [anon_sym_break] = ACTIONS(33), + [anon_sym_continue] = ACTIONS(35), + [anon_sym_match] = ACTIONS(404), + [anon_sym_async] = ACTIONS(406), + [anon_sym_global] = ACTIONS(53), + [anon_sym_nonlocal] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(57), + [anon_sym_type] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(81), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(83), }, [STATE(149)] = { - [sym_list_splat_pattern] = STATE(1077), - [sym_primary_expression] = STATE(977), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_attribute] = STATE(1085), - [sym_subscript] = STATE(1085), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [sym_identifier] = ACTIONS(77), - [anon_sym_SEMI] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(629), - [anon_sym_COMMA] = ACTIONS(264), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_print] = ACTIONS(633), - [anon_sym_GT_GT] = ACTIONS(259), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_match] = ACTIONS(635), - [anon_sym_async] = ACTIONS(633), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(259), - [anon_sym_exec] = ACTIONS(633), - [anon_sym_type] = ACTIONS(635), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(259), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(259), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(259), - [anon_sym_SLASH_SLASH] = ACTIONS(259), - [anon_sym_AMP] = ACTIONS(259), - [anon_sym_CARET] = ACTIONS(259), - [anon_sym_LT_LT] = ACTIONS(259), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [anon_sym_PLUS_EQ] = ACTIONS(300), - [anon_sym_DASH_EQ] = ACTIONS(300), - [anon_sym_STAR_EQ] = ACTIONS(300), - [anon_sym_SLASH_EQ] = ACTIONS(300), - [anon_sym_AT_EQ] = ACTIONS(300), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(300), - [anon_sym_PERCENT_EQ] = ACTIONS(300), - [anon_sym_STAR_STAR_EQ] = ACTIONS(300), - [anon_sym_GT_GT_EQ] = ACTIONS(300), - [anon_sym_LT_LT_EQ] = ACTIONS(300), - [anon_sym_AMP_EQ] = ACTIONS(300), - [anon_sym_CARET_EQ] = ACTIONS(300), - [anon_sym_PIPE_EQ] = ACTIONS(300), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(641), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), + [sym_list_splat_pattern] = STATE(1112), + [sym_primary_expression] = STATE(971), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_attribute] = STATE(1088), + [sym_subscript] = STATE(1088), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [sym_identifier] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(262), + [anon_sym_DOT] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(636), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_lazy] = ACTIONS(638), + [anon_sym_as] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(640), + [anon_sym_print] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(264), + [anon_sym_COLON_EQ] = ACTIONS(279), + [anon_sym_if] = ACTIONS(264), + [anon_sym_COLON] = ACTIONS(289), + [anon_sym_match] = ACTIONS(638), + [anon_sym_async] = ACTIONS(642), + [anon_sym_in] = ACTIONS(264), + [anon_sym_STAR_STAR] = ACTIONS(264), + [anon_sym_exec] = ACTIONS(642), + [anon_sym_type] = ACTIONS(638), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(264), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_PIPE] = ACTIONS(264), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_not] = ACTIONS(264), + [anon_sym_and] = ACTIONS(264), + [anon_sym_or] = ACTIONS(264), + [anon_sym_SLASH] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_SLASH_SLASH] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(264), + [anon_sym_CARET] = ACTIONS(264), + [anon_sym_LT_LT] = ACTIONS(264), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_is] = ACTIONS(264), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_LT_EQ] = ACTIONS(262), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_LT_GT] = ACTIONS(262), + [anon_sym_PLUS_EQ] = ACTIONS(305), + [anon_sym_DASH_EQ] = ACTIONS(305), + [anon_sym_STAR_EQ] = ACTIONS(305), + [anon_sym_SLASH_EQ] = ACTIONS(305), + [anon_sym_AT_EQ] = ACTIONS(305), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(305), + [anon_sym_PERCENT_EQ] = ACTIONS(305), + [anon_sym_STAR_STAR_EQ] = ACTIONS(305), + [anon_sym_GT_GT_EQ] = ACTIONS(305), + [anon_sym_LT_LT_EQ] = ACTIONS(305), + [anon_sym_AMP_EQ] = ACTIONS(305), + [anon_sym_CARET_EQ] = ACTIONS(305), + [anon_sym_PIPE_EQ] = ACTIONS(305), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(648), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(257), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(262), + [sym_string_start] = ACTIONS(83), }, [STATE(150)] = { - [sym_list_splat_pattern] = STATE(1077), - [sym_primary_expression] = STATE(977), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_attribute] = STATE(1085), - [sym_subscript] = STATE(1085), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [sym_identifier] = ACTIONS(77), - [anon_sym_SEMI] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(629), - [anon_sym_COMMA] = ACTIONS(264), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_print] = ACTIONS(633), - [anon_sym_GT_GT] = ACTIONS(259), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(274), - [anon_sym_match] = ACTIONS(635), - [anon_sym_async] = ACTIONS(633), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(259), - [anon_sym_exec] = ACTIONS(633), - [anon_sym_type] = ACTIONS(635), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(259), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(259), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(259), - [anon_sym_SLASH_SLASH] = ACTIONS(259), - [anon_sym_AMP] = ACTIONS(259), - [anon_sym_CARET] = ACTIONS(259), - [anon_sym_LT_LT] = ACTIONS(259), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [anon_sym_PLUS_EQ] = ACTIONS(300), - [anon_sym_DASH_EQ] = ACTIONS(300), - [anon_sym_STAR_EQ] = ACTIONS(300), - [anon_sym_SLASH_EQ] = ACTIONS(300), - [anon_sym_AT_EQ] = ACTIONS(300), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(300), - [anon_sym_PERCENT_EQ] = ACTIONS(300), - [anon_sym_STAR_STAR_EQ] = ACTIONS(300), - [anon_sym_GT_GT_EQ] = ACTIONS(300), - [anon_sym_LT_LT_EQ] = ACTIONS(300), - [anon_sym_AMP_EQ] = ACTIONS(300), - [anon_sym_CARET_EQ] = ACTIONS(300), - [anon_sym_PIPE_EQ] = ACTIONS(300), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(641), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), + [sym_list_splat_pattern] = STATE(1112), + [sym_primary_expression] = STATE(971), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_attribute] = STATE(1088), + [sym_subscript] = STATE(1088), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [sym_identifier] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(262), + [anon_sym_DOT] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(636), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_lazy] = ACTIONS(638), + [anon_sym_as] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(640), + [anon_sym_print] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(264), + [anon_sym_COLON_EQ] = ACTIONS(279), + [anon_sym_if] = ACTIONS(264), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_match] = ACTIONS(638), + [anon_sym_async] = ACTIONS(642), + [anon_sym_in] = ACTIONS(264), + [anon_sym_STAR_STAR] = ACTIONS(264), + [anon_sym_exec] = ACTIONS(642), + [anon_sym_type] = ACTIONS(638), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(264), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_PIPE] = ACTIONS(264), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_not] = ACTIONS(264), + [anon_sym_and] = ACTIONS(264), + [anon_sym_or] = ACTIONS(264), + [anon_sym_SLASH] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_SLASH_SLASH] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(264), + [anon_sym_CARET] = ACTIONS(264), + [anon_sym_LT_LT] = ACTIONS(264), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_is] = ACTIONS(264), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_LT_EQ] = ACTIONS(262), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_LT_GT] = ACTIONS(262), + [anon_sym_PLUS_EQ] = ACTIONS(305), + [anon_sym_DASH_EQ] = ACTIONS(305), + [anon_sym_STAR_EQ] = ACTIONS(305), + [anon_sym_SLASH_EQ] = ACTIONS(305), + [anon_sym_AT_EQ] = ACTIONS(305), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(305), + [anon_sym_PERCENT_EQ] = ACTIONS(305), + [anon_sym_STAR_STAR_EQ] = ACTIONS(305), + [anon_sym_GT_GT_EQ] = ACTIONS(305), + [anon_sym_LT_LT_EQ] = ACTIONS(305), + [anon_sym_AMP_EQ] = ACTIONS(305), + [anon_sym_CARET_EQ] = ACTIONS(305), + [anon_sym_PIPE_EQ] = ACTIONS(305), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(648), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(257), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(262), + [sym_string_start] = ACTIONS(83), }, [STATE(151)] = { - [sym_list_splat_pattern] = STATE(1416), - [sym_primary_expression] = STATE(1124), - [sym_binary_operator] = STATE(1348), - [sym_unary_operator] = STATE(1348), - [sym_attribute] = STATE(1348), - [sym_subscript] = STATE(1348), - [sym_call] = STATE(1348), - [sym_list] = STATE(1348), - [sym_set] = STATE(1348), - [sym_tuple] = STATE(1348), - [sym_dictionary] = STATE(1348), - [sym_list_comprehension] = STATE(1348), - [sym_dictionary_comprehension] = STATE(1348), - [sym_set_comprehension] = STATE(1348), - [sym_generator_expression] = STATE(1348), - [sym_parenthesized_expression] = STATE(1348), - [sym_concatenated_string] = STATE(1348), - [sym_string] = STATE(1017), - [sym_await] = STATE(1348), - [sym_identifier] = ACTIONS(304), - [anon_sym_SEMI] = ACTIONS(643), - [anon_sym_DOT] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_COMMA] = ACTIONS(643), - [anon_sym_as] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_print] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(645), - [anon_sym_if] = ACTIONS(650), - [anon_sym_COLON] = ACTIONS(643), - [anon_sym_match] = ACTIONS(656), - [anon_sym_async] = ACTIONS(654), - [anon_sym_in] = ACTIONS(650), - [anon_sym_STAR_STAR] = ACTIONS(645), - [anon_sym_exec] = ACTIONS(654), - [anon_sym_type] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(660), - [anon_sym_PIPE] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(660), - [anon_sym_not] = ACTIONS(650), - [anon_sym_and] = ACTIONS(650), - [anon_sym_or] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_PERCENT] = ACTIONS(645), - [anon_sym_SLASH_SLASH] = ACTIONS(645), - [anon_sym_AMP] = ACTIONS(645), - [anon_sym_CARET] = ACTIONS(645), - [anon_sym_LT_LT] = ACTIONS(645), - [anon_sym_TILDE] = ACTIONS(296), - [anon_sym_is] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_LT_EQ] = ACTIONS(643), - [anon_sym_EQ_EQ] = ACTIONS(643), - [anon_sym_BANG_EQ] = ACTIONS(643), - [anon_sym_GT_EQ] = ACTIONS(643), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT_GT] = ACTIONS(643), - [anon_sym_PLUS_EQ] = ACTIONS(643), - [anon_sym_DASH_EQ] = ACTIONS(643), - [anon_sym_STAR_EQ] = ACTIONS(643), - [anon_sym_SLASH_EQ] = ACTIONS(643), - [anon_sym_AT_EQ] = ACTIONS(643), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(643), - [anon_sym_PERCENT_EQ] = ACTIONS(643), - [anon_sym_STAR_STAR_EQ] = ACTIONS(643), - [anon_sym_GT_GT_EQ] = ACTIONS(643), - [anon_sym_LT_LT_EQ] = ACTIONS(643), - [anon_sym_AMP_EQ] = ACTIONS(643), - [anon_sym_CARET_EQ] = ACTIONS(643), - [anon_sym_PIPE_EQ] = ACTIONS(643), - [sym_ellipsis] = ACTIONS(302), - [sym_integer] = ACTIONS(304), - [sym_float] = ACTIONS(302), - [anon_sym_await] = ACTIONS(662), - [sym_true] = ACTIONS(304), - [sym_false] = ACTIONS(304), - [sym_none] = ACTIONS(304), + [sym_list_splat_pattern] = STATE(1361), + [sym_primary_expression] = STATE(1126), + [sym_binary_operator] = STATE(1422), + [sym_unary_operator] = STATE(1422), + [sym_attribute] = STATE(1422), + [sym_subscript] = STATE(1422), + [sym_call] = STATE(1422), + [sym_list] = STATE(1422), + [sym_set] = STATE(1422), + [sym_tuple] = STATE(1422), + [sym_dictionary] = STATE(1422), + [sym_list_comprehension] = STATE(1422), + [sym_dictionary_comprehension] = STATE(1422), + [sym_set_comprehension] = STATE(1422), + [sym_generator_expression] = STATE(1422), + [sym_parenthesized_expression] = STATE(1422), + [sym_concatenated_string] = STATE(1422), + [sym_string] = STATE(1032), + [sym_await] = STATE(1422), + [sym_identifier] = ACTIONS(309), + [anon_sym_SEMI] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(652), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(650), + [anon_sym_lazy] = ACTIONS(657), + [anon_sym_as] = ACTIONS(659), + [anon_sym_STAR] = ACTIONS(661), + [anon_sym_print] = ACTIONS(663), + [anon_sym_GT_GT] = ACTIONS(652), + [anon_sym_if] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_match] = ACTIONS(657), + [anon_sym_async] = ACTIONS(663), + [anon_sym_in] = ACTIONS(659), + [anon_sym_STAR_STAR] = ACTIONS(652), + [anon_sym_exec] = ACTIONS(663), + [anon_sym_type] = ACTIONS(657), + [anon_sym_EQ] = ACTIONS(659), + [anon_sym_LBRACK] = ACTIONS(665), + [anon_sym_AT] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(667), + [anon_sym_PIPE] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(667), + [anon_sym_not] = ACTIONS(659), + [anon_sym_and] = ACTIONS(659), + [anon_sym_or] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(652), + [anon_sym_PERCENT] = ACTIONS(652), + [anon_sym_SLASH_SLASH] = ACTIONS(652), + [anon_sym_AMP] = ACTIONS(652), + [anon_sym_CARET] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(301), + [anon_sym_is] = ACTIONS(659), + [anon_sym_LT] = ACTIONS(659), + [anon_sym_LT_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(650), + [anon_sym_BANG_EQ] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(650), + [anon_sym_GT] = ACTIONS(659), + [anon_sym_LT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(650), + [anon_sym_DASH_EQ] = ACTIONS(650), + [anon_sym_STAR_EQ] = ACTIONS(650), + [anon_sym_SLASH_EQ] = ACTIONS(650), + [anon_sym_AT_EQ] = ACTIONS(650), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(650), + [anon_sym_PERCENT_EQ] = ACTIONS(650), + [anon_sym_STAR_STAR_EQ] = ACTIONS(650), + [anon_sym_GT_GT_EQ] = ACTIONS(650), + [anon_sym_LT_LT_EQ] = ACTIONS(650), + [anon_sym_AMP_EQ] = ACTIONS(650), + [anon_sym_CARET_EQ] = ACTIONS(650), + [anon_sym_PIPE_EQ] = ACTIONS(650), + [sym_ellipsis] = ACTIONS(307), + [sym_integer] = ACTIONS(309), + [sym_float] = ACTIONS(307), + [anon_sym_await] = ACTIONS(669), + [sym_true] = ACTIONS(309), + [sym_false] = ACTIONS(309), + [sym_none] = ACTIONS(309), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(643), - [sym_string_start] = ACTIONS(308), + [sym__newline] = ACTIONS(650), + [sym_string_start] = ACTIONS(313), }, [STATE(152)] = { - [sym_list_splat_pattern] = STATE(1077), - [sym_primary_expression] = STATE(977), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_attribute] = STATE(1085), - [sym_subscript] = STATE(1085), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [sym_identifier] = ACTIONS(77), - [anon_sym_SEMI] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_from] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(629), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_print] = ACTIONS(633), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_match] = ACTIONS(635), - [anon_sym_async] = ACTIONS(633), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(633), - [anon_sym_type] = ACTIONS(635), - [anon_sym_EQ] = ACTIONS(259), - [anon_sym_LBRACK] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(641), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), + [sym_list_splat_pattern] = STATE(1112), + [sym_primary_expression] = STATE(971), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_attribute] = STATE(1088), + [sym_subscript] = STATE(1088), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [sym_identifier] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(262), + [anon_sym_DOT] = ACTIONS(264), + [anon_sym_from] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(636), + [anon_sym_COMMA] = ACTIONS(262), + [anon_sym_lazy] = ACTIONS(638), + [anon_sym_as] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(640), + [anon_sym_print] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_COLON_EQ] = ACTIONS(279), + [anon_sym_if] = ACTIONS(264), + [anon_sym_COLON] = ACTIONS(264), + [anon_sym_match] = ACTIONS(638), + [anon_sym_async] = ACTIONS(642), + [anon_sym_in] = ACTIONS(264), + [anon_sym_STAR_STAR] = ACTIONS(262), + [anon_sym_exec] = ACTIONS(642), + [anon_sym_type] = ACTIONS(638), + [anon_sym_EQ] = ACTIONS(264), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(264), + [anon_sym_and] = ACTIONS(264), + [anon_sym_or] = ACTIONS(264), + [anon_sym_SLASH] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(262), + [anon_sym_SLASH_SLASH] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_is] = ACTIONS(264), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_LT_EQ] = ACTIONS(262), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_LT_GT] = ACTIONS(262), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(648), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(257), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(262), + [sym_string_start] = ACTIONS(83), }, [STATE(153)] = { - [sym_list_splat_pattern] = STATE(1077), - [sym_primary_expression] = STATE(977), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_attribute] = STATE(1085), - [sym_subscript] = STATE(1085), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [sym_identifier] = ACTIONS(77), - [anon_sym_SEMI] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_from] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(629), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_print] = ACTIONS(633), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(257), - [anon_sym_match] = ACTIONS(635), - [anon_sym_async] = ACTIONS(633), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(633), - [anon_sym_type] = ACTIONS(635), - [anon_sym_EQ] = ACTIONS(259), - [anon_sym_LBRACK] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(641), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), + [sym_list_splat_pattern] = STATE(1361), + [sym_primary_expression] = STATE(1126), + [sym_binary_operator] = STATE(1422), + [sym_unary_operator] = STATE(1422), + [sym_attribute] = STATE(1422), + [sym_subscript] = STATE(1422), + [sym_call] = STATE(1422), + [sym_list] = STATE(1422), + [sym_set] = STATE(1422), + [sym_tuple] = STATE(1422), + [sym_dictionary] = STATE(1422), + [sym_list_comprehension] = STATE(1422), + [sym_dictionary_comprehension] = STATE(1422), + [sym_set_comprehension] = STATE(1422), + [sym_generator_expression] = STATE(1422), + [sym_parenthesized_expression] = STATE(1422), + [sym_concatenated_string] = STATE(1422), + [sym_string] = STATE(1032), + [sym_await] = STATE(1422), + [sym_identifier] = ACTIONS(309), + [anon_sym_SEMI] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(652), + [anon_sym_from] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(650), + [anon_sym_lazy] = ACTIONS(657), + [anon_sym_as] = ACTIONS(659), + [anon_sym_STAR] = ACTIONS(661), + [anon_sym_print] = ACTIONS(663), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_if] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_match] = ACTIONS(657), + [anon_sym_async] = ACTIONS(663), + [anon_sym_in] = ACTIONS(659), + [anon_sym_STAR_STAR] = ACTIONS(671), + [anon_sym_exec] = ACTIONS(663), + [anon_sym_type] = ACTIONS(657), + [anon_sym_EQ] = ACTIONS(659), + [anon_sym_LBRACK] = ACTIONS(665), + [anon_sym_AT] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(301), + [anon_sym_PIPE] = ACTIONS(671), + [anon_sym_LBRACE] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(301), + [anon_sym_not] = ACTIONS(659), + [anon_sym_and] = ACTIONS(659), + [anon_sym_or] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(652), + [anon_sym_PERCENT] = ACTIONS(671), + [anon_sym_SLASH_SLASH] = ACTIONS(671), + [anon_sym_AMP] = ACTIONS(671), + [anon_sym_CARET] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_TILDE] = ACTIONS(301), + [anon_sym_is] = ACTIONS(659), + [anon_sym_LT] = ACTIONS(659), + [anon_sym_LT_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(650), + [anon_sym_BANG_EQ] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(650), + [anon_sym_GT] = ACTIONS(659), + [anon_sym_LT_GT] = ACTIONS(650), + [sym_ellipsis] = ACTIONS(307), + [sym_integer] = ACTIONS(309), + [sym_float] = ACTIONS(307), + [anon_sym_await] = ACTIONS(669), + [sym_true] = ACTIONS(309), + [sym_false] = ACTIONS(309), + [sym_none] = ACTIONS(309), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(257), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(650), + [sym_string_start] = ACTIONS(313), }, [STATE(154)] = { - [sym_list_splat_pattern] = STATE(1147), - [sym_primary_expression] = STATE(1024), - [sym_binary_operator] = STATE(1265), - [sym_unary_operator] = STATE(1265), - [sym_attribute] = STATE(1265), - [sym_subscript] = STATE(1265), - [sym_call] = STATE(1265), - [sym_list] = STATE(1265), - [sym_set] = STATE(1265), - [sym_tuple] = STATE(1265), - [sym_dictionary] = STATE(1265), - [sym_list_comprehension] = STATE(1265), - [sym_dictionary_comprehension] = STATE(1265), - [sym_set_comprehension] = STATE(1265), - [sym_generator_expression] = STATE(1265), - [sym_parenthesized_expression] = STATE(1265), - [sym_concatenated_string] = STATE(1265), - [sym_string] = STATE(981), - [sym_await] = STATE(1265), - [sym_identifier] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(264), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(668), - [anon_sym_print] = ACTIONS(670), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_match] = ACTIONS(672), - [anon_sym_async] = ACTIONS(670), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(670), - [anon_sym_type] = ACTIONS(672), - [anon_sym_EQ] = ACTIONS(259), - [anon_sym_LBRACK] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(257), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(676), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(680), - [sym_type_conversion] = ACTIONS(257), - [sym_integer] = ACTIONS(664), - [sym_float] = ACTIONS(680), - [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(664), - [sym_false] = ACTIONS(664), - [sym_none] = ACTIONS(664), + [sym_list_splat_pattern] = STATE(1361), + [sym_primary_expression] = STATE(1126), + [sym_binary_operator] = STATE(1422), + [sym_unary_operator] = STATE(1422), + [sym_attribute] = STATE(1422), + [sym_subscript] = STATE(1422), + [sym_call] = STATE(1422), + [sym_list] = STATE(1422), + [sym_set] = STATE(1422), + [sym_tuple] = STATE(1422), + [sym_dictionary] = STATE(1422), + [sym_list_comprehension] = STATE(1422), + [sym_dictionary_comprehension] = STATE(1422), + [sym_set_comprehension] = STATE(1422), + [sym_generator_expression] = STATE(1422), + [sym_parenthesized_expression] = STATE(1422), + [sym_concatenated_string] = STATE(1422), + [sym_string] = STATE(1032), + [sym_await] = STATE(1422), + [sym_identifier] = ACTIONS(309), + [anon_sym_DOT] = ACTIONS(652), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(650), + [anon_sym_lazy] = ACTIONS(657), + [anon_sym_as] = ACTIONS(659), + [anon_sym_STAR] = ACTIONS(661), + [anon_sym_print] = ACTIONS(663), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_if] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_match] = ACTIONS(657), + [anon_sym_async] = ACTIONS(663), + [anon_sym_for] = ACTIONS(659), + [anon_sym_in] = ACTIONS(659), + [anon_sym_STAR_STAR] = ACTIONS(671), + [anon_sym_exec] = ACTIONS(663), + [anon_sym_type] = ACTIONS(657), + [anon_sym_EQ] = ACTIONS(659), + [anon_sym_LBRACK] = ACTIONS(665), + [anon_sym_AT] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(301), + [anon_sym_PIPE] = ACTIONS(671), + [anon_sym_LBRACE] = ACTIONS(296), + [anon_sym_RBRACE] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(301), + [anon_sym_not] = ACTIONS(659), + [anon_sym_and] = ACTIONS(659), + [anon_sym_or] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(652), + [anon_sym_PERCENT] = ACTIONS(671), + [anon_sym_SLASH_SLASH] = ACTIONS(671), + [anon_sym_AMP] = ACTIONS(671), + [anon_sym_CARET] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_TILDE] = ACTIONS(301), + [anon_sym_is] = ACTIONS(659), + [anon_sym_LT] = ACTIONS(659), + [anon_sym_LT_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(650), + [anon_sym_BANG_EQ] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(650), + [anon_sym_GT] = ACTIONS(659), + [anon_sym_LT_GT] = ACTIONS(650), + [sym_ellipsis] = ACTIONS(307), + [sym_type_conversion] = ACTIONS(650), + [sym_integer] = ACTIONS(309), + [sym_float] = ACTIONS(307), + [anon_sym_await] = ACTIONS(669), + [sym_true] = ACTIONS(309), + [sym_false] = ACTIONS(309), + [sym_none] = ACTIONS(309), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(684), + [sym_string_start] = ACTIONS(313), }, [STATE(155)] = { - [sym_list_splat_pattern] = STATE(1416), - [sym_primary_expression] = STATE(1124), - [sym_binary_operator] = STATE(1348), - [sym_unary_operator] = STATE(1348), - [sym_attribute] = STATE(1348), - [sym_subscript] = STATE(1348), - [sym_call] = STATE(1348), - [sym_list] = STATE(1348), - [sym_set] = STATE(1348), - [sym_tuple] = STATE(1348), - [sym_dictionary] = STATE(1348), - [sym_list_comprehension] = STATE(1348), - [sym_dictionary_comprehension] = STATE(1348), - [sym_set_comprehension] = STATE(1348), - [sym_generator_expression] = STATE(1348), - [sym_parenthesized_expression] = STATE(1348), - [sym_concatenated_string] = STATE(1348), - [sym_string] = STATE(1017), - [sym_await] = STATE(1348), - [sym_identifier] = ACTIONS(304), - [anon_sym_SEMI] = ACTIONS(643), - [anon_sym_DOT] = ACTIONS(645), - [anon_sym_from] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_COMMA] = ACTIONS(643), - [anon_sym_as] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_print] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_if] = ACTIONS(650), - [anon_sym_COLON] = ACTIONS(643), - [anon_sym_match] = ACTIONS(656), - [anon_sym_async] = ACTIONS(654), - [anon_sym_in] = ACTIONS(650), - [anon_sym_STAR_STAR] = ACTIONS(686), - [anon_sym_exec] = ACTIONS(654), - [anon_sym_type] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(686), - [anon_sym_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(296), - [anon_sym_not] = ACTIONS(650), - [anon_sym_and] = ACTIONS(650), - [anon_sym_or] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_SLASH_SLASH] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_TILDE] = ACTIONS(296), - [anon_sym_is] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_LT_EQ] = ACTIONS(643), - [anon_sym_EQ_EQ] = ACTIONS(643), - [anon_sym_BANG_EQ] = ACTIONS(643), - [anon_sym_GT_EQ] = ACTIONS(643), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT_GT] = ACTIONS(643), - [sym_ellipsis] = ACTIONS(302), - [sym_integer] = ACTIONS(304), - [sym_float] = ACTIONS(302), - [anon_sym_await] = ACTIONS(662), - [sym_true] = ACTIONS(304), - [sym_false] = ACTIONS(304), - [sym_none] = ACTIONS(304), + [sym_list_splat_pattern] = STATE(1147), + [sym_primary_expression] = STATE(1040), + [sym_binary_operator] = STATE(1205), + [sym_unary_operator] = STATE(1205), + [sym_attribute] = STATE(1205), + [sym_subscript] = STATE(1205), + [sym_call] = STATE(1205), + [sym_list] = STATE(1205), + [sym_set] = STATE(1205), + [sym_tuple] = STATE(1205), + [sym_dictionary] = STATE(1205), + [sym_list_comprehension] = STATE(1205), + [sym_dictionary_comprehension] = STATE(1205), + [sym_set_comprehension] = STATE(1205), + [sym_generator_expression] = STATE(1205), + [sym_parenthesized_expression] = STATE(1205), + [sym_concatenated_string] = STATE(1205), + [sym_string] = STATE(969), + [sym_await] = STATE(1205), + [sym_identifier] = ACTIONS(674), + [anon_sym_DOT] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(676), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_lazy] = ACTIONS(678), + [anon_sym_as] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(680), + [anon_sym_print] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_COLON_EQ] = ACTIONS(279), + [anon_sym_if] = ACTIONS(264), + [anon_sym_COLON] = ACTIONS(264), + [anon_sym_match] = ACTIONS(678), + [anon_sym_async] = ACTIONS(682), + [anon_sym_in] = ACTIONS(264), + [anon_sym_STAR_STAR] = ACTIONS(262), + [anon_sym_exec] = ACTIONS(682), + [anon_sym_type] = ACTIONS(678), + [anon_sym_EQ] = ACTIONS(264), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(686), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(262), + [anon_sym_PLUS] = ACTIONS(686), + [anon_sym_not] = ACTIONS(264), + [anon_sym_and] = ACTIONS(264), + [anon_sym_or] = ACTIONS(264), + [anon_sym_SLASH] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(262), + [anon_sym_SLASH_SLASH] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(686), + [anon_sym_is] = ACTIONS(264), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_LT_EQ] = ACTIONS(262), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_LT_GT] = ACTIONS(262), + [sym_ellipsis] = ACTIONS(690), + [sym_type_conversion] = ACTIONS(262), + [sym_integer] = ACTIONS(674), + [sym_float] = ACTIONS(690), + [anon_sym_await] = ACTIONS(692), + [sym_true] = ACTIONS(674), + [sym_false] = ACTIONS(674), + [sym_none] = ACTIONS(674), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(643), - [sym_string_start] = ACTIONS(308), + [sym_string_start] = ACTIONS(694), }, [STATE(156)] = { - [sym_list_splat_pattern] = STATE(1147), - [sym_primary_expression] = STATE(1024), - [sym_binary_operator] = STATE(1265), - [sym_unary_operator] = STATE(1265), - [sym_attribute] = STATE(1265), - [sym_subscript] = STATE(1265), - [sym_call] = STATE(1265), - [sym_list] = STATE(1265), - [sym_set] = STATE(1265), - [sym_tuple] = STATE(1265), - [sym_dictionary] = STATE(1265), - [sym_list_comprehension] = STATE(1265), - [sym_dictionary_comprehension] = STATE(1265), - [sym_set_comprehension] = STATE(1265), - [sym_generator_expression] = STATE(1265), - [sym_parenthesized_expression] = STATE(1265), - [sym_concatenated_string] = STATE(1265), - [sym_string] = STATE(981), - [sym_await] = STATE(1265), - [sym_identifier] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(668), - [anon_sym_print] = ACTIONS(670), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_match] = ACTIONS(672), - [anon_sym_async] = ACTIONS(670), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(670), - [anon_sym_type] = ACTIONS(672), - [anon_sym_EQ] = ACTIONS(259), - [anon_sym_LBRACK] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(257), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(676), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(680), - [sym_type_conversion] = ACTIONS(257), - [sym_integer] = ACTIONS(664), - [sym_float] = ACTIONS(680), - [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(664), - [sym_false] = ACTIONS(664), - [sym_none] = ACTIONS(664), + [sym_list_splat_pattern] = STATE(1112), + [sym_primary_expression] = STATE(971), + [sym_binary_operator] = STATE(1088), + [sym_unary_operator] = STATE(1088), + [sym_attribute] = STATE(1088), + [sym_subscript] = STATE(1088), + [sym_call] = STATE(1088), + [sym_list] = STATE(1088), + [sym_set] = STATE(1088), + [sym_tuple] = STATE(1088), + [sym_dictionary] = STATE(1088), + [sym_list_comprehension] = STATE(1088), + [sym_dictionary_comprehension] = STATE(1088), + [sym_set_comprehension] = STATE(1088), + [sym_generator_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_concatenated_string] = STATE(1088), + [sym_string] = STATE(966), + [sym_await] = STATE(1088), + [sym_identifier] = ACTIONS(79), + [anon_sym_SEMI] = ACTIONS(262), + [anon_sym_DOT] = ACTIONS(264), + [anon_sym_from] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(636), + [anon_sym_COMMA] = ACTIONS(262), + [anon_sym_lazy] = ACTIONS(638), + [anon_sym_as] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(640), + [anon_sym_print] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_if] = ACTIONS(264), + [anon_sym_COLON] = ACTIONS(262), + [anon_sym_match] = ACTIONS(638), + [anon_sym_async] = ACTIONS(642), + [anon_sym_in] = ACTIONS(264), + [anon_sym_STAR_STAR] = ACTIONS(262), + [anon_sym_exec] = ACTIONS(642), + [anon_sym_type] = ACTIONS(638), + [anon_sym_EQ] = ACTIONS(264), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_LBRACE] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_not] = ACTIONS(264), + [anon_sym_and] = ACTIONS(264), + [anon_sym_or] = ACTIONS(264), + [anon_sym_SLASH] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(262), + [anon_sym_SLASH_SLASH] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_is] = ACTIONS(264), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_LT_EQ] = ACTIONS(262), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_LT_GT] = ACTIONS(262), + [sym_ellipsis] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(77), + [anon_sym_await] = ACTIONS(648), + [sym_true] = ACTIONS(79), + [sym_false] = ACTIONS(79), + [sym_none] = ACTIONS(79), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(684), + [sym__newline] = ACTIONS(262), + [sym_string_start] = ACTIONS(83), }, [STATE(157)] = { - [sym_list_splat_pattern] = STATE(1416), - [sym_primary_expression] = STATE(1124), - [sym_binary_operator] = STATE(1348), - [sym_unary_operator] = STATE(1348), - [sym_attribute] = STATE(1348), - [sym_subscript] = STATE(1348), - [sym_call] = STATE(1348), - [sym_list] = STATE(1348), - [sym_set] = STATE(1348), - [sym_tuple] = STATE(1348), - [sym_dictionary] = STATE(1348), - [sym_list_comprehension] = STATE(1348), - [sym_dictionary_comprehension] = STATE(1348), - [sym_set_comprehension] = STATE(1348), - [sym_generator_expression] = STATE(1348), - [sym_parenthesized_expression] = STATE(1348), - [sym_concatenated_string] = STATE(1348), - [sym_string] = STATE(1017), - [sym_await] = STATE(1348), - [sym_identifier] = ACTIONS(304), - [anon_sym_DOT] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_COMMA] = ACTIONS(643), - [anon_sym_as] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_print] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_if] = ACTIONS(650), - [anon_sym_COLON] = ACTIONS(643), - [anon_sym_match] = ACTIONS(656), - [anon_sym_async] = ACTIONS(654), - [anon_sym_for] = ACTIONS(650), - [anon_sym_in] = ACTIONS(650), - [anon_sym_STAR_STAR] = ACTIONS(686), - [anon_sym_exec] = ACTIONS(654), - [anon_sym_type] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(686), - [anon_sym_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_RBRACE] = ACTIONS(643), - [anon_sym_PLUS] = ACTIONS(296), - [anon_sym_not] = ACTIONS(650), - [anon_sym_and] = ACTIONS(650), - [anon_sym_or] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_SLASH_SLASH] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_TILDE] = ACTIONS(296), - [anon_sym_is] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_LT_EQ] = ACTIONS(643), - [anon_sym_EQ_EQ] = ACTIONS(643), - [anon_sym_BANG_EQ] = ACTIONS(643), - [anon_sym_GT_EQ] = ACTIONS(643), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT_GT] = ACTIONS(643), - [sym_ellipsis] = ACTIONS(302), - [sym_type_conversion] = ACTIONS(643), - [sym_integer] = ACTIONS(304), - [sym_float] = ACTIONS(302), - [anon_sym_await] = ACTIONS(662), - [sym_true] = ACTIONS(304), - [sym_false] = ACTIONS(304), - [sym_none] = ACTIONS(304), + [sym_list_splat_pattern] = STATE(1147), + [sym_primary_expression] = STATE(1040), + [sym_binary_operator] = STATE(1205), + [sym_unary_operator] = STATE(1205), + [sym_attribute] = STATE(1205), + [sym_subscript] = STATE(1205), + [sym_call] = STATE(1205), + [sym_list] = STATE(1205), + [sym_set] = STATE(1205), + [sym_tuple] = STATE(1205), + [sym_dictionary] = STATE(1205), + [sym_list_comprehension] = STATE(1205), + [sym_dictionary_comprehension] = STATE(1205), + [sym_set_comprehension] = STATE(1205), + [sym_generator_expression] = STATE(1205), + [sym_parenthesized_expression] = STATE(1205), + [sym_concatenated_string] = STATE(1205), + [sym_string] = STATE(969), + [sym_await] = STATE(1205), + [sym_identifier] = ACTIONS(674), + [anon_sym_DOT] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(676), + [anon_sym_COMMA] = ACTIONS(262), + [anon_sym_lazy] = ACTIONS(678), + [anon_sym_as] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(680), + [anon_sym_print] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_COLON_EQ] = ACTIONS(279), + [anon_sym_if] = ACTIONS(264), + [anon_sym_COLON] = ACTIONS(264), + [anon_sym_match] = ACTIONS(678), + [anon_sym_async] = ACTIONS(682), + [anon_sym_in] = ACTIONS(264), + [anon_sym_STAR_STAR] = ACTIONS(262), + [anon_sym_exec] = ACTIONS(682), + [anon_sym_type] = ACTIONS(678), + [anon_sym_EQ] = ACTIONS(264), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(686), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(262), + [anon_sym_PLUS] = ACTIONS(686), + [anon_sym_not] = ACTIONS(264), + [anon_sym_and] = ACTIONS(264), + [anon_sym_or] = ACTIONS(264), + [anon_sym_SLASH] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(262), + [anon_sym_SLASH_SLASH] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(686), + [anon_sym_is] = ACTIONS(264), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_LT_EQ] = ACTIONS(262), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_LT_GT] = ACTIONS(262), + [sym_ellipsis] = ACTIONS(690), + [sym_type_conversion] = ACTIONS(262), + [sym_integer] = ACTIONS(674), + [sym_float] = ACTIONS(690), + [anon_sym_await] = ACTIONS(692), + [sym_true] = ACTIONS(674), + [sym_false] = ACTIONS(674), + [sym_none] = ACTIONS(674), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(308), + [sym_string_start] = ACTIONS(694), }, [STATE(158)] = { - [sym_list_splat_pattern] = STATE(1384), - [sym_primary_expression] = STATE(1054), - [sym_binary_operator] = STATE(1367), - [sym_unary_operator] = STATE(1367), - [sym_attribute] = STATE(1367), - [sym_subscript] = STATE(1367), - [sym_call] = STATE(1367), - [sym_list] = STATE(1367), - [sym_set] = STATE(1367), - [sym_tuple] = STATE(1367), - [sym_dictionary] = STATE(1367), - [sym_list_comprehension] = STATE(1367), - [sym_dictionary_comprehension] = STATE(1367), - [sym_set_comprehension] = STATE(1367), - [sym_generator_expression] = STATE(1367), - [sym_parenthesized_expression] = STATE(1367), - [sym_concatenated_string] = STATE(1367), - [sym_string] = STATE(993), - [sym_await] = STATE(1367), - [sym_identifier] = ACTIONS(689), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(691), - [anon_sym_RPAREN] = ACTIONS(257), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_print] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_match] = ACTIONS(697), - [anon_sym_async] = ACTIONS(695), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(695), - [anon_sym_type] = ACTIONS(697), - [anon_sym_EQ] = ACTIONS(259), - [anon_sym_LBRACK] = ACTIONS(699), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(705), - [sym_integer] = ACTIONS(689), - [sym_float] = ACTIONS(705), - [anon_sym_await] = ACTIONS(707), - [sym_true] = ACTIONS(689), - [sym_false] = ACTIONS(689), - [sym_none] = ACTIONS(689), + [sym_list_splat_pattern] = STATE(1361), + [sym_primary_expression] = STATE(1126), + [sym_binary_operator] = STATE(1422), + [sym_unary_operator] = STATE(1422), + [sym_attribute] = STATE(1422), + [sym_subscript] = STATE(1422), + [sym_call] = STATE(1422), + [sym_list] = STATE(1422), + [sym_set] = STATE(1422), + [sym_tuple] = STATE(1422), + [sym_dictionary] = STATE(1422), + [sym_list_comprehension] = STATE(1422), + [sym_dictionary_comprehension] = STATE(1422), + [sym_set_comprehension] = STATE(1422), + [sym_generator_expression] = STATE(1422), + [sym_parenthesized_expression] = STATE(1422), + [sym_concatenated_string] = STATE(1422), + [sym_string] = STATE(1032), + [sym_await] = STATE(1422), + [sym_identifier] = ACTIONS(309), + [anon_sym_DOT] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(262), + [anon_sym_lazy] = ACTIONS(657), + [anon_sym_as] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(661), + [anon_sym_print] = ACTIONS(663), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_COLON_EQ] = ACTIONS(279), + [anon_sym_if] = ACTIONS(264), + [anon_sym_COLON] = ACTIONS(264), + [anon_sym_else] = ACTIONS(264), + [anon_sym_match] = ACTIONS(657), + [anon_sym_async] = ACTIONS(663), + [anon_sym_in] = ACTIONS(264), + [anon_sym_STAR_STAR] = ACTIONS(262), + [anon_sym_exec] = ACTIONS(663), + [anon_sym_type] = ACTIONS(657), + [anon_sym_EQ] = ACTIONS(264), + [anon_sym_LBRACK] = ACTIONS(665), + [anon_sym_AT] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(301), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_LBRACE] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(301), + [anon_sym_not] = ACTIONS(264), + [anon_sym_and] = ACTIONS(264), + [anon_sym_or] = ACTIONS(264), + [anon_sym_SLASH] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(262), + [anon_sym_SLASH_SLASH] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(301), + [anon_sym_is] = ACTIONS(264), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_LT_EQ] = ACTIONS(262), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_LT_GT] = ACTIONS(262), + [sym_ellipsis] = ACTIONS(307), + [sym_integer] = ACTIONS(309), + [sym_float] = ACTIONS(307), + [anon_sym_await] = ACTIONS(669), + [sym_true] = ACTIONS(309), + [sym_false] = ACTIONS(309), + [sym_none] = ACTIONS(309), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(709), + [sym_string_start] = ACTIONS(313), }, [STATE(159)] = { [sym_list_splat_pattern] = STATE(1147), - [sym_primary_expression] = STATE(1024), - [sym_binary_operator] = STATE(1265), - [sym_unary_operator] = STATE(1265), - [sym_attribute] = STATE(1265), - [sym_subscript] = STATE(1265), - [sym_call] = STATE(1265), - [sym_list] = STATE(1265), - [sym_set] = STATE(1265), - [sym_tuple] = STATE(1265), - [sym_dictionary] = STATE(1265), - [sym_list_comprehension] = STATE(1265), - [sym_dictionary_comprehension] = STATE(1265), - [sym_set_comprehension] = STATE(1265), - [sym_generator_expression] = STATE(1265), - [sym_parenthesized_expression] = STATE(1265), - [sym_concatenated_string] = STATE(1265), - [sym_string] = STATE(981), - [sym_await] = STATE(1265), - [sym_identifier] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(668), - [anon_sym_print] = ACTIONS(670), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(257), - [anon_sym_match] = ACTIONS(672), - [anon_sym_async] = ACTIONS(670), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(670), - [anon_sym_type] = ACTIONS(672), - [anon_sym_EQ] = ACTIONS(259), - [anon_sym_LBRACK] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(257), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(676), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(680), - [sym_type_conversion] = ACTIONS(257), - [sym_integer] = ACTIONS(664), - [sym_float] = ACTIONS(680), - [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(664), - [sym_false] = ACTIONS(664), - [sym_none] = ACTIONS(664), + [sym_primary_expression] = STATE(1040), + [sym_binary_operator] = STATE(1205), + [sym_unary_operator] = STATE(1205), + [sym_attribute] = STATE(1205), + [sym_subscript] = STATE(1205), + [sym_call] = STATE(1205), + [sym_list] = STATE(1205), + [sym_set] = STATE(1205), + [sym_tuple] = STATE(1205), + [sym_dictionary] = STATE(1205), + [sym_list_comprehension] = STATE(1205), + [sym_dictionary_comprehension] = STATE(1205), + [sym_set_comprehension] = STATE(1205), + [sym_generator_expression] = STATE(1205), + [sym_parenthesized_expression] = STATE(1205), + [sym_concatenated_string] = STATE(1205), + [sym_string] = STATE(969), + [sym_await] = STATE(1205), + [sym_identifier] = ACTIONS(674), + [anon_sym_DOT] = ACTIONS(652), + [anon_sym_LPAREN] = ACTIONS(676), + [anon_sym_COMMA] = ACTIONS(671), + [anon_sym_lazy] = ACTIONS(678), + [anon_sym_as] = ACTIONS(652), + [anon_sym_STAR] = ACTIONS(680), + [anon_sym_print] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_COLON_EQ] = ACTIONS(279), + [anon_sym_if] = ACTIONS(652), + [anon_sym_COLON] = ACTIONS(659), + [anon_sym_match] = ACTIONS(678), + [anon_sym_async] = ACTIONS(682), + [anon_sym_for] = ACTIONS(659), + [anon_sym_in] = ACTIONS(652), + [anon_sym_STAR_STAR] = ACTIONS(671), + [anon_sym_exec] = ACTIONS(682), + [anon_sym_type] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(686), + [anon_sym_PIPE] = ACTIONS(671), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(671), + [anon_sym_PLUS] = ACTIONS(686), + [anon_sym_not] = ACTIONS(652), + [anon_sym_and] = ACTIONS(652), + [anon_sym_or] = ACTIONS(652), + [anon_sym_SLASH] = ACTIONS(652), + [anon_sym_PERCENT] = ACTIONS(671), + [anon_sym_SLASH_SLASH] = ACTIONS(671), + [anon_sym_AMP] = ACTIONS(671), + [anon_sym_CARET] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_TILDE] = ACTIONS(686), + [anon_sym_is] = ACTIONS(652), + [anon_sym_LT] = ACTIONS(652), + [anon_sym_LT_EQ] = ACTIONS(671), + [anon_sym_EQ_EQ] = ACTIONS(671), + [anon_sym_BANG_EQ] = ACTIONS(671), + [anon_sym_GT_EQ] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(652), + [anon_sym_LT_GT] = ACTIONS(671), + [sym_ellipsis] = ACTIONS(690), + [sym_integer] = ACTIONS(674), + [sym_float] = ACTIONS(690), + [anon_sym_await] = ACTIONS(692), + [sym_true] = ACTIONS(674), + [sym_false] = ACTIONS(674), + [sym_none] = ACTIONS(674), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(684), + [sym_string_start] = ACTIONS(694), }, [STATE(160)] = { - [sym_list_splat_pattern] = STATE(1416), - [sym_primary_expression] = STATE(1124), - [sym_binary_operator] = STATE(1348), - [sym_unary_operator] = STATE(1348), - [sym_attribute] = STATE(1348), - [sym_subscript] = STATE(1348), - [sym_call] = STATE(1348), - [sym_list] = STATE(1348), - [sym_set] = STATE(1348), - [sym_tuple] = STATE(1348), - [sym_dictionary] = STATE(1348), - [sym_list_comprehension] = STATE(1348), - [sym_dictionary_comprehension] = STATE(1348), - [sym_set_comprehension] = STATE(1348), - [sym_generator_expression] = STATE(1348), - [sym_parenthesized_expression] = STATE(1348), - [sym_concatenated_string] = STATE(1348), - [sym_string] = STATE(1017), - [sym_await] = STATE(1348), - [sym_identifier] = ACTIONS(304), - [anon_sym_DOT] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_RPAREN] = ACTIONS(643), - [anon_sym_COMMA] = ACTIONS(643), - [anon_sym_as] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_print] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_if] = ACTIONS(650), - [anon_sym_COLON] = ACTIONS(643), - [anon_sym_match] = ACTIONS(656), - [anon_sym_async] = ACTIONS(654), - [anon_sym_for] = ACTIONS(650), - [anon_sym_in] = ACTIONS(650), - [anon_sym_STAR_STAR] = ACTIONS(686), - [anon_sym_exec] = ACTIONS(654), - [anon_sym_type] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(686), - [anon_sym_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(296), - [anon_sym_not] = ACTIONS(650), - [anon_sym_and] = ACTIONS(650), - [anon_sym_or] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_SLASH_SLASH] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_TILDE] = ACTIONS(296), - [anon_sym_is] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_LT_EQ] = ACTIONS(643), - [anon_sym_EQ_EQ] = ACTIONS(643), - [anon_sym_BANG_EQ] = ACTIONS(643), - [anon_sym_GT_EQ] = ACTIONS(643), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT_GT] = ACTIONS(643), - [sym_ellipsis] = ACTIONS(302), - [sym_integer] = ACTIONS(304), - [sym_float] = ACTIONS(302), - [anon_sym_await] = ACTIONS(662), - [sym_true] = ACTIONS(304), - [sym_false] = ACTIONS(304), - [sym_none] = ACTIONS(304), + [sym_list_splat_pattern] = STATE(1275), + [sym_primary_expression] = STATE(1005), + [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(972), + [sym_await] = STATE(1258), + [sym_identifier] = ACTIONS(696), + [anon_sym_DOT] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(698), + [anon_sym_COMMA] = ACTIONS(262), + [anon_sym_lazy] = ACTIONS(700), + [anon_sym_as] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(702), + [anon_sym_print] = ACTIONS(704), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_COLON_EQ] = ACTIONS(279), + [anon_sym_if] = ACTIONS(264), + [anon_sym_COLON] = ACTIONS(264), + [anon_sym_match] = ACTIONS(700), + [anon_sym_async] = ACTIONS(704), + [anon_sym_for] = ACTIONS(264), + [anon_sym_in] = ACTIONS(264), + [anon_sym_STAR_STAR] = ACTIONS(262), + [anon_sym_exec] = ACTIONS(704), + [anon_sym_type] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(708), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_RBRACE] = ACTIONS(262), + [anon_sym_PLUS] = ACTIONS(708), + [anon_sym_not] = ACTIONS(264), + [anon_sym_and] = ACTIONS(264), + [anon_sym_or] = ACTIONS(264), + [anon_sym_SLASH] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(262), + [anon_sym_SLASH_SLASH] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(708), + [anon_sym_is] = ACTIONS(264), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_LT_EQ] = ACTIONS(262), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_LT_GT] = ACTIONS(262), + [sym_ellipsis] = ACTIONS(712), + [sym_integer] = ACTIONS(696), + [sym_float] = ACTIONS(712), + [anon_sym_await] = ACTIONS(714), + [sym_true] = ACTIONS(696), + [sym_false] = ACTIONS(696), + [sym_none] = ACTIONS(696), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(308), + [sym_string_start] = ACTIONS(716), }, [STATE(161)] = { - [sym_list_splat_pattern] = STATE(1268), - [sym_primary_expression] = STATE(1030), - [sym_binary_operator] = STATE(1151), - [sym_unary_operator] = STATE(1151), - [sym_attribute] = STATE(1151), - [sym_subscript] = STATE(1151), - [sym_call] = STATE(1151), - [sym_list] = STATE(1151), - [sym_set] = STATE(1151), - [sym_tuple] = STATE(1151), - [sym_dictionary] = STATE(1151), - [sym_list_comprehension] = STATE(1151), - [sym_dictionary_comprehension] = STATE(1151), - [sym_set_comprehension] = STATE(1151), - [sym_generator_expression] = STATE(1151), - [sym_parenthesized_expression] = STATE(1151), - [sym_concatenated_string] = STATE(1151), - [sym_string] = STATE(969), - [sym_await] = STATE(1151), - [sym_identifier] = ACTIONS(711), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_print] = ACTIONS(717), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_match] = ACTIONS(719), - [anon_sym_async] = ACTIONS(717), - [anon_sym_for] = ACTIONS(259), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(717), - [anon_sym_type] = ACTIONS(719), - [anon_sym_LBRACK] = ACTIONS(721), - [anon_sym_RBRACK] = ACTIONS(257), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(723), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(725), - [anon_sym_PLUS] = ACTIONS(723), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(723), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(727), - [sym_integer] = ACTIONS(711), - [sym_float] = ACTIONS(727), - [anon_sym_await] = ACTIONS(729), - [sym_true] = ACTIONS(711), - [sym_false] = ACTIONS(711), - [sym_none] = ACTIONS(711), + [sym_list_splat_pattern] = STATE(1370), + [sym_primary_expression] = STATE(1127), + [sym_binary_operator] = STATE(1377), + [sym_unary_operator] = STATE(1377), + [sym_attribute] = STATE(1377), + [sym_subscript] = STATE(1377), + [sym_call] = STATE(1377), + [sym_list] = STATE(1377), + [sym_set] = STATE(1377), + [sym_tuple] = STATE(1377), + [sym_dictionary] = STATE(1377), + [sym_list_comprehension] = STATE(1377), + [sym_dictionary_comprehension] = STATE(1377), + [sym_set_comprehension] = STATE(1377), + [sym_generator_expression] = STATE(1377), + [sym_parenthesized_expression] = STATE(1377), + [sym_concatenated_string] = STATE(1377), + [sym_string] = STATE(1035), + [sym_await] = STATE(1377), + [sym_identifier] = ACTIONS(718), + [anon_sym_DOT] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(720), + [anon_sym_RPAREN] = ACTIONS(262), + [anon_sym_COMMA] = ACTIONS(262), + [anon_sym_lazy] = ACTIONS(722), + [anon_sym_as] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(724), + [anon_sym_print] = ACTIONS(726), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_COLON_EQ] = ACTIONS(279), + [anon_sym_if] = ACTIONS(264), + [anon_sym_match] = ACTIONS(722), + [anon_sym_async] = ACTIONS(726), + [anon_sym_for] = ACTIONS(264), + [anon_sym_in] = ACTIONS(264), + [anon_sym_STAR_STAR] = ACTIONS(262), + [anon_sym_exec] = ACTIONS(726), + [anon_sym_type] = ACTIONS(722), + [anon_sym_EQ] = ACTIONS(728), + [anon_sym_LBRACK] = ACTIONS(730), + [anon_sym_AT] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(732), + [anon_sym_not] = ACTIONS(264), + [anon_sym_and] = ACTIONS(264), + [anon_sym_or] = ACTIONS(264), + [anon_sym_SLASH] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(262), + [anon_sym_SLASH_SLASH] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_is] = ACTIONS(264), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_LT_EQ] = ACTIONS(262), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_LT_GT] = ACTIONS(262), + [sym_ellipsis] = ACTIONS(736), + [sym_integer] = ACTIONS(718), + [sym_float] = ACTIONS(736), + [anon_sym_await] = ACTIONS(738), + [sym_true] = ACTIONS(718), + [sym_false] = ACTIONS(718), + [sym_none] = ACTIONS(718), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(731), + [sym_string_start] = ACTIONS(740), }, [STATE(162)] = { - [sym_list_splat_pattern] = STATE(1416), - [sym_primary_expression] = STATE(1124), - [sym_binary_operator] = STATE(1348), - [sym_unary_operator] = STATE(1348), - [sym_attribute] = STATE(1348), - [sym_subscript] = STATE(1348), - [sym_call] = STATE(1348), - [sym_list] = STATE(1348), - [sym_set] = STATE(1348), - [sym_tuple] = STATE(1348), - [sym_dictionary] = STATE(1348), - [sym_list_comprehension] = STATE(1348), - [sym_dictionary_comprehension] = STATE(1348), - [sym_set_comprehension] = STATE(1348), - [sym_generator_expression] = STATE(1348), - [sym_parenthesized_expression] = STATE(1348), - [sym_concatenated_string] = STATE(1348), - [sym_string] = STATE(1017), - [sym_await] = STATE(1348), - [sym_identifier] = ACTIONS(304), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_print] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_else] = ACTIONS(259), - [anon_sym_match] = ACTIONS(656), - [anon_sym_async] = ACTIONS(654), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(654), - [anon_sym_type] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(259), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(296), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(296), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(302), - [sym_integer] = ACTIONS(304), - [sym_float] = ACTIONS(302), - [anon_sym_await] = ACTIONS(662), - [sym_true] = ACTIONS(304), - [sym_false] = ACTIONS(304), - [sym_none] = ACTIONS(304), + [sym_list_splat_pattern] = STATE(1325), + [sym_primary_expression] = STATE(1055), + [sym_binary_operator] = STATE(1349), + [sym_unary_operator] = STATE(1349), + [sym_attribute] = STATE(1349), + [sym_subscript] = STATE(1349), + [sym_call] = STATE(1349), + [sym_list] = STATE(1349), + [sym_set] = STATE(1349), + [sym_tuple] = STATE(1349), + [sym_dictionary] = STATE(1349), + [sym_list_comprehension] = STATE(1349), + [sym_dictionary_comprehension] = STATE(1349), + [sym_set_comprehension] = STATE(1349), + [sym_generator_expression] = STATE(1349), + [sym_parenthesized_expression] = STATE(1349), + [sym_concatenated_string] = STATE(1349), + [sym_string] = STATE(1043), + [sym_await] = STATE(1349), + [sym_identifier] = ACTIONS(742), + [anon_sym_DOT] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(744), + [anon_sym_RPAREN] = ACTIONS(262), + [anon_sym_COMMA] = ACTIONS(262), + [anon_sym_lazy] = ACTIONS(746), + [anon_sym_as] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(748), + [anon_sym_print] = ACTIONS(750), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_COLON_EQ] = ACTIONS(279), + [anon_sym_if] = ACTIONS(264), + [anon_sym_COLON] = ACTIONS(264), + [anon_sym_match] = ACTIONS(746), + [anon_sym_async] = ACTIONS(750), + [anon_sym_in] = ACTIONS(264), + [anon_sym_STAR_STAR] = ACTIONS(262), + [anon_sym_exec] = ACTIONS(750), + [anon_sym_type] = ACTIONS(746), + [anon_sym_EQ] = ACTIONS(264), + [anon_sym_LBRACK] = ACTIONS(752), + [anon_sym_AT] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(754), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(754), + [anon_sym_not] = ACTIONS(264), + [anon_sym_and] = ACTIONS(264), + [anon_sym_or] = ACTIONS(264), + [anon_sym_SLASH] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(262), + [anon_sym_SLASH_SLASH] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(754), + [anon_sym_is] = ACTIONS(264), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_LT_EQ] = ACTIONS(262), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_LT_GT] = ACTIONS(262), + [sym_ellipsis] = ACTIONS(758), + [sym_integer] = ACTIONS(742), + [sym_float] = ACTIONS(758), + [anon_sym_await] = ACTIONS(760), + [sym_true] = ACTIONS(742), + [sym_false] = ACTIONS(742), + [sym_none] = ACTIONS(742), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(308), + [sym_string_start] = ACTIONS(762), }, [STATE(163)] = { - [sym_list_splat_pattern] = STATE(1231), - [sym_primary_expression] = STATE(1021), - [sym_binary_operator] = STATE(1206), - [sym_unary_operator] = STATE(1206), - [sym_attribute] = STATE(1206), - [sym_subscript] = STATE(1206), - [sym_call] = STATE(1206), - [sym_list] = STATE(1206), - [sym_set] = STATE(1206), - [sym_tuple] = STATE(1206), - [sym_dictionary] = STATE(1206), - [sym_list_comprehension] = STATE(1206), - [sym_dictionary_comprehension] = STATE(1206), - [sym_set_comprehension] = STATE(1206), - [sym_generator_expression] = STATE(1206), - [sym_parenthesized_expression] = STATE(1206), - [sym_concatenated_string] = STATE(1206), - [sym_string] = STATE(973), - [sym_await] = STATE(1206), - [sym_identifier] = ACTIONS(733), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(737), - [anon_sym_print] = ACTIONS(739), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_match] = ACTIONS(741), - [anon_sym_async] = ACTIONS(739), - [anon_sym_for] = ACTIONS(259), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(739), - [anon_sym_type] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(257), - [anon_sym_PLUS] = ACTIONS(745), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(745), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(749), - [sym_integer] = ACTIONS(733), - [sym_float] = ACTIONS(749), - [anon_sym_await] = ACTIONS(751), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_none] = ACTIONS(733), + [sym_list_splat_pattern] = STATE(1147), + [sym_primary_expression] = STATE(1040), + [sym_binary_operator] = STATE(1205), + [sym_unary_operator] = STATE(1205), + [sym_attribute] = STATE(1205), + [sym_subscript] = STATE(1205), + [sym_call] = STATE(1205), + [sym_list] = STATE(1205), + [sym_set] = STATE(1205), + [sym_tuple] = STATE(1205), + [sym_dictionary] = STATE(1205), + [sym_list_comprehension] = STATE(1205), + [sym_dictionary_comprehension] = STATE(1205), + [sym_set_comprehension] = STATE(1205), + [sym_generator_expression] = STATE(1205), + [sym_parenthesized_expression] = STATE(1205), + [sym_concatenated_string] = STATE(1205), + [sym_string] = STATE(969), + [sym_await] = STATE(1205), + [sym_identifier] = ACTIONS(674), + [anon_sym_DOT] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(676), + [anon_sym_COMMA] = ACTIONS(262), + [anon_sym_lazy] = ACTIONS(678), + [anon_sym_as] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(680), + [anon_sym_print] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_if] = ACTIONS(264), + [anon_sym_COLON] = ACTIONS(262), + [anon_sym_match] = ACTIONS(678), + [anon_sym_async] = ACTIONS(682), + [anon_sym_in] = ACTIONS(264), + [anon_sym_STAR_STAR] = ACTIONS(262), + [anon_sym_exec] = ACTIONS(682), + [anon_sym_type] = ACTIONS(678), + [anon_sym_EQ] = ACTIONS(264), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(686), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(262), + [anon_sym_PLUS] = ACTIONS(686), + [anon_sym_not] = ACTIONS(264), + [anon_sym_and] = ACTIONS(264), + [anon_sym_or] = ACTIONS(264), + [anon_sym_SLASH] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(262), + [anon_sym_SLASH_SLASH] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(686), + [anon_sym_is] = ACTIONS(264), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_LT_EQ] = ACTIONS(262), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_LT_GT] = ACTIONS(262), + [sym_ellipsis] = ACTIONS(690), + [sym_type_conversion] = ACTIONS(262), + [sym_integer] = ACTIONS(674), + [sym_float] = ACTIONS(690), + [anon_sym_await] = ACTIONS(692), + [sym_true] = ACTIONS(674), + [sym_false] = ACTIONS(674), + [sym_none] = ACTIONS(674), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(753), + [sym_string_start] = ACTIONS(694), }, [STATE(164)] = { - [sym_list_splat_pattern] = STATE(1147), - [sym_primary_expression] = STATE(1024), - [sym_binary_operator] = STATE(1265), - [sym_unary_operator] = STATE(1265), - [sym_attribute] = STATE(1265), - [sym_subscript] = STATE(1265), - [sym_call] = STATE(1265), - [sym_list] = STATE(1265), - [sym_set] = STATE(1265), - [sym_tuple] = STATE(1265), - [sym_dictionary] = STATE(1265), - [sym_list_comprehension] = STATE(1265), - [sym_dictionary_comprehension] = STATE(1265), - [sym_set_comprehension] = STATE(1265), - [sym_generator_expression] = STATE(1265), - [sym_parenthesized_expression] = STATE(1265), - [sym_concatenated_string] = STATE(1265), - [sym_string] = STATE(981), - [sym_await] = STATE(1265), - [sym_identifier] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(686), - [anon_sym_as] = ACTIONS(645), - [anon_sym_STAR] = ACTIONS(668), - [anon_sym_print] = ACTIONS(670), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(645), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_match] = ACTIONS(672), - [anon_sym_async] = ACTIONS(670), - [anon_sym_for] = ACTIONS(650), - [anon_sym_in] = ACTIONS(645), - [anon_sym_STAR_STAR] = ACTIONS(686), - [anon_sym_exec] = ACTIONS(670), - [anon_sym_type] = ACTIONS(672), - [anon_sym_LBRACK] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(686), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(686), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_not] = ACTIONS(645), - [anon_sym_and] = ACTIONS(645), - [anon_sym_or] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_SLASH_SLASH] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_TILDE] = ACTIONS(676), - [anon_sym_is] = ACTIONS(645), - [anon_sym_LT] = ACTIONS(645), - [anon_sym_LT_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(686), - [anon_sym_BANG_EQ] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(686), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_LT_GT] = ACTIONS(686), - [sym_ellipsis] = ACTIONS(680), - [sym_integer] = ACTIONS(664), - [sym_float] = ACTIONS(680), - [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(664), - [sym_false] = ACTIONS(664), - [sym_none] = ACTIONS(664), + [sym_list_splat_pattern] = STATE(1431), + [sym_primary_expression] = STATE(1149), + [sym_binary_operator] = STATE(1424), + [sym_unary_operator] = STATE(1424), + [sym_attribute] = STATE(1424), + [sym_subscript] = STATE(1424), + [sym_call] = STATE(1424), + [sym_list] = STATE(1424), + [sym_set] = STATE(1424), + [sym_tuple] = STATE(1424), + [sym_dictionary] = STATE(1424), + [sym_list_comprehension] = STATE(1424), + [sym_dictionary_comprehension] = STATE(1424), + [sym_set_comprehension] = STATE(1424), + [sym_generator_expression] = STATE(1424), + [sym_parenthesized_expression] = STATE(1424), + [sym_concatenated_string] = STATE(1424), + [sym_string] = STATE(1131), + [sym_await] = STATE(1424), + [sym_identifier] = ACTIONS(764), + [anon_sym_DOT] = ACTIONS(652), + [anon_sym_LPAREN] = ACTIONS(766), + [anon_sym_COMMA] = ACTIONS(671), + [anon_sym_lazy] = ACTIONS(768), + [anon_sym_as] = ACTIONS(652), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_print] = ACTIONS(772), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_COLON_EQ] = ACTIONS(279), + [anon_sym_if] = ACTIONS(652), + [anon_sym_COLON] = ACTIONS(659), + [anon_sym_match] = ACTIONS(768), + [anon_sym_async] = ACTIONS(772), + [anon_sym_for] = ACTIONS(659), + [anon_sym_in] = ACTIONS(652), + [anon_sym_STAR_STAR] = ACTIONS(671), + [anon_sym_exec] = ACTIONS(772), + [anon_sym_type] = ACTIONS(768), + [anon_sym_LBRACK] = ACTIONS(774), + [anon_sym_RBRACK] = ACTIONS(671), + [anon_sym_AT] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(776), + [anon_sym_PIPE] = ACTIONS(671), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_PLUS] = ACTIONS(776), + [anon_sym_not] = ACTIONS(652), + [anon_sym_and] = ACTIONS(652), + [anon_sym_or] = ACTIONS(652), + [anon_sym_SLASH] = ACTIONS(652), + [anon_sym_PERCENT] = ACTIONS(671), + [anon_sym_SLASH_SLASH] = ACTIONS(671), + [anon_sym_AMP] = ACTIONS(671), + [anon_sym_CARET] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_TILDE] = ACTIONS(776), + [anon_sym_is] = ACTIONS(652), + [anon_sym_LT] = ACTIONS(652), + [anon_sym_LT_EQ] = ACTIONS(671), + [anon_sym_EQ_EQ] = ACTIONS(671), + [anon_sym_BANG_EQ] = ACTIONS(671), + [anon_sym_GT_EQ] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(652), + [anon_sym_LT_GT] = ACTIONS(671), + [sym_ellipsis] = ACTIONS(780), + [sym_integer] = ACTIONS(764), + [sym_float] = ACTIONS(780), + [anon_sym_await] = ACTIONS(782), + [sym_true] = ACTIONS(764), + [sym_false] = ACTIONS(764), + [sym_none] = ACTIONS(764), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(684), + [sym_string_start] = ACTIONS(784), }, [STATE(165)] = { - [sym_list_splat_pattern] = STATE(1337), - [sym_primary_expression] = STATE(1127), - [sym_binary_operator] = STATE(1334), - [sym_unary_operator] = STATE(1334), - [sym_attribute] = STATE(1334), - [sym_subscript] = STATE(1334), - [sym_call] = STATE(1334), - [sym_list] = STATE(1334), - [sym_set] = STATE(1334), - [sym_tuple] = STATE(1334), - [sym_dictionary] = STATE(1334), - [sym_list_comprehension] = STATE(1334), - [sym_dictionary_comprehension] = STATE(1334), - [sym_set_comprehension] = STATE(1334), - [sym_generator_expression] = STATE(1334), - [sym_parenthesized_expression] = STATE(1334), - [sym_concatenated_string] = STATE(1334), - [sym_string] = STATE(1012), - [sym_await] = STATE(1334), - [sym_identifier] = ACTIONS(755), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_RPAREN] = ACTIONS(257), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_print] = ACTIONS(761), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_match] = ACTIONS(763), - [anon_sym_async] = ACTIONS(761), - [anon_sym_for] = ACTIONS(259), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(761), - [anon_sym_type] = ACTIONS(763), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_PLUS] = ACTIONS(769), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(769), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(773), - [sym_integer] = ACTIONS(755), - [sym_float] = ACTIONS(773), - [anon_sym_await] = ACTIONS(775), - [sym_true] = ACTIONS(755), - [sym_false] = ACTIONS(755), - [sym_none] = ACTIONS(755), + [sym_list_splat_pattern] = STATE(1208), + [sym_primary_expression] = STATE(1028), + [sym_binary_operator] = STATE(1184), + [sym_unary_operator] = STATE(1184), + [sym_attribute] = STATE(1184), + [sym_subscript] = STATE(1184), + [sym_call] = STATE(1184), + [sym_list] = STATE(1184), + [sym_set] = STATE(1184), + [sym_tuple] = STATE(1184), + [sym_dictionary] = STATE(1184), + [sym_list_comprehension] = STATE(1184), + [sym_dictionary_comprehension] = STATE(1184), + [sym_set_comprehension] = STATE(1184), + [sym_generator_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_concatenated_string] = STATE(1184), + [sym_string] = STATE(974), + [sym_await] = STATE(1184), + [sym_identifier] = ACTIONS(786), + [anon_sym_DOT] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(788), + [anon_sym_COMMA] = ACTIONS(262), + [anon_sym_lazy] = ACTIONS(790), + [anon_sym_as] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(792), + [anon_sym_print] = ACTIONS(794), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_COLON_EQ] = ACTIONS(279), + [anon_sym_if] = ACTIONS(264), + [anon_sym_COLON] = ACTIONS(264), + [anon_sym_match] = ACTIONS(790), + [anon_sym_async] = ACTIONS(794), + [anon_sym_for] = ACTIONS(264), + [anon_sym_in] = ACTIONS(264), + [anon_sym_STAR_STAR] = ACTIONS(262), + [anon_sym_exec] = ACTIONS(794), + [anon_sym_type] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(796), + [anon_sym_RBRACK] = ACTIONS(262), + [anon_sym_AT] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_not] = ACTIONS(264), + [anon_sym_and] = ACTIONS(264), + [anon_sym_or] = ACTIONS(264), + [anon_sym_SLASH] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(262), + [anon_sym_SLASH_SLASH] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(798), + [anon_sym_is] = ACTIONS(264), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_LT_EQ] = ACTIONS(262), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_LT_GT] = ACTIONS(262), + [sym_ellipsis] = ACTIONS(802), + [sym_integer] = ACTIONS(786), + [sym_float] = ACTIONS(802), + [anon_sym_await] = ACTIONS(804), + [sym_true] = ACTIONS(786), + [sym_false] = ACTIONS(786), + [sym_none] = ACTIONS(786), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(777), + [sym_string_start] = ACTIONS(806), }, [STATE(166)] = { - [sym_list_splat_pattern] = STATE(1436), - [sym_primary_expression] = STATE(1149), - [sym_binary_operator] = STATE(1439), - [sym_unary_operator] = STATE(1439), - [sym_attribute] = STATE(1439), - [sym_subscript] = STATE(1439), - [sym_call] = STATE(1439), - [sym_list] = STATE(1439), - [sym_set] = STATE(1439), - [sym_tuple] = STATE(1439), - [sym_dictionary] = STATE(1439), - [sym_list_comprehension] = STATE(1439), - [sym_dictionary_comprehension] = STATE(1439), - [sym_set_comprehension] = STATE(1439), - [sym_generator_expression] = STATE(1439), - [sym_parenthesized_expression] = STATE(1439), - [sym_concatenated_string] = STATE(1439), - [sym_string] = STATE(1068), - [sym_await] = STATE(1439), - [sym_identifier] = ACTIONS(779), - [anon_sym_DOT] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(781), - [anon_sym_COMMA] = ACTIONS(686), - [anon_sym_as] = ACTIONS(645), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_print] = ACTIONS(785), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(645), + [sym_list_splat_pattern] = STATE(1361), + [sym_primary_expression] = STATE(1126), + [sym_binary_operator] = STATE(1422), + [sym_unary_operator] = STATE(1422), + [sym_attribute] = STATE(1422), + [sym_subscript] = STATE(1422), + [sym_call] = STATE(1422), + [sym_list] = STATE(1422), + [sym_set] = STATE(1422), + [sym_tuple] = STATE(1422), + [sym_dictionary] = STATE(1422), + [sym_list_comprehension] = STATE(1422), + [sym_dictionary_comprehension] = STATE(1422), + [sym_set_comprehension] = STATE(1422), + [sym_generator_expression] = STATE(1422), + [sym_parenthesized_expression] = STATE(1422), + [sym_concatenated_string] = STATE(1422), + [sym_string] = STATE(1032), + [sym_await] = STATE(1422), + [sym_identifier] = ACTIONS(309), + [anon_sym_DOT] = ACTIONS(652), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_RPAREN] = ACTIONS(650), + [anon_sym_COMMA] = ACTIONS(650), + [anon_sym_lazy] = ACTIONS(657), + [anon_sym_as] = ACTIONS(659), + [anon_sym_STAR] = ACTIONS(661), + [anon_sym_print] = ACTIONS(663), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_if] = ACTIONS(659), [anon_sym_COLON] = ACTIONS(650), - [anon_sym_match] = ACTIONS(787), - [anon_sym_async] = ACTIONS(785), - [anon_sym_for] = ACTIONS(650), - [anon_sym_in] = ACTIONS(645), - [anon_sym_STAR_STAR] = ACTIONS(686), - [anon_sym_exec] = ACTIONS(785), - [anon_sym_type] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(789), - [anon_sym_RBRACK] = ACTIONS(686), - [anon_sym_AT] = ACTIONS(686), - [anon_sym_DASH] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_not] = ACTIONS(645), - [anon_sym_and] = ACTIONS(645), - [anon_sym_or] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_SLASH_SLASH] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_TILDE] = ACTIONS(791), - [anon_sym_is] = ACTIONS(645), - [anon_sym_LT] = ACTIONS(645), - [anon_sym_LT_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(686), - [anon_sym_BANG_EQ] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(686), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_LT_GT] = ACTIONS(686), - [sym_ellipsis] = ACTIONS(795), - [sym_integer] = ACTIONS(779), - [sym_float] = ACTIONS(795), - [anon_sym_await] = ACTIONS(797), - [sym_true] = ACTIONS(779), - [sym_false] = ACTIONS(779), - [sym_none] = ACTIONS(779), + [anon_sym_match] = ACTIONS(657), + [anon_sym_async] = ACTIONS(663), + [anon_sym_for] = ACTIONS(659), + [anon_sym_in] = ACTIONS(659), + [anon_sym_STAR_STAR] = ACTIONS(671), + [anon_sym_exec] = ACTIONS(663), + [anon_sym_type] = ACTIONS(657), + [anon_sym_EQ] = ACTIONS(659), + [anon_sym_LBRACK] = ACTIONS(665), + [anon_sym_AT] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(301), + [anon_sym_PIPE] = ACTIONS(671), + [anon_sym_LBRACE] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(301), + [anon_sym_not] = ACTIONS(659), + [anon_sym_and] = ACTIONS(659), + [anon_sym_or] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(652), + [anon_sym_PERCENT] = ACTIONS(671), + [anon_sym_SLASH_SLASH] = ACTIONS(671), + [anon_sym_AMP] = ACTIONS(671), + [anon_sym_CARET] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_TILDE] = ACTIONS(301), + [anon_sym_is] = ACTIONS(659), + [anon_sym_LT] = ACTIONS(659), + [anon_sym_LT_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(650), + [anon_sym_BANG_EQ] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(650), + [anon_sym_GT] = ACTIONS(659), + [anon_sym_LT_GT] = ACTIONS(650), + [sym_ellipsis] = ACTIONS(307), + [sym_integer] = ACTIONS(309), + [sym_float] = ACTIONS(307), + [anon_sym_await] = ACTIONS(669), + [sym_true] = ACTIONS(309), + [sym_false] = ACTIONS(309), + [sym_none] = ACTIONS(309), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(799), + [sym_string_start] = ACTIONS(313), }, [STATE(167)] = { - [sym_list_splat_pattern] = STATE(1416), - [sym_primary_expression] = STATE(1124), - [sym_binary_operator] = STATE(1348), - [sym_unary_operator] = STATE(1348), - [sym_attribute] = STATE(1348), - [sym_subscript] = STATE(1348), - [sym_call] = STATE(1348), - [sym_list] = STATE(1348), - [sym_set] = STATE(1348), - [sym_tuple] = STATE(1348), - [sym_dictionary] = STATE(1348), - [sym_list_comprehension] = STATE(1348), - [sym_dictionary_comprehension] = STATE(1348), - [sym_set_comprehension] = STATE(1348), - [sym_generator_expression] = STATE(1348), - [sym_parenthesized_expression] = STATE(1348), - [sym_concatenated_string] = STATE(1348), - [sym_string] = STATE(1017), - [sym_await] = STATE(1348), - [sym_identifier] = ACTIONS(304), - [anon_sym_DOT] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_COMMA] = ACTIONS(643), - [anon_sym_as] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_print] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_if] = ACTIONS(650), - [anon_sym_COLON] = ACTIONS(643), - [anon_sym_match] = ACTIONS(656), - [anon_sym_async] = ACTIONS(654), - [anon_sym_for] = ACTIONS(650), - [anon_sym_in] = ACTIONS(650), - [anon_sym_STAR_STAR] = ACTIONS(686), - [anon_sym_exec] = ACTIONS(654), - [anon_sym_type] = ACTIONS(656), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_RBRACK] = ACTIONS(643), - [anon_sym_AT] = ACTIONS(686), - [anon_sym_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(296), - [anon_sym_not] = ACTIONS(650), - [anon_sym_and] = ACTIONS(650), - [anon_sym_or] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_SLASH_SLASH] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_TILDE] = ACTIONS(296), - [anon_sym_is] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_LT_EQ] = ACTIONS(643), - [anon_sym_EQ_EQ] = ACTIONS(643), - [anon_sym_BANG_EQ] = ACTIONS(643), - [anon_sym_GT_EQ] = ACTIONS(643), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT_GT] = ACTIONS(643), - [sym_ellipsis] = ACTIONS(302), - [sym_integer] = ACTIONS(304), - [sym_float] = ACTIONS(302), - [anon_sym_await] = ACTIONS(662), - [sym_true] = ACTIONS(304), - [sym_false] = ACTIONS(304), - [sym_none] = ACTIONS(304), + [sym_list_splat_pattern] = STATE(1325), + [sym_primary_expression] = STATE(1055), + [sym_binary_operator] = STATE(1349), + [sym_unary_operator] = STATE(1349), + [sym_attribute] = STATE(1349), + [sym_subscript] = STATE(1349), + [sym_call] = STATE(1349), + [sym_list] = STATE(1349), + [sym_set] = STATE(1349), + [sym_tuple] = STATE(1349), + [sym_dictionary] = STATE(1349), + [sym_list_comprehension] = STATE(1349), + [sym_dictionary_comprehension] = STATE(1349), + [sym_set_comprehension] = STATE(1349), + [sym_generator_expression] = STATE(1349), + [sym_parenthesized_expression] = STATE(1349), + [sym_concatenated_string] = STATE(1349), + [sym_string] = STATE(1043), + [sym_await] = STATE(1349), + [sym_identifier] = ACTIONS(742), + [anon_sym_DOT] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(744), + [anon_sym_RPAREN] = ACTIONS(262), + [anon_sym_COMMA] = ACTIONS(262), + [anon_sym_lazy] = ACTIONS(746), + [anon_sym_as] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(748), + [anon_sym_print] = ACTIONS(750), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_if] = ACTIONS(264), + [anon_sym_COLON] = ACTIONS(262), + [anon_sym_match] = ACTIONS(746), + [anon_sym_async] = ACTIONS(750), + [anon_sym_in] = ACTIONS(264), + [anon_sym_STAR_STAR] = ACTIONS(262), + [anon_sym_exec] = ACTIONS(750), + [anon_sym_type] = ACTIONS(746), + [anon_sym_EQ] = ACTIONS(264), + [anon_sym_LBRACK] = ACTIONS(752), + [anon_sym_AT] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(754), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(754), + [anon_sym_not] = ACTIONS(264), + [anon_sym_and] = ACTIONS(264), + [anon_sym_or] = ACTIONS(264), + [anon_sym_SLASH] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(262), + [anon_sym_SLASH_SLASH] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(754), + [anon_sym_is] = ACTIONS(264), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_LT_EQ] = ACTIONS(262), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_LT_GT] = ACTIONS(262), + [sym_ellipsis] = ACTIONS(758), + [sym_integer] = ACTIONS(742), + [sym_float] = ACTIONS(758), + [anon_sym_await] = ACTIONS(760), + [sym_true] = ACTIONS(742), + [sym_false] = ACTIONS(742), + [sym_none] = ACTIONS(742), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(308), + [sym_string_start] = ACTIONS(762), }, [STATE(168)] = { - [sym_list_splat_pattern] = STATE(1416), - [sym_primary_expression] = STATE(1124), - [sym_binary_operator] = STATE(1348), - [sym_unary_operator] = STATE(1348), - [sym_attribute] = STATE(1348), - [sym_subscript] = STATE(1348), - [sym_call] = STATE(1348), - [sym_list] = STATE(1348), - [sym_set] = STATE(1348), - [sym_tuple] = STATE(1348), - [sym_dictionary] = STATE(1348), - [sym_list_comprehension] = STATE(1348), - [sym_dictionary_comprehension] = STATE(1348), - [sym_set_comprehension] = STATE(1348), - [sym_generator_expression] = STATE(1348), - [sym_parenthesized_expression] = STATE(1348), - [sym_concatenated_string] = STATE(1348), - [sym_string] = STATE(1017), - [sym_await] = STATE(1348), - [sym_identifier] = ACTIONS(304), - [anon_sym_SEMI] = ACTIONS(300), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_COMMA] = ACTIONS(300), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_print] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(300), - [anon_sym_match] = ACTIONS(656), - [anon_sym_async] = ACTIONS(654), - [anon_sym_STAR_STAR] = ACTIONS(259), - [anon_sym_exec] = ACTIONS(654), - [anon_sym_type] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(300), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(259), - [anon_sym_DASH] = ACTIONS(660), - [anon_sym_PIPE] = ACTIONS(259), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(660), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(259), - [anon_sym_SLASH_SLASH] = ACTIONS(259), - [anon_sym_AMP] = ACTIONS(259), - [anon_sym_CARET] = ACTIONS(259), - [anon_sym_LT_LT] = ACTIONS(259), - [anon_sym_TILDE] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(300), - [anon_sym_DASH_EQ] = ACTIONS(300), - [anon_sym_STAR_EQ] = ACTIONS(300), - [anon_sym_SLASH_EQ] = ACTIONS(300), - [anon_sym_AT_EQ] = ACTIONS(300), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(300), - [anon_sym_PERCENT_EQ] = ACTIONS(300), - [anon_sym_STAR_STAR_EQ] = ACTIONS(300), - [anon_sym_GT_GT_EQ] = ACTIONS(300), - [anon_sym_LT_LT_EQ] = ACTIONS(300), - [anon_sym_AMP_EQ] = ACTIONS(300), - [anon_sym_CARET_EQ] = ACTIONS(300), - [anon_sym_PIPE_EQ] = ACTIONS(300), - [sym_ellipsis] = ACTIONS(302), - [sym_integer] = ACTIONS(304), - [sym_float] = ACTIONS(302), - [anon_sym_await] = ACTIONS(662), - [sym_true] = ACTIONS(304), - [sym_false] = ACTIONS(304), - [sym_none] = ACTIONS(304), + [sym_list_splat_pattern] = STATE(1325), + [sym_primary_expression] = STATE(1055), + [sym_binary_operator] = STATE(1349), + [sym_unary_operator] = STATE(1349), + [sym_attribute] = STATE(1349), + [sym_subscript] = STATE(1349), + [sym_call] = STATE(1349), + [sym_list] = STATE(1349), + [sym_set] = STATE(1349), + [sym_tuple] = STATE(1349), + [sym_dictionary] = STATE(1349), + [sym_list_comprehension] = STATE(1349), + [sym_dictionary_comprehension] = STATE(1349), + [sym_set_comprehension] = STATE(1349), + [sym_generator_expression] = STATE(1349), + [sym_parenthesized_expression] = STATE(1349), + [sym_concatenated_string] = STATE(1349), + [sym_string] = STATE(1043), + [sym_await] = STATE(1349), + [sym_identifier] = ACTIONS(742), + [anon_sym_DOT] = ACTIONS(652), + [anon_sym_LPAREN] = ACTIONS(744), + [anon_sym_RPAREN] = ACTIONS(671), + [anon_sym_COMMA] = ACTIONS(671), + [anon_sym_lazy] = ACTIONS(746), + [anon_sym_as] = ACTIONS(652), + [anon_sym_STAR] = ACTIONS(748), + [anon_sym_print] = ACTIONS(750), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_COLON_EQ] = ACTIONS(279), + [anon_sym_if] = ACTIONS(652), + [anon_sym_match] = ACTIONS(746), + [anon_sym_async] = ACTIONS(750), + [anon_sym_for] = ACTIONS(659), + [anon_sym_in] = ACTIONS(652), + [anon_sym_STAR_STAR] = ACTIONS(671), + [anon_sym_exec] = ACTIONS(750), + [anon_sym_type] = ACTIONS(746), + [anon_sym_LBRACK] = ACTIONS(752), + [anon_sym_AT] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(754), + [anon_sym_PIPE] = ACTIONS(671), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(754), + [anon_sym_not] = ACTIONS(652), + [anon_sym_and] = ACTIONS(652), + [anon_sym_or] = ACTIONS(652), + [anon_sym_SLASH] = ACTIONS(652), + [anon_sym_PERCENT] = ACTIONS(671), + [anon_sym_SLASH_SLASH] = ACTIONS(671), + [anon_sym_AMP] = ACTIONS(671), + [anon_sym_CARET] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_TILDE] = ACTIONS(754), + [anon_sym_is] = ACTIONS(652), + [anon_sym_LT] = ACTIONS(652), + [anon_sym_LT_EQ] = ACTIONS(671), + [anon_sym_EQ_EQ] = ACTIONS(671), + [anon_sym_BANG_EQ] = ACTIONS(671), + [anon_sym_GT_EQ] = ACTIONS(671), + [anon_sym_GT] = ACTIONS(652), + [anon_sym_LT_GT] = ACTIONS(671), + [sym_ellipsis] = ACTIONS(758), + [sym_integer] = ACTIONS(742), + [sym_float] = ACTIONS(758), + [anon_sym_await] = ACTIONS(760), + [sym_true] = ACTIONS(742), + [sym_false] = ACTIONS(742), + [sym_none] = ACTIONS(742), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(300), - [sym_string_start] = ACTIONS(308), + [sym_string_start] = ACTIONS(762), }, [STATE(169)] = { - [sym_list_splat_pattern] = STATE(1231), - [sym_primary_expression] = STATE(1021), - [sym_binary_operator] = STATE(1206), - [sym_unary_operator] = STATE(1206), - [sym_attribute] = STATE(1206), - [sym_subscript] = STATE(1206), - [sym_call] = STATE(1206), - [sym_list] = STATE(1206), - [sym_set] = STATE(1206), - [sym_tuple] = STATE(1206), - [sym_dictionary] = STATE(1206), - [sym_list_comprehension] = STATE(1206), - [sym_dictionary_comprehension] = STATE(1206), - [sym_set_comprehension] = STATE(1206), - [sym_generator_expression] = STATE(1206), - [sym_parenthesized_expression] = STATE(1206), - [sym_concatenated_string] = STATE(1206), - [sym_string] = STATE(973), - [sym_await] = STATE(1206), - [sym_identifier] = ACTIONS(733), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(737), - [anon_sym_print] = ACTIONS(739), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(257), - [anon_sym_match] = ACTIONS(741), - [anon_sym_async] = ACTIONS(739), - [anon_sym_for] = ACTIONS(259), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(739), - [anon_sym_type] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(257), - [anon_sym_PLUS] = ACTIONS(745), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(745), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(749), - [sym_integer] = ACTIONS(733), - [sym_float] = ACTIONS(749), - [anon_sym_await] = ACTIONS(751), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_none] = ACTIONS(733), + [sym_list_splat_pattern] = STATE(1208), + [sym_primary_expression] = STATE(1028), + [sym_binary_operator] = STATE(1184), + [sym_unary_operator] = STATE(1184), + [sym_attribute] = STATE(1184), + [sym_subscript] = STATE(1184), + [sym_call] = STATE(1184), + [sym_list] = STATE(1184), + [sym_set] = STATE(1184), + [sym_tuple] = STATE(1184), + [sym_dictionary] = STATE(1184), + [sym_list_comprehension] = STATE(1184), + [sym_dictionary_comprehension] = STATE(1184), + [sym_set_comprehension] = STATE(1184), + [sym_generator_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_concatenated_string] = STATE(1184), + [sym_string] = STATE(974), + [sym_await] = STATE(1184), + [sym_identifier] = ACTIONS(786), + [anon_sym_DOT] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(788), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_lazy] = ACTIONS(790), + [anon_sym_as] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(792), + [anon_sym_print] = ACTIONS(794), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_COLON_EQ] = ACTIONS(279), + [anon_sym_if] = ACTIONS(264), + [anon_sym_match] = ACTIONS(790), + [anon_sym_async] = ACTIONS(794), + [anon_sym_for] = ACTIONS(264), + [anon_sym_in] = ACTIONS(264), + [anon_sym_STAR_STAR] = ACTIONS(262), + [anon_sym_exec] = ACTIONS(794), + [anon_sym_type] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(796), + [anon_sym_RBRACK] = ACTIONS(269), + [anon_sym_AT] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_not] = ACTIONS(264), + [anon_sym_and] = ACTIONS(264), + [anon_sym_or] = ACTIONS(264), + [anon_sym_SLASH] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(262), + [anon_sym_SLASH_SLASH] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(798), + [anon_sym_is] = ACTIONS(264), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_LT_EQ] = ACTIONS(262), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_LT_GT] = ACTIONS(262), + [sym_ellipsis] = ACTIONS(802), + [sym_integer] = ACTIONS(786), + [sym_float] = ACTIONS(802), + [anon_sym_await] = ACTIONS(804), + [sym_true] = ACTIONS(786), + [sym_false] = ACTIONS(786), + [sym_none] = ACTIONS(786), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(753), + [sym_string_start] = ACTIONS(806), }, [STATE(170)] = { - [sym_list_splat_pattern] = STATE(1268), - [sym_primary_expression] = STATE(1030), - [sym_binary_operator] = STATE(1151), - [sym_unary_operator] = STATE(1151), - [sym_attribute] = STATE(1151), - [sym_subscript] = STATE(1151), - [sym_call] = STATE(1151), - [sym_list] = STATE(1151), - [sym_set] = STATE(1151), - [sym_tuple] = STATE(1151), - [sym_dictionary] = STATE(1151), - [sym_list_comprehension] = STATE(1151), - [sym_dictionary_comprehension] = STATE(1151), - [sym_set_comprehension] = STATE(1151), - [sym_generator_expression] = STATE(1151), - [sym_parenthesized_expression] = STATE(1151), - [sym_concatenated_string] = STATE(1151), - [sym_string] = STATE(969), - [sym_await] = STATE(1151), - [sym_identifier] = ACTIONS(711), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_COMMA] = ACTIONS(264), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_print] = ACTIONS(717), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_match] = ACTIONS(719), - [anon_sym_async] = ACTIONS(717), - [anon_sym_for] = ACTIONS(259), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(717), - [anon_sym_type] = ACTIONS(719), - [anon_sym_LBRACK] = ACTIONS(721), - [anon_sym_RBRACK] = ACTIONS(264), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(723), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(725), - [anon_sym_PLUS] = ACTIONS(723), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(723), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(727), - [sym_integer] = ACTIONS(711), - [sym_float] = ACTIONS(727), - [anon_sym_await] = ACTIONS(729), - [sym_true] = ACTIONS(711), - [sym_false] = ACTIONS(711), - [sym_none] = ACTIONS(711), + [sym_list_splat_pattern] = STATE(1370), + [sym_primary_expression] = STATE(1127), + [sym_binary_operator] = STATE(1377), + [sym_unary_operator] = STATE(1377), + [sym_attribute] = STATE(1377), + [sym_subscript] = STATE(1377), + [sym_call] = STATE(1377), + [sym_list] = STATE(1377), + [sym_set] = STATE(1377), + [sym_tuple] = STATE(1377), + [sym_dictionary] = STATE(1377), + [sym_list_comprehension] = STATE(1377), + [sym_dictionary_comprehension] = STATE(1377), + [sym_set_comprehension] = STATE(1377), + [sym_generator_expression] = STATE(1377), + [sym_parenthesized_expression] = STATE(1377), + [sym_concatenated_string] = STATE(1377), + [sym_string] = STATE(1035), + [sym_await] = STATE(1377), + [sym_identifier] = ACTIONS(718), + [anon_sym_DOT] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(720), + [anon_sym_RPAREN] = ACTIONS(262), + [anon_sym_COMMA] = ACTIONS(262), + [anon_sym_lazy] = ACTIONS(722), + [anon_sym_as] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(724), + [anon_sym_print] = ACTIONS(726), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_COLON_EQ] = ACTIONS(279), + [anon_sym_if] = ACTIONS(264), + [anon_sym_match] = ACTIONS(722), + [anon_sym_async] = ACTIONS(726), + [anon_sym_for] = ACTIONS(264), + [anon_sym_in] = ACTIONS(264), + [anon_sym_STAR_STAR] = ACTIONS(262), + [anon_sym_exec] = ACTIONS(726), + [anon_sym_type] = ACTIONS(722), + [anon_sym_LBRACK] = ACTIONS(730), + [anon_sym_AT] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(732), + [anon_sym_not] = ACTIONS(264), + [anon_sym_and] = ACTIONS(264), + [anon_sym_or] = ACTIONS(264), + [anon_sym_SLASH] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(262), + [anon_sym_SLASH_SLASH] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_is] = ACTIONS(264), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_LT_EQ] = ACTIONS(262), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_LT_GT] = ACTIONS(262), + [sym_ellipsis] = ACTIONS(736), + [sym_integer] = ACTIONS(718), + [sym_float] = ACTIONS(736), + [anon_sym_await] = ACTIONS(738), + [sym_true] = ACTIONS(718), + [sym_false] = ACTIONS(718), + [sym_none] = ACTIONS(718), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(731), + [sym_string_start] = ACTIONS(740), }, [STATE(171)] = { - [sym_list_splat_pattern] = STATE(1436), - [sym_primary_expression] = STATE(1149), - [sym_binary_operator] = STATE(1439), - [sym_unary_operator] = STATE(1439), - [sym_attribute] = STATE(1439), - [sym_subscript] = STATE(1439), - [sym_call] = STATE(1439), - [sym_list] = STATE(1439), - [sym_set] = STATE(1439), - [sym_tuple] = STATE(1439), - [sym_dictionary] = STATE(1439), - [sym_list_comprehension] = STATE(1439), - [sym_dictionary_comprehension] = STATE(1439), - [sym_set_comprehension] = STATE(1439), - [sym_generator_expression] = STATE(1439), - [sym_parenthesized_expression] = STATE(1439), - [sym_concatenated_string] = STATE(1439), - [sym_string] = STATE(1068), - [sym_await] = STATE(1439), - [sym_identifier] = ACTIONS(779), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(781), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_print] = ACTIONS(785), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_match] = ACTIONS(787), - [anon_sym_async] = ACTIONS(785), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(785), - [anon_sym_type] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(789), - [anon_sym_RBRACK] = ACTIONS(257), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(791), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(795), - [sym_integer] = ACTIONS(779), - [sym_float] = ACTIONS(795), - [anon_sym_await] = ACTIONS(797), - [sym_true] = ACTIONS(779), - [sym_false] = ACTIONS(779), - [sym_none] = ACTIONS(779), + [sym_list_splat_pattern] = STATE(1208), + [sym_primary_expression] = STATE(1028), + [sym_binary_operator] = STATE(1184), + [sym_unary_operator] = STATE(1184), + [sym_attribute] = STATE(1184), + [sym_subscript] = STATE(1184), + [sym_call] = STATE(1184), + [sym_list] = STATE(1184), + [sym_set] = STATE(1184), + [sym_tuple] = STATE(1184), + [sym_dictionary] = STATE(1184), + [sym_list_comprehension] = STATE(1184), + [sym_dictionary_comprehension] = STATE(1184), + [sym_set_comprehension] = STATE(1184), + [sym_generator_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_concatenated_string] = STATE(1184), + [sym_string] = STATE(974), + [sym_await] = STATE(1184), + [sym_identifier] = ACTIONS(786), + [anon_sym_DOT] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(788), + [anon_sym_COMMA] = ACTIONS(262), + [anon_sym_lazy] = ACTIONS(790), + [anon_sym_as] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(792), + [anon_sym_print] = ACTIONS(794), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_if] = ACTIONS(264), + [anon_sym_COLON] = ACTIONS(262), + [anon_sym_match] = ACTIONS(790), + [anon_sym_async] = ACTIONS(794), + [anon_sym_for] = ACTIONS(264), + [anon_sym_in] = ACTIONS(264), + [anon_sym_STAR_STAR] = ACTIONS(262), + [anon_sym_exec] = ACTIONS(794), + [anon_sym_type] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(796), + [anon_sym_RBRACK] = ACTIONS(262), + [anon_sym_AT] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_not] = ACTIONS(264), + [anon_sym_and] = ACTIONS(264), + [anon_sym_or] = ACTIONS(264), + [anon_sym_SLASH] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(262), + [anon_sym_SLASH_SLASH] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(798), + [anon_sym_is] = ACTIONS(264), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_LT_EQ] = ACTIONS(262), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_LT_GT] = ACTIONS(262), + [sym_ellipsis] = ACTIONS(802), + [sym_integer] = ACTIONS(786), + [sym_float] = ACTIONS(802), + [anon_sym_await] = ACTIONS(804), + [sym_true] = ACTIONS(786), + [sym_false] = ACTIONS(786), + [sym_none] = ACTIONS(786), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(799), + [sym_string_start] = ACTIONS(806), }, [STATE(172)] = { - [sym_list_splat_pattern] = STATE(1384), - [sym_primary_expression] = STATE(1054), - [sym_binary_operator] = STATE(1367), - [sym_unary_operator] = STATE(1367), - [sym_attribute] = STATE(1367), - [sym_subscript] = STATE(1367), - [sym_call] = STATE(1367), - [sym_list] = STATE(1367), - [sym_set] = STATE(1367), - [sym_tuple] = STATE(1367), - [sym_dictionary] = STATE(1367), - [sym_list_comprehension] = STATE(1367), - [sym_dictionary_comprehension] = STATE(1367), - [sym_set_comprehension] = STATE(1367), - [sym_generator_expression] = STATE(1367), - [sym_parenthesized_expression] = STATE(1367), - [sym_concatenated_string] = STATE(1367), - [sym_string] = STATE(993), - [sym_await] = STATE(1367), - [sym_identifier] = ACTIONS(689), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(691), - [anon_sym_RPAREN] = ACTIONS(257), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_print] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(257), - [anon_sym_match] = ACTIONS(697), - [anon_sym_async] = ACTIONS(695), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(695), - [anon_sym_type] = ACTIONS(697), - [anon_sym_EQ] = ACTIONS(259), - [anon_sym_LBRACK] = ACTIONS(699), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(705), - [sym_integer] = ACTIONS(689), - [sym_float] = ACTIONS(705), - [anon_sym_await] = ACTIONS(707), - [sym_true] = ACTIONS(689), - [sym_false] = ACTIONS(689), - [sym_none] = ACTIONS(689), + [sym_list_splat_pattern] = STATE(1361), + [sym_primary_expression] = STATE(1126), + [sym_binary_operator] = STATE(1422), + [sym_unary_operator] = STATE(1422), + [sym_attribute] = STATE(1422), + [sym_subscript] = STATE(1422), + [sym_call] = STATE(1422), + [sym_list] = STATE(1422), + [sym_set] = STATE(1422), + [sym_tuple] = STATE(1422), + [sym_dictionary] = STATE(1422), + [sym_list_comprehension] = STATE(1422), + [sym_dictionary_comprehension] = STATE(1422), + [sym_set_comprehension] = STATE(1422), + [sym_generator_expression] = STATE(1422), + [sym_parenthesized_expression] = STATE(1422), + [sym_concatenated_string] = STATE(1422), + [sym_string] = STATE(1032), + [sym_await] = STATE(1422), + [sym_identifier] = ACTIONS(309), + [anon_sym_DOT] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(262), + [anon_sym_lazy] = ACTIONS(657), + [anon_sym_as] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(661), + [anon_sym_print] = ACTIONS(663), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_if] = ACTIONS(264), + [anon_sym_COLON] = ACTIONS(262), + [anon_sym_else] = ACTIONS(264), + [anon_sym_match] = ACTIONS(657), + [anon_sym_async] = ACTIONS(663), + [anon_sym_in] = ACTIONS(264), + [anon_sym_STAR_STAR] = ACTIONS(262), + [anon_sym_exec] = ACTIONS(663), + [anon_sym_type] = ACTIONS(657), + [anon_sym_EQ] = ACTIONS(264), + [anon_sym_LBRACK] = ACTIONS(665), + [anon_sym_AT] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(301), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_LBRACE] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(301), + [anon_sym_not] = ACTIONS(264), + [anon_sym_and] = ACTIONS(264), + [anon_sym_or] = ACTIONS(264), + [anon_sym_SLASH] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(262), + [anon_sym_SLASH_SLASH] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(301), + [anon_sym_is] = ACTIONS(264), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_LT_EQ] = ACTIONS(262), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_LT_GT] = ACTIONS(262), + [sym_ellipsis] = ACTIONS(307), + [sym_integer] = ACTIONS(309), + [sym_float] = ACTIONS(307), + [anon_sym_await] = ACTIONS(669), + [sym_true] = ACTIONS(309), + [sym_false] = ACTIONS(309), + [sym_none] = ACTIONS(309), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(709), + [sym_string_start] = ACTIONS(313), }, [STATE(173)] = { - [sym_list_splat_pattern] = STATE(1268), - [sym_primary_expression] = STATE(1030), - [sym_binary_operator] = STATE(1151), - [sym_unary_operator] = STATE(1151), - [sym_attribute] = STATE(1151), - [sym_subscript] = STATE(1151), - [sym_call] = STATE(1151), - [sym_list] = STATE(1151), - [sym_set] = STATE(1151), - [sym_tuple] = STATE(1151), - [sym_dictionary] = STATE(1151), - [sym_list_comprehension] = STATE(1151), - [sym_dictionary_comprehension] = STATE(1151), - [sym_set_comprehension] = STATE(1151), - [sym_generator_expression] = STATE(1151), - [sym_parenthesized_expression] = STATE(1151), - [sym_concatenated_string] = STATE(1151), - [sym_string] = STATE(969), - [sym_await] = STATE(1151), - [sym_identifier] = ACTIONS(711), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_print] = ACTIONS(717), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(257), - [anon_sym_match] = ACTIONS(719), - [anon_sym_async] = ACTIONS(717), - [anon_sym_for] = ACTIONS(259), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(717), - [anon_sym_type] = ACTIONS(719), - [anon_sym_LBRACK] = ACTIONS(721), - [anon_sym_RBRACK] = ACTIONS(257), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(723), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(725), - [anon_sym_PLUS] = ACTIONS(723), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(723), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(727), - [sym_integer] = ACTIONS(711), - [sym_float] = ACTIONS(727), - [anon_sym_await] = ACTIONS(729), - [sym_true] = ACTIONS(711), - [sym_false] = ACTIONS(711), - [sym_none] = ACTIONS(711), + [sym_list_splat_pattern] = STATE(1325), + [sym_primary_expression] = STATE(1055), + [sym_binary_operator] = STATE(1349), + [sym_unary_operator] = STATE(1349), + [sym_attribute] = STATE(1349), + [sym_subscript] = STATE(1349), + [sym_call] = STATE(1349), + [sym_list] = STATE(1349), + [sym_set] = STATE(1349), + [sym_tuple] = STATE(1349), + [sym_dictionary] = STATE(1349), + [sym_list_comprehension] = STATE(1349), + [sym_dictionary_comprehension] = STATE(1349), + [sym_set_comprehension] = STATE(1349), + [sym_generator_expression] = STATE(1349), + [sym_parenthesized_expression] = STATE(1349), + [sym_concatenated_string] = STATE(1349), + [sym_string] = STATE(1043), + [sym_await] = STATE(1349), + [sym_identifier] = ACTIONS(742), + [anon_sym_DOT] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(744), + [anon_sym_RPAREN] = ACTIONS(262), + [anon_sym_COMMA] = ACTIONS(262), + [anon_sym_lazy] = ACTIONS(746), + [anon_sym_as] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(748), + [anon_sym_print] = ACTIONS(750), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_COLON_EQ] = ACTIONS(279), + [anon_sym_if] = ACTIONS(264), + [anon_sym_match] = ACTIONS(746), + [anon_sym_async] = ACTIONS(750), + [anon_sym_in] = ACTIONS(264), + [anon_sym_STAR_STAR] = ACTIONS(262), + [anon_sym_exec] = ACTIONS(750), + [anon_sym_type] = ACTIONS(746), + [anon_sym_EQ] = ACTIONS(728), + [anon_sym_LBRACK] = ACTIONS(752), + [anon_sym_AT] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(754), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(754), + [anon_sym_not] = ACTIONS(264), + [anon_sym_and] = ACTIONS(264), + [anon_sym_or] = ACTIONS(264), + [anon_sym_SLASH] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(262), + [anon_sym_SLASH_SLASH] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(754), + [anon_sym_is] = ACTIONS(264), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_LT_EQ] = ACTIONS(262), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_LT_GT] = ACTIONS(262), + [sym_ellipsis] = ACTIONS(758), + [sym_integer] = ACTIONS(742), + [sym_float] = ACTIONS(758), + [anon_sym_await] = ACTIONS(760), + [sym_true] = ACTIONS(742), + [sym_false] = ACTIONS(742), + [sym_none] = ACTIONS(742), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(731), + [sym_string_start] = ACTIONS(762), }, [STATE(174)] = { - [sym_list_splat_pattern] = STATE(1416), - [sym_primary_expression] = STATE(1124), - [sym_binary_operator] = STATE(1348), - [sym_unary_operator] = STATE(1348), - [sym_attribute] = STATE(1348), - [sym_subscript] = STATE(1348), - [sym_call] = STATE(1348), - [sym_list] = STATE(1348), - [sym_set] = STATE(1348), - [sym_tuple] = STATE(1348), - [sym_dictionary] = STATE(1348), - [sym_list_comprehension] = STATE(1348), - [sym_dictionary_comprehension] = STATE(1348), - [sym_set_comprehension] = STATE(1348), - [sym_generator_expression] = STATE(1348), - [sym_parenthesized_expression] = STATE(1348), - [sym_concatenated_string] = STATE(1348), - [sym_string] = STATE(1017), - [sym_await] = STATE(1348), - [sym_identifier] = ACTIONS(304), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_print] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(257), - [anon_sym_else] = ACTIONS(259), - [anon_sym_match] = ACTIONS(656), - [anon_sym_async] = ACTIONS(654), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(654), - [anon_sym_type] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(259), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(296), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(296), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(302), - [sym_integer] = ACTIONS(304), - [sym_float] = ACTIONS(302), - [anon_sym_await] = ACTIONS(662), - [sym_true] = ACTIONS(304), - [sym_false] = ACTIONS(304), - [sym_none] = ACTIONS(304), + [sym_list_splat_pattern] = STATE(1361), + [sym_primary_expression] = STATE(1126), + [sym_binary_operator] = STATE(1422), + [sym_unary_operator] = STATE(1422), + [sym_attribute] = STATE(1422), + [sym_subscript] = STATE(1422), + [sym_call] = STATE(1422), + [sym_list] = STATE(1422), + [sym_set] = STATE(1422), + [sym_tuple] = STATE(1422), + [sym_dictionary] = STATE(1422), + [sym_list_comprehension] = STATE(1422), + [sym_dictionary_comprehension] = STATE(1422), + [sym_set_comprehension] = STATE(1422), + [sym_generator_expression] = STATE(1422), + [sym_parenthesized_expression] = STATE(1422), + [sym_concatenated_string] = STATE(1422), + [sym_string] = STATE(1032), + [sym_await] = STATE(1422), + [sym_identifier] = ACTIONS(309), + [anon_sym_SEMI] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(305), + [anon_sym_lazy] = ACTIONS(657), + [anon_sym_STAR] = ACTIONS(661), + [anon_sym_print] = ACTIONS(663), + [anon_sym_GT_GT] = ACTIONS(264), + [anon_sym_COLON] = ACTIONS(305), + [anon_sym_match] = ACTIONS(657), + [anon_sym_async] = ACTIONS(663), + [anon_sym_STAR_STAR] = ACTIONS(264), + [anon_sym_exec] = ACTIONS(663), + [anon_sym_type] = ACTIONS(657), + [anon_sym_EQ] = ACTIONS(305), + [anon_sym_LBRACK] = ACTIONS(665), + [anon_sym_AT] = ACTIONS(264), + [anon_sym_DASH] = ACTIONS(667), + [anon_sym_PIPE] = ACTIONS(264), + [anon_sym_LBRACE] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(667), + [anon_sym_SLASH] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_SLASH_SLASH] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(264), + [anon_sym_CARET] = ACTIONS(264), + [anon_sym_LT_LT] = ACTIONS(264), + [anon_sym_TILDE] = ACTIONS(301), + [anon_sym_PLUS_EQ] = ACTIONS(305), + [anon_sym_DASH_EQ] = ACTIONS(305), + [anon_sym_STAR_EQ] = ACTIONS(305), + [anon_sym_SLASH_EQ] = ACTIONS(305), + [anon_sym_AT_EQ] = ACTIONS(305), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(305), + [anon_sym_PERCENT_EQ] = ACTIONS(305), + [anon_sym_STAR_STAR_EQ] = ACTIONS(305), + [anon_sym_GT_GT_EQ] = ACTIONS(305), + [anon_sym_LT_LT_EQ] = ACTIONS(305), + [anon_sym_AMP_EQ] = ACTIONS(305), + [anon_sym_CARET_EQ] = ACTIONS(305), + [anon_sym_PIPE_EQ] = ACTIONS(305), + [sym_ellipsis] = ACTIONS(307), + [sym_integer] = ACTIONS(309), + [sym_float] = ACTIONS(307), + [anon_sym_await] = ACTIONS(669), + [sym_true] = ACTIONS(309), + [sym_false] = ACTIONS(309), + [sym_none] = ACTIONS(309), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(308), + [sym__newline] = ACTIONS(305), + [sym_string_start] = ACTIONS(313), }, [STATE(175)] = { - [sym_list_splat_pattern] = STATE(1337), - [sym_primary_expression] = STATE(1127), - [sym_binary_operator] = STATE(1334), - [sym_unary_operator] = STATE(1334), - [sym_attribute] = STATE(1334), - [sym_subscript] = STATE(1334), - [sym_call] = STATE(1334), - [sym_list] = STATE(1334), - [sym_set] = STATE(1334), - [sym_tuple] = STATE(1334), - [sym_dictionary] = STATE(1334), - [sym_list_comprehension] = STATE(1334), - [sym_dictionary_comprehension] = STATE(1334), - [sym_set_comprehension] = STATE(1334), - [sym_generator_expression] = STATE(1334), - [sym_parenthesized_expression] = STATE(1334), - [sym_concatenated_string] = STATE(1334), - [sym_string] = STATE(1012), - [sym_await] = STATE(1334), - [sym_identifier] = ACTIONS(755), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_RPAREN] = ACTIONS(264), - [anon_sym_COMMA] = ACTIONS(264), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_print] = ACTIONS(761), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_match] = ACTIONS(763), - [anon_sym_async] = ACTIONS(761), - [anon_sym_for] = ACTIONS(259), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(761), - [anon_sym_type] = ACTIONS(763), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_PLUS] = ACTIONS(769), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(769), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(773), - [sym_integer] = ACTIONS(755), - [sym_float] = ACTIONS(773), - [anon_sym_await] = ACTIONS(775), - [sym_true] = ACTIONS(755), - [sym_false] = ACTIONS(755), - [sym_none] = ACTIONS(755), + [sym_list_splat_pattern] = STATE(1361), + [sym_primary_expression] = STATE(1126), + [sym_binary_operator] = STATE(1422), + [sym_unary_operator] = STATE(1422), + [sym_attribute] = STATE(1422), + [sym_subscript] = STATE(1422), + [sym_call] = STATE(1422), + [sym_list] = STATE(1422), + [sym_set] = STATE(1422), + [sym_tuple] = STATE(1422), + [sym_dictionary] = STATE(1422), + [sym_list_comprehension] = STATE(1422), + [sym_dictionary_comprehension] = STATE(1422), + [sym_set_comprehension] = STATE(1422), + [sym_generator_expression] = STATE(1422), + [sym_parenthesized_expression] = STATE(1422), + [sym_concatenated_string] = STATE(1422), + [sym_string] = STATE(1032), + [sym_await] = STATE(1422), + [sym_identifier] = ACTIONS(309), + [anon_sym_DOT] = ACTIONS(652), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(650), + [anon_sym_lazy] = ACTIONS(657), + [anon_sym_as] = ACTIONS(659), + [anon_sym_STAR] = ACTIONS(661), + [anon_sym_print] = ACTIONS(663), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_if] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_match] = ACTIONS(657), + [anon_sym_async] = ACTIONS(663), + [anon_sym_for] = ACTIONS(659), + [anon_sym_in] = ACTIONS(659), + [anon_sym_STAR_STAR] = ACTIONS(671), + [anon_sym_exec] = ACTIONS(663), + [anon_sym_type] = ACTIONS(657), + [anon_sym_LBRACK] = ACTIONS(665), + [anon_sym_RBRACK] = ACTIONS(650), + [anon_sym_AT] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(301), + [anon_sym_PIPE] = ACTIONS(671), + [anon_sym_LBRACE] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(301), + [anon_sym_not] = ACTIONS(659), + [anon_sym_and] = ACTIONS(659), + [anon_sym_or] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(652), + [anon_sym_PERCENT] = ACTIONS(671), + [anon_sym_SLASH_SLASH] = ACTIONS(671), + [anon_sym_AMP] = ACTIONS(671), + [anon_sym_CARET] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_TILDE] = ACTIONS(301), + [anon_sym_is] = ACTIONS(659), + [anon_sym_LT] = ACTIONS(659), + [anon_sym_LT_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(650), + [anon_sym_BANG_EQ] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(650), + [anon_sym_GT] = ACTIONS(659), + [anon_sym_LT_GT] = ACTIONS(650), + [sym_ellipsis] = ACTIONS(307), + [sym_integer] = ACTIONS(309), + [sym_float] = ACTIONS(307), + [anon_sym_await] = ACTIONS(669), + [sym_true] = ACTIONS(309), + [sym_false] = ACTIONS(309), + [sym_none] = ACTIONS(309), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(777), + [sym_string_start] = ACTIONS(313), }, [STATE(176)] = { - [sym_list_splat_pattern] = STATE(1384), - [sym_primary_expression] = STATE(1054), - [sym_binary_operator] = STATE(1367), - [sym_unary_operator] = STATE(1367), - [sym_attribute] = STATE(1367), - [sym_subscript] = STATE(1367), - [sym_call] = STATE(1367), - [sym_list] = STATE(1367), - [sym_set] = STATE(1367), - [sym_tuple] = STATE(1367), - [sym_dictionary] = STATE(1367), - [sym_list_comprehension] = STATE(1367), - [sym_dictionary_comprehension] = STATE(1367), - [sym_set_comprehension] = STATE(1367), - [sym_generator_expression] = STATE(1367), - [sym_parenthesized_expression] = STATE(1367), - [sym_concatenated_string] = STATE(1367), - [sym_string] = STATE(993), - [sym_await] = STATE(1367), - [sym_identifier] = ACTIONS(689), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(691), - [anon_sym_RPAREN] = ACTIONS(257), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_print] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_match] = ACTIONS(697), - [anon_sym_async] = ACTIONS(695), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(695), - [anon_sym_type] = ACTIONS(697), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(699), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(705), - [sym_integer] = ACTIONS(689), - [sym_float] = ACTIONS(705), - [anon_sym_await] = ACTIONS(707), - [sym_true] = ACTIONS(689), - [sym_false] = ACTIONS(689), - [sym_none] = ACTIONS(689), + [sym_list_splat_pattern] = STATE(1370), + [sym_primary_expression] = STATE(1127), + [sym_binary_operator] = STATE(1377), + [sym_unary_operator] = STATE(1377), + [sym_attribute] = STATE(1377), + [sym_subscript] = STATE(1377), + [sym_call] = STATE(1377), + [sym_list] = STATE(1377), + [sym_set] = STATE(1377), + [sym_tuple] = STATE(1377), + [sym_dictionary] = STATE(1377), + [sym_list_comprehension] = STATE(1377), + [sym_dictionary_comprehension] = STATE(1377), + [sym_set_comprehension] = STATE(1377), + [sym_generator_expression] = STATE(1377), + [sym_parenthesized_expression] = STATE(1377), + [sym_concatenated_string] = STATE(1377), + [sym_string] = STATE(1035), + [sym_await] = STATE(1377), + [sym_identifier] = ACTIONS(718), + [anon_sym_DOT] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(720), + [anon_sym_RPAREN] = ACTIONS(269), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_lazy] = ACTIONS(722), + [anon_sym_as] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(724), + [anon_sym_print] = ACTIONS(726), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_COLON_EQ] = ACTIONS(279), + [anon_sym_if] = ACTIONS(264), + [anon_sym_match] = ACTIONS(722), + [anon_sym_async] = ACTIONS(726), + [anon_sym_for] = ACTIONS(264), + [anon_sym_in] = ACTIONS(264), + [anon_sym_STAR_STAR] = ACTIONS(262), + [anon_sym_exec] = ACTIONS(726), + [anon_sym_type] = ACTIONS(722), + [anon_sym_LBRACK] = ACTIONS(730), + [anon_sym_AT] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(732), + [anon_sym_not] = ACTIONS(264), + [anon_sym_and] = ACTIONS(264), + [anon_sym_or] = ACTIONS(264), + [anon_sym_SLASH] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(262), + [anon_sym_SLASH_SLASH] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_is] = ACTIONS(264), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_LT_EQ] = ACTIONS(262), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_LT_GT] = ACTIONS(262), + [sym_ellipsis] = ACTIONS(736), + [sym_integer] = ACTIONS(718), + [sym_float] = ACTIONS(736), + [anon_sym_await] = ACTIONS(738), + [sym_true] = ACTIONS(718), + [sym_false] = ACTIONS(718), + [sym_none] = ACTIONS(718), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(709), + [sym_string_start] = ACTIONS(740), }, [STATE(177)] = { - [sym_list_splat_pattern] = STATE(1337), - [sym_primary_expression] = STATE(1127), - [sym_binary_operator] = STATE(1334), - [sym_unary_operator] = STATE(1334), - [sym_attribute] = STATE(1334), - [sym_subscript] = STATE(1334), - [sym_call] = STATE(1334), - [sym_list] = STATE(1334), - [sym_set] = STATE(1334), - [sym_tuple] = STATE(1334), - [sym_dictionary] = STATE(1334), - [sym_list_comprehension] = STATE(1334), - [sym_dictionary_comprehension] = STATE(1334), - [sym_set_comprehension] = STATE(1334), - [sym_generator_expression] = STATE(1334), - [sym_parenthesized_expression] = STATE(1334), - [sym_concatenated_string] = STATE(1334), - [sym_string] = STATE(1012), - [sym_await] = STATE(1334), - [sym_identifier] = ACTIONS(755), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_RPAREN] = ACTIONS(257), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_print] = ACTIONS(761), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_match] = ACTIONS(763), - [anon_sym_async] = ACTIONS(761), - [anon_sym_for] = ACTIONS(259), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(761), - [anon_sym_type] = ACTIONS(763), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_PLUS] = ACTIONS(769), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(769), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(773), - [sym_integer] = ACTIONS(755), - [sym_float] = ACTIONS(773), - [anon_sym_await] = ACTIONS(775), - [sym_true] = ACTIONS(755), - [sym_false] = ACTIONS(755), - [sym_none] = ACTIONS(755), + [sym_list_splat_pattern] = STATE(1275), + [sym_primary_expression] = STATE(1005), + [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(972), + [sym_await] = STATE(1258), + [sym_identifier] = ACTIONS(696), + [anon_sym_DOT] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(698), + [anon_sym_COMMA] = ACTIONS(262), + [anon_sym_lazy] = ACTIONS(700), + [anon_sym_as] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(702), + [anon_sym_print] = ACTIONS(704), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_if] = ACTIONS(264), + [anon_sym_COLON] = ACTIONS(262), + [anon_sym_match] = ACTIONS(700), + [anon_sym_async] = ACTIONS(704), + [anon_sym_for] = ACTIONS(264), + [anon_sym_in] = ACTIONS(264), + [anon_sym_STAR_STAR] = ACTIONS(262), + [anon_sym_exec] = ACTIONS(704), + [anon_sym_type] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(708), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_RBRACE] = ACTIONS(262), + [anon_sym_PLUS] = ACTIONS(708), + [anon_sym_not] = ACTIONS(264), + [anon_sym_and] = ACTIONS(264), + [anon_sym_or] = ACTIONS(264), + [anon_sym_SLASH] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(262), + [anon_sym_SLASH_SLASH] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(708), + [anon_sym_is] = ACTIONS(264), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_LT_EQ] = ACTIONS(262), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_LT_GT] = ACTIONS(262), + [sym_ellipsis] = ACTIONS(712), + [sym_integer] = ACTIONS(696), + [sym_float] = ACTIONS(712), + [anon_sym_await] = ACTIONS(714), + [sym_true] = ACTIONS(696), + [sym_false] = ACTIONS(696), + [sym_none] = ACTIONS(696), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(777), + [sym_string_start] = ACTIONS(716), }, [STATE(178)] = { - [sym_list_splat_pattern] = STATE(1384), - [sym_primary_expression] = STATE(1054), - [sym_binary_operator] = STATE(1367), - [sym_unary_operator] = STATE(1367), - [sym_attribute] = STATE(1367), - [sym_subscript] = STATE(1367), - [sym_call] = STATE(1367), - [sym_list] = STATE(1367), - [sym_set] = STATE(1367), - [sym_tuple] = STATE(1367), - [sym_dictionary] = STATE(1367), - [sym_list_comprehension] = STATE(1367), - [sym_dictionary_comprehension] = STATE(1367), - [sym_set_comprehension] = STATE(1367), - [sym_generator_expression] = STATE(1367), - [sym_parenthesized_expression] = STATE(1367), - [sym_concatenated_string] = STATE(1367), - [sym_string] = STATE(993), - [sym_await] = STATE(1367), - [sym_identifier] = ACTIONS(689), - [anon_sym_DOT] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(691), - [anon_sym_RPAREN] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(686), - [anon_sym_as] = ACTIONS(645), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_print] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(645), - [anon_sym_match] = ACTIONS(697), - [anon_sym_async] = ACTIONS(695), - [anon_sym_for] = ACTIONS(650), - [anon_sym_in] = ACTIONS(645), - [anon_sym_STAR_STAR] = ACTIONS(686), - [anon_sym_exec] = ACTIONS(695), - [anon_sym_type] = ACTIONS(697), - [anon_sym_LBRACK] = ACTIONS(699), - [anon_sym_AT] = ACTIONS(686), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_not] = ACTIONS(645), - [anon_sym_and] = ACTIONS(645), - [anon_sym_or] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_SLASH_SLASH] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_is] = ACTIONS(645), - [anon_sym_LT] = ACTIONS(645), - [anon_sym_LT_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(686), - [anon_sym_BANG_EQ] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(686), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_LT_GT] = ACTIONS(686), - [sym_ellipsis] = ACTIONS(705), - [sym_integer] = ACTIONS(689), - [sym_float] = ACTIONS(705), - [anon_sym_await] = ACTIONS(707), - [sym_true] = ACTIONS(689), - [sym_false] = ACTIONS(689), - [sym_none] = ACTIONS(689), + [sym_list_splat_pattern] = STATE(1361), + [sym_primary_expression] = STATE(1126), + [sym_binary_operator] = STATE(1422), + [sym_unary_operator] = STATE(1422), + [sym_attribute] = STATE(1422), + [sym_subscript] = STATE(1422), + [sym_call] = STATE(1422), + [sym_list] = STATE(1422), + [sym_set] = STATE(1422), + [sym_tuple] = STATE(1422), + [sym_dictionary] = STATE(1422), + [sym_list_comprehension] = STATE(1422), + [sym_dictionary_comprehension] = STATE(1422), + [sym_set_comprehension] = STATE(1422), + [sym_generator_expression] = STATE(1422), + [sym_parenthesized_expression] = STATE(1422), + [sym_concatenated_string] = STATE(1422), + [sym_string] = STATE(1032), + [sym_await] = STATE(1422), + [sym_identifier] = ACTIONS(309), + [anon_sym_DOT] = ACTIONS(652), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(650), + [anon_sym_lazy] = ACTIONS(657), + [anon_sym_as] = ACTIONS(659), + [anon_sym_STAR] = ACTIONS(661), + [anon_sym_print] = ACTIONS(663), + [anon_sym_GT_GT] = ACTIONS(671), + [anon_sym_if] = ACTIONS(659), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_else] = ACTIONS(659), + [anon_sym_match] = ACTIONS(657), + [anon_sym_async] = ACTIONS(663), + [anon_sym_in] = ACTIONS(659), + [anon_sym_STAR_STAR] = ACTIONS(671), + [anon_sym_exec] = ACTIONS(663), + [anon_sym_type] = ACTIONS(657), + [anon_sym_EQ] = ACTIONS(659), + [anon_sym_LBRACK] = ACTIONS(665), + [anon_sym_AT] = ACTIONS(671), + [anon_sym_DASH] = ACTIONS(301), + [anon_sym_PIPE] = ACTIONS(671), + [anon_sym_LBRACE] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(301), + [anon_sym_not] = ACTIONS(659), + [anon_sym_and] = ACTIONS(659), + [anon_sym_or] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(652), + [anon_sym_PERCENT] = ACTIONS(671), + [anon_sym_SLASH_SLASH] = ACTIONS(671), + [anon_sym_AMP] = ACTIONS(671), + [anon_sym_CARET] = ACTIONS(671), + [anon_sym_LT_LT] = ACTIONS(671), + [anon_sym_TILDE] = ACTIONS(301), + [anon_sym_is] = ACTIONS(659), + [anon_sym_LT] = ACTIONS(659), + [anon_sym_LT_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(650), + [anon_sym_BANG_EQ] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(650), + [anon_sym_GT] = ACTIONS(659), + [anon_sym_LT_GT] = ACTIONS(650), + [sym_ellipsis] = ACTIONS(307), + [sym_integer] = ACTIONS(309), + [sym_float] = ACTIONS(307), + [anon_sym_await] = ACTIONS(669), + [sym_true] = ACTIONS(309), + [sym_false] = ACTIONS(309), + [sym_none] = ACTIONS(309), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(709), + [sym_string_start] = ACTIONS(313), }, [STATE(179)] = { - [sym_list_splat_pattern] = STATE(1416), - [sym_primary_expression] = STATE(1124), - [sym_binary_operator] = STATE(1348), - [sym_unary_operator] = STATE(1348), - [sym_attribute] = STATE(1348), - [sym_subscript] = STATE(1348), - [sym_call] = STATE(1348), - [sym_list] = STATE(1348), - [sym_set] = STATE(1348), - [sym_tuple] = STATE(1348), - [sym_dictionary] = STATE(1348), - [sym_list_comprehension] = STATE(1348), - [sym_dictionary_comprehension] = STATE(1348), - [sym_set_comprehension] = STATE(1348), - [sym_generator_expression] = STATE(1348), - [sym_parenthesized_expression] = STATE(1348), - [sym_concatenated_string] = STATE(1348), - [sym_string] = STATE(1017), - [sym_await] = STATE(1348), - [sym_identifier] = ACTIONS(304), - [anon_sym_DOT] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_COMMA] = ACTIONS(643), - [anon_sym_as] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_print] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_if] = ACTIONS(650), - [anon_sym_COLON] = ACTIONS(643), - [anon_sym_else] = ACTIONS(650), - [anon_sym_match] = ACTIONS(656), - [anon_sym_async] = ACTIONS(654), - [anon_sym_in] = ACTIONS(650), - [anon_sym_STAR_STAR] = ACTIONS(686), - [anon_sym_exec] = ACTIONS(654), - [anon_sym_type] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(686), - [anon_sym_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(296), - [anon_sym_not] = ACTIONS(650), - [anon_sym_and] = ACTIONS(650), - [anon_sym_or] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_SLASH_SLASH] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_TILDE] = ACTIONS(296), - [anon_sym_is] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_LT_EQ] = ACTIONS(643), - [anon_sym_EQ_EQ] = ACTIONS(643), - [anon_sym_BANG_EQ] = ACTIONS(643), - [anon_sym_GT_EQ] = ACTIONS(643), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT_GT] = ACTIONS(643), - [sym_ellipsis] = ACTIONS(302), - [sym_integer] = ACTIONS(304), - [sym_float] = ACTIONS(302), - [anon_sym_await] = ACTIONS(662), - [sym_true] = ACTIONS(304), - [sym_false] = ACTIONS(304), - [sym_none] = ACTIONS(304), + [sym_list_splat_pattern] = STATE(1431), + [sym_primary_expression] = STATE(1149), + [sym_binary_operator] = STATE(1424), + [sym_unary_operator] = STATE(1424), + [sym_attribute] = STATE(1424), + [sym_subscript] = STATE(1424), + [sym_call] = STATE(1424), + [sym_list] = STATE(1424), + [sym_set] = STATE(1424), + [sym_tuple] = STATE(1424), + [sym_dictionary] = STATE(1424), + [sym_list_comprehension] = STATE(1424), + [sym_dictionary_comprehension] = STATE(1424), + [sym_set_comprehension] = STATE(1424), + [sym_generator_expression] = STATE(1424), + [sym_parenthesized_expression] = STATE(1424), + [sym_concatenated_string] = STATE(1424), + [sym_string] = STATE(1131), + [sym_await] = STATE(1424), + [sym_identifier] = ACTIONS(764), + [anon_sym_DOT] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(766), + [anon_sym_COMMA] = ACTIONS(262), + [anon_sym_lazy] = ACTIONS(768), + [anon_sym_as] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_print] = ACTIONS(772), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_COLON_EQ] = ACTIONS(279), + [anon_sym_if] = ACTIONS(264), + [anon_sym_COLON] = ACTIONS(264), + [anon_sym_match] = ACTIONS(768), + [anon_sym_async] = ACTIONS(772), + [anon_sym_in] = ACTIONS(264), + [anon_sym_STAR_STAR] = ACTIONS(262), + [anon_sym_exec] = ACTIONS(772), + [anon_sym_type] = ACTIONS(768), + [anon_sym_LBRACK] = ACTIONS(774), + [anon_sym_RBRACK] = ACTIONS(262), + [anon_sym_AT] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(776), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_PLUS] = ACTIONS(776), + [anon_sym_not] = ACTIONS(264), + [anon_sym_and] = ACTIONS(264), + [anon_sym_or] = ACTIONS(264), + [anon_sym_SLASH] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(262), + [anon_sym_SLASH_SLASH] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(776), + [anon_sym_is] = ACTIONS(264), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_LT_EQ] = ACTIONS(262), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_LT_GT] = ACTIONS(262), + [sym_ellipsis] = ACTIONS(780), + [sym_integer] = ACTIONS(764), + [sym_float] = ACTIONS(780), + [anon_sym_await] = ACTIONS(782), + [sym_true] = ACTIONS(764), + [sym_false] = ACTIONS(764), + [sym_none] = ACTIONS(764), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(308), + [sym_string_start] = ACTIONS(784), }, [STATE(180)] = { - [sym_list_splat_pattern] = STATE(1337), + [sym_list_splat_pattern] = STATE(1370), [sym_primary_expression] = STATE(1127), - [sym_binary_operator] = STATE(1334), - [sym_unary_operator] = STATE(1334), - [sym_attribute] = STATE(1334), - [sym_subscript] = STATE(1334), - [sym_call] = STATE(1334), - [sym_list] = STATE(1334), - [sym_set] = STATE(1334), - [sym_tuple] = STATE(1334), - [sym_dictionary] = STATE(1334), - [sym_list_comprehension] = STATE(1334), - [sym_dictionary_comprehension] = STATE(1334), - [sym_set_comprehension] = STATE(1334), - [sym_generator_expression] = STATE(1334), - [sym_parenthesized_expression] = STATE(1334), - [sym_concatenated_string] = STATE(1334), - [sym_string] = STATE(1012), - [sym_await] = STATE(1334), - [sym_identifier] = ACTIONS(755), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_RPAREN] = ACTIONS(257), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_print] = ACTIONS(761), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_if] = ACTIONS(259), - [anon_sym_match] = ACTIONS(763), - [anon_sym_async] = ACTIONS(761), - [anon_sym_for] = ACTIONS(259), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(761), - [anon_sym_type] = ACTIONS(763), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_PLUS] = ACTIONS(769), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(769), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(773), - [sym_integer] = ACTIONS(755), - [sym_float] = ACTIONS(773), - [anon_sym_await] = ACTIONS(775), - [sym_true] = ACTIONS(755), - [sym_false] = ACTIONS(755), - [sym_none] = ACTIONS(755), + [sym_binary_operator] = STATE(1377), + [sym_unary_operator] = STATE(1377), + [sym_attribute] = STATE(1377), + [sym_subscript] = STATE(1377), + [sym_call] = STATE(1377), + [sym_list] = STATE(1377), + [sym_set] = STATE(1377), + [sym_tuple] = STATE(1377), + [sym_dictionary] = STATE(1377), + [sym_list_comprehension] = STATE(1377), + [sym_dictionary_comprehension] = STATE(1377), + [sym_set_comprehension] = STATE(1377), + [sym_generator_expression] = STATE(1377), + [sym_parenthesized_expression] = STATE(1377), + [sym_concatenated_string] = STATE(1377), + [sym_string] = STATE(1035), + [sym_await] = STATE(1377), + [sym_identifier] = ACTIONS(718), + [anon_sym_DOT] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(720), + [anon_sym_RPAREN] = ACTIONS(262), + [anon_sym_COMMA] = ACTIONS(262), + [anon_sym_lazy] = ACTIONS(722), + [anon_sym_as] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(724), + [anon_sym_print] = ACTIONS(726), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_if] = ACTIONS(264), + [anon_sym_match] = ACTIONS(722), + [anon_sym_async] = ACTIONS(726), + [anon_sym_for] = ACTIONS(264), + [anon_sym_in] = ACTIONS(264), + [anon_sym_STAR_STAR] = ACTIONS(262), + [anon_sym_exec] = ACTIONS(726), + [anon_sym_type] = ACTIONS(722), + [anon_sym_LBRACK] = ACTIONS(730), + [anon_sym_AT] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(732), + [anon_sym_not] = ACTIONS(264), + [anon_sym_and] = ACTIONS(264), + [anon_sym_or] = ACTIONS(264), + [anon_sym_SLASH] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(262), + [anon_sym_SLASH_SLASH] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_is] = ACTIONS(264), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_LT_EQ] = ACTIONS(262), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_LT_GT] = ACTIONS(262), + [sym_ellipsis] = ACTIONS(736), + [sym_integer] = ACTIONS(718), + [sym_float] = ACTIONS(736), + [anon_sym_await] = ACTIONS(738), + [sym_true] = ACTIONS(718), + [sym_false] = ACTIONS(718), + [sym_none] = ACTIONS(718), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(777), + [sym_string_start] = ACTIONS(740), }, [STATE(181)] = { - [sym_list_splat_pattern] = STATE(1436), + [sym_list_splat_pattern] = STATE(1431), [sym_primary_expression] = STATE(1149), - [sym_binary_operator] = STATE(1439), - [sym_unary_operator] = STATE(1439), - [sym_attribute] = STATE(1439), - [sym_subscript] = STATE(1439), - [sym_call] = STATE(1439), - [sym_list] = STATE(1439), - [sym_set] = STATE(1439), - [sym_tuple] = STATE(1439), - [sym_dictionary] = STATE(1439), - [sym_list_comprehension] = STATE(1439), - [sym_dictionary_comprehension] = STATE(1439), - [sym_set_comprehension] = STATE(1439), - [sym_generator_expression] = STATE(1439), - [sym_parenthesized_expression] = STATE(1439), - [sym_concatenated_string] = STATE(1439), - [sym_string] = STATE(1068), - [sym_await] = STATE(1439), - [sym_identifier] = ACTIONS(779), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(781), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_print] = ACTIONS(785), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(257), - [anon_sym_match] = ACTIONS(787), - [anon_sym_async] = ACTIONS(785), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(785), - [anon_sym_type] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(789), - [anon_sym_RBRACK] = ACTIONS(257), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(791), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(795), - [sym_integer] = ACTIONS(779), - [sym_float] = ACTIONS(795), - [anon_sym_await] = ACTIONS(797), - [sym_true] = ACTIONS(779), - [sym_false] = ACTIONS(779), - [sym_none] = ACTIONS(779), + [sym_binary_operator] = STATE(1424), + [sym_unary_operator] = STATE(1424), + [sym_attribute] = STATE(1424), + [sym_subscript] = STATE(1424), + [sym_call] = STATE(1424), + [sym_list] = STATE(1424), + [sym_set] = STATE(1424), + [sym_tuple] = STATE(1424), + [sym_dictionary] = STATE(1424), + [sym_list_comprehension] = STATE(1424), + [sym_dictionary_comprehension] = STATE(1424), + [sym_set_comprehension] = STATE(1424), + [sym_generator_expression] = STATE(1424), + [sym_parenthesized_expression] = STATE(1424), + [sym_concatenated_string] = STATE(1424), + [sym_string] = STATE(1131), + [sym_await] = STATE(1424), + [sym_identifier] = ACTIONS(764), + [anon_sym_DOT] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(766), + [anon_sym_COMMA] = ACTIONS(262), + [anon_sym_lazy] = ACTIONS(768), + [anon_sym_as] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(770), + [anon_sym_print] = ACTIONS(772), + [anon_sym_GT_GT] = ACTIONS(262), + [anon_sym_if] = ACTIONS(264), + [anon_sym_COLON] = ACTIONS(262), + [anon_sym_match] = ACTIONS(768), + [anon_sym_async] = ACTIONS(772), + [anon_sym_in] = ACTIONS(264), + [anon_sym_STAR_STAR] = ACTIONS(262), + [anon_sym_exec] = ACTIONS(772), + [anon_sym_type] = ACTIONS(768), + [anon_sym_LBRACK] = ACTIONS(774), + [anon_sym_RBRACK] = ACTIONS(262), + [anon_sym_AT] = ACTIONS(262), + [anon_sym_DASH] = ACTIONS(776), + [anon_sym_PIPE] = ACTIONS(262), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_PLUS] = ACTIONS(776), + [anon_sym_not] = ACTIONS(264), + [anon_sym_and] = ACTIONS(264), + [anon_sym_or] = ACTIONS(264), + [anon_sym_SLASH] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(262), + [anon_sym_SLASH_SLASH] = ACTIONS(262), + [anon_sym_AMP] = ACTIONS(262), + [anon_sym_CARET] = ACTIONS(262), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_TILDE] = ACTIONS(776), + [anon_sym_is] = ACTIONS(264), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_LT_EQ] = ACTIONS(262), + [anon_sym_EQ_EQ] = ACTIONS(262), + [anon_sym_BANG_EQ] = ACTIONS(262), + [anon_sym_GT_EQ] = ACTIONS(262), + [anon_sym_GT] = ACTIONS(264), + [anon_sym_LT_GT] = ACTIONS(262), + [sym_ellipsis] = ACTIONS(780), + [sym_integer] = ACTIONS(764), + [sym_float] = ACTIONS(780), + [anon_sym_await] = ACTIONS(782), + [sym_true] = ACTIONS(764), + [sym_false] = ACTIONS(764), + [sym_none] = ACTIONS(764), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(799), + [sym_string_start] = ACTIONS(784), }, [STATE(182)] = { - [sym_list_splat_pattern] = STATE(1416), - [sym_primary_expression] = STATE(1124), - [sym_binary_operator] = STATE(1348), - [sym_unary_operator] = STATE(1348), - [sym_attribute] = STATE(1348), - [sym_subscript] = STATE(1348), - [sym_call] = STATE(1348), - [sym_list] = STATE(1348), - [sym_set] = STATE(1348), - [sym_tuple] = STATE(1348), - [sym_dictionary] = STATE(1348), - [sym_list_comprehension] = STATE(1348), - [sym_dictionary_comprehension] = STATE(1348), - [sym_set_comprehension] = STATE(1348), - [sym_generator_expression] = STATE(1348), - [sym_parenthesized_expression] = STATE(1348), - [sym_concatenated_string] = STATE(1348), - [sym_string] = STATE(1017), - [sym_await] = STATE(1348), - [sym_identifier] = ACTIONS(304), - [anon_sym_DOT] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_COMMA] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_print] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(645), - [anon_sym_COLON] = ACTIONS(643), - [anon_sym_match] = ACTIONS(656), - [anon_sym_async] = ACTIONS(654), - [anon_sym_STAR_STAR] = ACTIONS(645), - [anon_sym_exec] = ACTIONS(654), - [anon_sym_type] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(643), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(660), - [anon_sym_PIPE] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(660), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_PERCENT] = ACTIONS(645), - [anon_sym_SLASH_SLASH] = ACTIONS(645), - [anon_sym_AMP] = ACTIONS(645), - [anon_sym_CARET] = ACTIONS(645), - [anon_sym_LT_LT] = ACTIONS(645), - [anon_sym_TILDE] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(643), - [anon_sym_DASH_EQ] = ACTIONS(643), - [anon_sym_STAR_EQ] = ACTIONS(643), - [anon_sym_SLASH_EQ] = ACTIONS(643), - [anon_sym_AT_EQ] = ACTIONS(643), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(643), - [anon_sym_PERCENT_EQ] = ACTIONS(643), - [anon_sym_STAR_STAR_EQ] = ACTIONS(643), - [anon_sym_GT_GT_EQ] = ACTIONS(643), - [anon_sym_LT_LT_EQ] = ACTIONS(643), - [anon_sym_AMP_EQ] = ACTIONS(643), - [anon_sym_CARET_EQ] = ACTIONS(643), - [anon_sym_PIPE_EQ] = ACTIONS(643), - [sym_ellipsis] = ACTIONS(302), - [sym_integer] = ACTIONS(304), - [sym_float] = ACTIONS(302), - [anon_sym_await] = ACTIONS(662), - [sym_true] = ACTIONS(304), - [sym_false] = ACTIONS(304), - [sym_none] = ACTIONS(304), + [sym_list_splat_pattern] = STATE(1361), + [sym_primary_expression] = STATE(1126), + [sym_binary_operator] = STATE(1422), + [sym_unary_operator] = STATE(1422), + [sym_attribute] = STATE(1422), + [sym_subscript] = STATE(1422), + [sym_call] = STATE(1422), + [sym_list] = STATE(1422), + [sym_set] = STATE(1422), + [sym_tuple] = STATE(1422), + [sym_dictionary] = STATE(1422), + [sym_list_comprehension] = STATE(1422), + [sym_dictionary_comprehension] = STATE(1422), + [sym_set_comprehension] = STATE(1422), + [sym_generator_expression] = STATE(1422), + [sym_parenthesized_expression] = STATE(1422), + [sym_concatenated_string] = STATE(1422), + [sym_string] = STATE(1032), + [sym_await] = STATE(1422), + [sym_identifier] = ACTIONS(309), + [anon_sym_DOT] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(305), + [anon_sym_lazy] = ACTIONS(657), + [anon_sym_STAR] = ACTIONS(661), + [anon_sym_print] = ACTIONS(663), + [anon_sym_GT_GT] = ACTIONS(264), + [anon_sym_COLON] = ACTIONS(305), + [anon_sym_match] = ACTIONS(657), + [anon_sym_async] = ACTIONS(663), + [anon_sym_STAR_STAR] = ACTIONS(264), + [anon_sym_exec] = ACTIONS(663), + [anon_sym_type] = ACTIONS(657), + [anon_sym_EQ] = ACTIONS(305), + [anon_sym_LBRACK] = ACTIONS(665), + [anon_sym_AT] = ACTIONS(264), + [anon_sym_DASH] = ACTIONS(667), + [anon_sym_PIPE] = ACTIONS(264), + [anon_sym_LBRACE] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(667), + [anon_sym_SLASH] = ACTIONS(264), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_SLASH_SLASH] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(264), + [anon_sym_CARET] = ACTIONS(264), + [anon_sym_LT_LT] = ACTIONS(264), + [anon_sym_TILDE] = ACTIONS(301), + [anon_sym_PLUS_EQ] = ACTIONS(305), + [anon_sym_DASH_EQ] = ACTIONS(305), + [anon_sym_STAR_EQ] = ACTIONS(305), + [anon_sym_SLASH_EQ] = ACTIONS(305), + [anon_sym_AT_EQ] = ACTIONS(305), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(305), + [anon_sym_PERCENT_EQ] = ACTIONS(305), + [anon_sym_STAR_STAR_EQ] = ACTIONS(305), + [anon_sym_GT_GT_EQ] = ACTIONS(305), + [anon_sym_LT_LT_EQ] = ACTIONS(305), + [anon_sym_AMP_EQ] = ACTIONS(305), + [anon_sym_CARET_EQ] = ACTIONS(305), + [anon_sym_PIPE_EQ] = ACTIONS(305), + [sym_ellipsis] = ACTIONS(307), + [sym_integer] = ACTIONS(309), + [sym_float] = ACTIONS(307), + [anon_sym_await] = ACTIONS(669), + [sym_true] = ACTIONS(309), + [sym_false] = ACTIONS(309), + [sym_none] = ACTIONS(309), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(308), + [sym_string_start] = ACTIONS(313), }, [STATE(183)] = { - [sym_list_splat_pattern] = STATE(1416), - [sym_primary_expression] = STATE(1124), - [sym_binary_operator] = STATE(1348), - [sym_unary_operator] = STATE(1348), - [sym_attribute] = STATE(1348), - [sym_subscript] = STATE(1348), - [sym_call] = STATE(1348), - [sym_list] = STATE(1348), - [sym_set] = STATE(1348), - [sym_tuple] = STATE(1348), - [sym_dictionary] = STATE(1348), - [sym_list_comprehension] = STATE(1348), - [sym_dictionary_comprehension] = STATE(1348), - [sym_set_comprehension] = STATE(1348), - [sym_generator_expression] = STATE(1348), - [sym_parenthesized_expression] = STATE(1348), - [sym_concatenated_string] = STATE(1348), - [sym_string] = STATE(1017), - [sym_await] = STATE(1348), - [sym_identifier] = ACTIONS(304), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_COMMA] = ACTIONS(300), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_print] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(300), - [anon_sym_match] = ACTIONS(656), - [anon_sym_async] = ACTIONS(654), - [anon_sym_STAR_STAR] = ACTIONS(259), - [anon_sym_exec] = ACTIONS(654), - [anon_sym_type] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(300), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(259), - [anon_sym_DASH] = ACTIONS(660), - [anon_sym_PIPE] = ACTIONS(259), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(660), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(259), - [anon_sym_SLASH_SLASH] = ACTIONS(259), - [anon_sym_AMP] = ACTIONS(259), - [anon_sym_CARET] = ACTIONS(259), - [anon_sym_LT_LT] = ACTIONS(259), - [anon_sym_TILDE] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(300), - [anon_sym_DASH_EQ] = ACTIONS(300), - [anon_sym_STAR_EQ] = ACTIONS(300), - [anon_sym_SLASH_EQ] = ACTIONS(300), - [anon_sym_AT_EQ] = ACTIONS(300), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(300), - [anon_sym_PERCENT_EQ] = ACTIONS(300), - [anon_sym_STAR_STAR_EQ] = ACTIONS(300), - [anon_sym_GT_GT_EQ] = ACTIONS(300), - [anon_sym_LT_LT_EQ] = ACTIONS(300), - [anon_sym_AMP_EQ] = ACTIONS(300), - [anon_sym_CARET_EQ] = ACTIONS(300), - [anon_sym_PIPE_EQ] = ACTIONS(300), - [sym_ellipsis] = ACTIONS(302), - [sym_integer] = ACTIONS(304), - [sym_float] = ACTIONS(302), - [anon_sym_await] = ACTIONS(662), - [sym_true] = ACTIONS(304), - [sym_false] = ACTIONS(304), - [sym_none] = ACTIONS(304), + [sym_list_splat_pattern] = STATE(1361), + [sym_primary_expression] = STATE(1126), + [sym_binary_operator] = STATE(1422), + [sym_unary_operator] = STATE(1422), + [sym_attribute] = STATE(1422), + [sym_subscript] = STATE(1422), + [sym_call] = STATE(1422), + [sym_list] = STATE(1422), + [sym_set] = STATE(1422), + [sym_tuple] = STATE(1422), + [sym_dictionary] = STATE(1422), + [sym_list_comprehension] = STATE(1422), + [sym_dictionary_comprehension] = STATE(1422), + [sym_set_comprehension] = STATE(1422), + [sym_generator_expression] = STATE(1422), + [sym_parenthesized_expression] = STATE(1422), + [sym_concatenated_string] = STATE(1422), + [sym_string] = STATE(1032), + [sym_await] = STATE(1422), + [sym_identifier] = ACTIONS(309), + [anon_sym_DOT] = ACTIONS(652), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(650), + [anon_sym_lazy] = ACTIONS(657), + [anon_sym_STAR] = ACTIONS(661), + [anon_sym_print] = ACTIONS(663), + [anon_sym_GT_GT] = ACTIONS(652), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_match] = ACTIONS(657), + [anon_sym_async] = ACTIONS(663), + [anon_sym_STAR_STAR] = ACTIONS(652), + [anon_sym_exec] = ACTIONS(663), + [anon_sym_type] = ACTIONS(657), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_LBRACK] = ACTIONS(665), + [anon_sym_AT] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(667), + [anon_sym_PIPE] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(296), + [anon_sym_PLUS] = ACTIONS(667), + [anon_sym_SLASH] = ACTIONS(652), + [anon_sym_PERCENT] = ACTIONS(652), + [anon_sym_SLASH_SLASH] = ACTIONS(652), + [anon_sym_AMP] = ACTIONS(652), + [anon_sym_CARET] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(301), + [anon_sym_PLUS_EQ] = ACTIONS(650), + [anon_sym_DASH_EQ] = ACTIONS(650), + [anon_sym_STAR_EQ] = ACTIONS(650), + [anon_sym_SLASH_EQ] = ACTIONS(650), + [anon_sym_AT_EQ] = ACTIONS(650), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(650), + [anon_sym_PERCENT_EQ] = ACTIONS(650), + [anon_sym_STAR_STAR_EQ] = ACTIONS(650), + [anon_sym_GT_GT_EQ] = ACTIONS(650), + [anon_sym_LT_LT_EQ] = ACTIONS(650), + [anon_sym_AMP_EQ] = ACTIONS(650), + [anon_sym_CARET_EQ] = ACTIONS(650), + [anon_sym_PIPE_EQ] = ACTIONS(650), + [sym_ellipsis] = ACTIONS(307), + [sym_integer] = ACTIONS(309), + [sym_float] = ACTIONS(307), + [anon_sym_await] = ACTIONS(669), + [sym_true] = ACTIONS(309), + [sym_false] = ACTIONS(309), + [sym_none] = ACTIONS(309), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(308), + [sym_string_start] = ACTIONS(313), }, [STATE(184)] = { - [sym_named_expression] = STATE(1697), - [sym__named_expression_lhs] = STATE(2762), - [sym_list_splat] = STATE(2242), - [sym_parenthesized_list_splat] = STATE(2242), - [sym_list_splat_pattern] = STATE(1268), - [sym_as_pattern] = STATE(1697), - [sym_expression] = STATE(1656), - [sym_primary_expression] = STATE(869), - [sym_not_operator] = STATE(1697), - [sym_boolean_operator] = STATE(1697), - [sym_binary_operator] = STATE(1151), - [sym_unary_operator] = STATE(1151), - [sym_comparison_operator] = STATE(1697), - [sym_lambda] = STATE(1697), - [sym_yield] = STATE(2242), - [sym_attribute] = STATE(1151), - [sym_subscript] = STATE(1151), - [sym_call] = STATE(1151), - [sym_type] = STATE(1949), - [sym_splat_type] = STATE(2043), - [sym_generic_type] = STATE(2043), - [sym_union_type] = STATE(2043), - [sym_constrained_type] = STATE(2043), - [sym_member_type] = STATE(2043), - [sym_list] = STATE(1151), - [sym_set] = STATE(1151), - [sym_tuple] = STATE(1151), - [sym_dictionary] = STATE(1151), - [sym_list_comprehension] = STATE(1151), - [sym_dictionary_comprehension] = STATE(1151), - [sym_set_comprehension] = STATE(1151), - [sym_generator_expression] = STATE(1151), - [sym_parenthesized_expression] = STATE(1151), - [sym__collection_elements] = STATE(2650), - [sym_conditional_expression] = STATE(1697), - [sym_concatenated_string] = STATE(1151), - [sym_string] = STATE(969), - [sym_await] = STATE(1151), - [sym_identifier] = ACTIONS(801), - [anon_sym_LPAREN] = ACTIONS(803), - [anon_sym_STAR] = ACTIONS(805), - [anon_sym_print] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_async] = ACTIONS(807), - [anon_sym_STAR_STAR] = ACTIONS(811), - [anon_sym_exec] = ACTIONS(807), - [anon_sym_type] = ACTIONS(813), - [anon_sym_LBRACK] = ACTIONS(721), - [anon_sym_RBRACK] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(723), - [anon_sym_LBRACE] = ACTIONS(725), - [anon_sym_PLUS] = ACTIONS(723), - [anon_sym_not] = ACTIONS(817), - [anon_sym_TILDE] = ACTIONS(723), - [anon_sym_lambda] = ACTIONS(819), - [anon_sym_yield] = ACTIONS(821), - [sym_ellipsis] = ACTIONS(727), - [sym_integer] = ACTIONS(711), - [sym_float] = ACTIONS(727), - [anon_sym_await] = ACTIONS(823), - [sym_true] = ACTIONS(711), - [sym_false] = ACTIONS(711), - [sym_none] = ACTIONS(711), + [sym_named_expression] = STATE(1700), + [sym__named_expression_lhs] = STATE(2772), + [sym_list_splat] = STATE(2381), + [sym_parenthesized_list_splat] = STATE(2381), + [sym_list_splat_pattern] = STATE(1208), + [sym_as_pattern] = STATE(1700), + [sym_expression] = STATE(1658), + [sym_primary_expression] = STATE(960), + [sym_not_operator] = STATE(1700), + [sym_boolean_operator] = STATE(1700), + [sym_binary_operator] = STATE(1184), + [sym_unary_operator] = STATE(1184), + [sym_comparison_operator] = STATE(1700), + [sym_lambda] = STATE(1700), + [sym_yield] = STATE(2381), + [sym_attribute] = STATE(1184), + [sym_subscript] = STATE(1184), + [sym_call] = STATE(1184), + [sym_type] = STATE(1976), + [sym_splat_type] = STATE(2008), + [sym_generic_type] = STATE(2008), + [sym_union_type] = STATE(2008), + [sym_constrained_type] = STATE(2008), + [sym_member_type] = STATE(2008), + [sym_list] = STATE(1184), + [sym_set] = STATE(1184), + [sym_tuple] = STATE(1184), + [sym_dictionary] = STATE(1184), + [sym_list_comprehension] = STATE(1184), + [sym_dictionary_comprehension] = STATE(1184), + [sym_set_comprehension] = STATE(1184), + [sym_generator_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym__collection_elements] = STATE(2662), + [sym_conditional_expression] = STATE(1700), + [sym_concatenated_string] = STATE(1184), + [sym_string] = STATE(974), + [sym_await] = STATE(1184), + [sym_identifier] = ACTIONS(808), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_lazy] = ACTIONS(812), + [anon_sym_STAR] = ACTIONS(814), + [anon_sym_print] = ACTIONS(816), + [anon_sym_match] = ACTIONS(812), + [anon_sym_async] = ACTIONS(816), + [anon_sym_STAR_STAR] = ACTIONS(818), + [anon_sym_exec] = ACTIONS(816), + [anon_sym_type] = ACTIONS(820), + [anon_sym_LBRACK] = ACTIONS(796), + [anon_sym_RBRACK] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_not] = ACTIONS(824), + [anon_sym_TILDE] = ACTIONS(798), + [anon_sym_lambda] = ACTIONS(826), + [anon_sym_yield] = ACTIONS(828), + [sym_ellipsis] = ACTIONS(802), + [sym_integer] = ACTIONS(786), + [sym_float] = ACTIONS(802), + [anon_sym_await] = ACTIONS(830), + [sym_true] = ACTIONS(786), + [sym_false] = ACTIONS(786), + [sym_none] = ACTIONS(786), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(731), + [sym_string_start] = ACTIONS(806), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 28, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(15), 1, - anon_sym_LPAREN, - ACTIONS(17), 1, - anon_sym_STAR, - ACTIONS(61), 1, - anon_sym_LBRACK, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(73), 1, - anon_sym_yield, - ACTIONS(79), 1, - anon_sym_await, - ACTIONS(81), 1, - sym_string_start, - STATE(629), 1, - sym_list_splat_pattern, - STATE(961), 1, - sym_string, - STATE(963), 1, - sym_primary_expression, - STATE(1639), 1, - sym_pattern_list, - STATE(1648), 1, - sym_pattern, - STATE(1791), 1, - sym_expression, - STATE(2625), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(397), 2, - anon_sym_match, - anon_sym_type, - STATE(650), 2, - sym_attribute, - sym_subscript, - STATE(1634), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(399), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(2570), 5, - sym_expression_list, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - STATE(1665), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1085), 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, - [120] = 30, - ACTIONS(743), 1, - anon_sym_LBRACK, - ACTIONS(747), 1, - anon_sym_LBRACE, - ACTIONS(753), 1, - sym_string_start, - ACTIONS(825), 1, - sym_identifier, - ACTIONS(827), 1, - anon_sym_LPAREN, - ACTIONS(829), 1, - anon_sym_COMMA, - ACTIONS(831), 1, - anon_sym_STAR, - ACTIONS(837), 1, - anon_sym_STAR_STAR, - ACTIONS(839), 1, - anon_sym_RBRACE, - ACTIONS(841), 1, - anon_sym_not, - ACTIONS(843), 1, - anon_sym_lambda, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(847), 1, - anon_sym_await, - STATE(935), 1, - sym_primary_expression, - STATE(973), 1, - sym_string, - STATE(1231), 1, - sym_list_splat_pattern, - STATE(1669), 1, - sym_expression, - STATE(1847), 1, - sym_pair, - STATE(2382), 1, - sym_dictionary_splat, - STATE(2669), 1, - sym__collection_elements, - STATE(2675), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(749), 2, - sym_ellipsis, - sym_float, - ACTIONS(835), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(745), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(833), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - STATE(2333), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(733), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1765), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1206), 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, - [244] = 31, - ACTIONS(771), 1, + [0] = 32, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(832), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(834), 1, anon_sym_LPAREN, - ACTIONS(853), 1, + ACTIONS(836), 1, anon_sym_RPAREN, - ACTIONS(855), 1, + ACTIONS(840), 1, anon_sym_STAR, - ACTIONS(861), 1, + ACTIONS(844), 1, anon_sym_LBRACK, - ACTIONS(863), 1, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(848), 1, anon_sym_lambda, - ACTIONS(867), 1, + ACTIONS(850), 1, anon_sym_yield, - ACTIONS(869), 1, + ACTIONS(852), 1, anon_sym_await, - STATE(959), 1, + STATE(963), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1035), 1, sym_string, - STATE(1398), 1, + STATE(1379), 1, sym_list_splat_pattern, - STATE(1685), 1, + STATE(1693), 1, sym_expression, - STATE(2248), 1, + STATE(2304), 1, sym_yield, - STATE(2320), 1, + STATE(2344), 1, sym_pattern, - STATE(2670), 1, - sym__named_expression_lhs, - STATE(2689), 1, + STATE(2367), 1, + sym_list_splat, + STATE(2370), 1, + sym_parenthesized_list_splat, + STATE(2646), 1, sym__collection_elements, - STATE(2756), 1, + STATE(2681), 1, + sym__named_expression_lhs, + STATE(2702), 1, sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, - anon_sym_match, - anon_sym_type, - STATE(1401), 2, + STATE(1381), 2, sym_attribute, sym_subscript, - STATE(2269), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2578), 2, + STATE(2585), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(769), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(838), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(842), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29227,7 +29399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29242,78 +29414,77 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [370] = 30, - ACTIONS(725), 1, - anon_sym_LBRACE, - ACTIONS(731), 1, - sym_string_start, - ACTIONS(817), 1, - anon_sym_not, - ACTIONS(819), 1, - anon_sym_lambda, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(871), 1, + [129] = 28, + ACTIONS(9), 1, sym_identifier, - ACTIONS(873), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(875), 1, + ACTIONS(19), 1, anon_sym_STAR, - ACTIONS(881), 1, + ACTIONS(63), 1, anon_sym_LBRACK, - ACTIONS(883), 1, - anon_sym_RBRACK, - ACTIONS(885), 1, + ACTIONS(69), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(75), 1, + anon_sym_yield, + ACTIONS(81), 1, anon_sym_await, - STATE(869), 1, + ACTIONS(83), 1, + sym_string_start, + STATE(669), 1, + sym_list_splat_pattern, + STATE(961), 1, sym_primary_expression, - STATE(969), 1, + STATE(966), 1, sym_string, - STATE(1296), 1, - sym_list_splat_pattern, - STATE(1712), 1, - sym_expression, - STATE(2486), 1, + STATE(1634), 1, sym_pattern, - STATE(2747), 1, - sym__patterns, - STATE(2750), 1, - sym__collection_elements, - STATE(2762), 1, + STATE(1649), 1, + sym_pattern_list, + STATE(1819), 1, + sym_expression, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(879), 2, - anon_sym_match, - anon_sym_type, - STATE(1374), 2, + STATE(692), 2, sym_attribute, sym_subscript, - STATE(2525), 2, + STATE(1637), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(723), 3, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(877), 3, + ACTIONS(404), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(406), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(711), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(2579), 5, + sym_expression_list, + sym_assignment, + sym_augmented_assignment, + sym__right_hand_side, + sym_yield, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29321,7 +29492,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 14, + STATE(1088), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29336,76 +29507,77 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [494] = 30, - ACTIONS(743), 1, + [250] = 30, + ACTIONS(706), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(827), 1, + ACTIONS(856), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(858), 1, + anon_sym_COMMA, + ACTIONS(862), 1, anon_sym_STAR, - ACTIONS(837), 1, + ACTIONS(866), 1, anon_sym_STAR_STAR, - ACTIONS(841), 1, + ACTIONS(868), 1, + anon_sym_RBRACE, + ACTIONS(870), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(872), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(874), 1, anon_sym_yield, - ACTIONS(847), 1, + ACTIONS(876), 1, anon_sym_await, - ACTIONS(887), 1, - anon_sym_COMMA, - ACTIONS(889), 1, - anon_sym_RBRACE, - STATE(935), 1, + STATE(959), 1, sym_primary_expression, - STATE(973), 1, + STATE(972), 1, sym_string, - STATE(1231), 1, + STATE(1275), 1, sym_list_splat_pattern, STATE(1667), 1, sym_expression, - STATE(1854), 1, + STATE(1890), 1, sym_pair, - STATE(2355), 1, + STATE(2445), 1, sym_dictionary_splat, - STATE(2675), 1, - sym__named_expression_lhs, - STATE(2778), 1, + STATE(2647), 1, sym__collection_elements, + STATE(2683), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(745), 3, + ACTIONS(708), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(860), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(864), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2333), 3, + STATE(2338), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(733), 4, + ACTIONS(696), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1775), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29413,7 +29585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29430,175 +29602,81 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [618] = 32, - ACTIONS(771), 1, + [375] = 32, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(832), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(834), 1, anon_sym_LPAREN, - ACTIONS(855), 1, + ACTIONS(840), 1, anon_sym_STAR, - ACTIONS(861), 1, + ACTIONS(844), 1, anon_sym_LBRACK, - ACTIONS(863), 1, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(848), 1, anon_sym_lambda, - ACTIONS(867), 1, + ACTIONS(850), 1, anon_sym_yield, - ACTIONS(869), 1, + ACTIONS(852), 1, anon_sym_await, - ACTIONS(891), 1, + ACTIONS(878), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(963), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1035), 1, sym_string, - STATE(1398), 1, + STATE(1379), 1, sym_list_splat_pattern, - STATE(1689), 1, + STATE(1683), 1, sym_expression, - STATE(2298), 1, - sym_yield, - STATE(2320), 1, - sym_pattern, - STATE(2368), 1, + STATE(2291), 1, sym_list_splat, - STATE(2369), 1, + STATE(2344), 1, + sym_pattern, + STATE(2346), 1, + sym_yield, + STATE(2418), 1, sym_parenthesized_list_splat, - STATE(2644), 1, - sym__patterns, - STATE(2670), 1, + STATE(2681), 1, sym__named_expression_lhs, - STATE(2785), 1, + STATE(2708), 1, + sym__patterns, + STATE(2734), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, - anon_sym_match, - anon_sym_type, - STATE(1401), 2, + STATE(1381), 2, sym_attribute, sym_subscript, - STATE(2578), 2, + STATE(2585), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(769), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(755), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1828), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1334), 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, - [746] = 31, - ACTIONS(771), 1, - anon_sym_LBRACE, - ACTIONS(777), 1, - sym_string_start, - ACTIONS(849), 1, - sym_identifier, - ACTIONS(851), 1, - anon_sym_LPAREN, - ACTIONS(855), 1, - anon_sym_STAR, - ACTIONS(861), 1, - anon_sym_LBRACK, - ACTIONS(863), 1, - anon_sym_not, - ACTIONS(865), 1, - anon_sym_lambda, - ACTIONS(867), 1, - anon_sym_yield, - ACTIONS(869), 1, - anon_sym_await, - ACTIONS(893), 1, - anon_sym_RPAREN, - STATE(959), 1, - sym_primary_expression, - STATE(1012), 1, - sym_string, - STATE(1398), 1, - sym_list_splat_pattern, - STATE(1676), 1, - sym_expression, - STATE(2320), 1, - sym_pattern, - STATE(2327), 1, - sym_yield, - STATE(2670), 1, - sym__named_expression_lhs, - STATE(2672), 1, - sym__collection_elements, - STATE(2756), 1, - sym__patterns, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(773), 2, - sym_ellipsis, - sym_float, - ACTIONS(859), 2, + ACTIONS(838), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - STATE(1401), 2, - sym_attribute, - sym_subscript, - STATE(2269), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2578), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(769), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(842), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29606,7 +29684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29621,76 +29699,77 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [872] = 28, + [504] = 28, ACTIONS(9), 1, sym_identifier, ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(17), 1, + ACTIONS(19), 1, anon_sym_STAR, - ACTIONS(61), 1, + ACTIONS(63), 1, anon_sym_LBRACK, - ACTIONS(67), 1, - anon_sym_LBRACE, ACTIONS(69), 1, - anon_sym_not, + anon_sym_LBRACE, ACTIONS(71), 1, - anon_sym_lambda, + anon_sym_not, ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(75), 1, anon_sym_yield, - ACTIONS(79), 1, - anon_sym_await, ACTIONS(81), 1, + anon_sym_await, + ACTIONS(83), 1, sym_string_start, - STATE(629), 1, + STATE(669), 1, sym_list_splat_pattern, STATE(961), 1, - sym_string, - STATE(963), 1, sym_primary_expression, - STATE(1639), 1, - sym_pattern_list, - STATE(1648), 1, + STATE(966), 1, + sym_string, + STATE(1634), 1, sym_pattern, - STATE(1791), 1, + STATE(1649), 1, + sym_pattern_list, + STATE(1819), 1, sym_expression, - STATE(2625), 1, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(397), 2, - anon_sym_match, - anon_sym_type, - STATE(650), 2, + STATE(692), 2, sym_attribute, sym_subscript, - STATE(1634), 2, + STATE(1637), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(65), 3, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(399), 3, + ACTIONS(404), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(406), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2572), 5, + STATE(2575), 5, sym_expression_list, sym_assignment, sym_augmented_assignment, sym__right_hand_side, sym_yield, - STATE(1665), 7, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29698,7 +29777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 14, + STATE(1088), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29713,80 +29792,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [992] = 32, - ACTIONS(771), 1, + [625] = 30, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(824), 1, + anon_sym_not, + ACTIONS(826), 1, + anon_sym_lambda, + ACTIONS(828), 1, + anon_sym_yield, + ACTIONS(880), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(882), 1, anon_sym_LPAREN, - ACTIONS(855), 1, + ACTIONS(886), 1, anon_sym_STAR, - ACTIONS(861), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(863), 1, - anon_sym_not, - ACTIONS(865), 1, - anon_sym_lambda, - ACTIONS(867), 1, - anon_sym_yield, - ACTIONS(869), 1, + ACTIONS(892), 1, + anon_sym_RBRACK, + ACTIONS(894), 1, anon_sym_await, - ACTIONS(895), 1, - anon_sym_RPAREN, - STATE(959), 1, + STATE(960), 1, sym_primary_expression, - STATE(1012), 1, + STATE(974), 1, sym_string, - STATE(1398), 1, + STATE(1309), 1, sym_list_splat_pattern, - STATE(1679), 1, + STATE(1680), 1, sym_expression, - STATE(2320), 1, + STATE(2464), 1, sym_pattern, - STATE(2342), 1, - sym_yield, - STATE(2424), 1, - sym_list_splat, - STATE(2439), 1, - sym_parenthesized_list_splat, - STATE(2670), 1, - sym__named_expression_lhs, - STATE(2697), 1, - sym__patterns, - STATE(2715), 1, + STATE(2675), 1, sym__collection_elements, + STATE(2748), 1, + sym__patterns, + STATE(2772), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, - anon_sym_match, - anon_sym_type, - STATE(1401), 2, + STATE(1316), 2, sym_attribute, sym_subscript, - STATE(2578), 2, + STATE(2527), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(769), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(884), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(888), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + STATE(2381), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29794,7 +29872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 14, + STATE(1184), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29809,76 +29887,80 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1120] = 28, - ACTIONS(9), 1, + [750] = 31, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(832), 1, sym_identifier, - ACTIONS(15), 1, + ACTIONS(834), 1, anon_sym_LPAREN, - ACTIONS(17), 1, + ACTIONS(840), 1, anon_sym_STAR, - ACTIONS(61), 1, + ACTIONS(844), 1, anon_sym_LBRACK, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(848), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(850), 1, anon_sym_yield, - ACTIONS(79), 1, + ACTIONS(852), 1, anon_sym_await, - ACTIONS(81), 1, - sym_string_start, - STATE(629), 1, - sym_list_splat_pattern, - STATE(961), 1, - sym_string, + ACTIONS(896), 1, + anon_sym_RPAREN, STATE(963), 1, sym_primary_expression, - STATE(1639), 1, - sym_pattern_list, - STATE(1648), 1, - sym_pattern, - STATE(1791), 1, + STATE(1035), 1, + sym_string, + STATE(1379), 1, + sym_list_splat_pattern, + STATE(1689), 1, sym_expression, - STATE(2625), 1, + STATE(2252), 1, + sym_yield, + STATE(2344), 1, + sym_pattern, + STATE(2617), 1, + sym__collection_elements, + STATE(2658), 1, + sym__patterns, + STATE(2681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(397), 2, - anon_sym_match, - anon_sym_type, - STATE(650), 2, + STATE(1381), 2, sym_attribute, sym_subscript, - STATE(1634), 2, + STATE(2285), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2585), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(65), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(399), 3, + ACTIONS(838), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(842), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2569), 5, - sym_expression_list, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - STATE(1665), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29886,7 +29968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29901,79 +29983,80 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1240] = 31, - ACTIONS(771), 1, + [877] = 31, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(832), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(834), 1, anon_sym_LPAREN, - ACTIONS(855), 1, + ACTIONS(840), 1, anon_sym_STAR, - ACTIONS(861), 1, + ACTIONS(844), 1, anon_sym_LBRACK, - ACTIONS(863), 1, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(848), 1, anon_sym_lambda, - ACTIONS(867), 1, + ACTIONS(850), 1, anon_sym_yield, - ACTIONS(869), 1, + ACTIONS(852), 1, anon_sym_await, - ACTIONS(897), 1, + ACTIONS(898), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(963), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1035), 1, sym_string, - STATE(1398), 1, + STATE(1379), 1, sym_list_splat_pattern, - STATE(1699), 1, + STATE(1702), 1, sym_expression, - STATE(2320), 1, + STATE(2344), 1, sym_pattern, - STATE(2364), 1, + STATE(2365), 1, sym_yield, - STATE(2633), 1, - sym__collection_elements, - STATE(2670), 1, - sym__named_expression_lhs, - STATE(2756), 1, + STATE(2658), 1, sym__patterns, + STATE(2681), 1, + sym__named_expression_lhs, + STATE(2718), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, - anon_sym_match, - anon_sym_type, - STATE(1401), 2, + STATE(1381), 2, sym_attribute, sym_subscript, - STATE(2269), 2, + STATE(2285), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2578), 2, + STATE(2585), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(769), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(838), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(842), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29981,7 +30064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29996,78 +30079,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1366] = 30, - ACTIONS(725), 1, + [1004] = 30, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(824), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(826), 1, anon_sym_lambda, - ACTIONS(821), 1, + ACTIONS(828), 1, anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(880), 1, sym_identifier, - ACTIONS(873), 1, + ACTIONS(882), 1, anon_sym_LPAREN, - ACTIONS(875), 1, + ACTIONS(886), 1, anon_sym_STAR, - ACTIONS(881), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(885), 1, + ACTIONS(894), 1, anon_sym_await, - ACTIONS(899), 1, + ACTIONS(900), 1, anon_sym_RBRACK, - STATE(869), 1, + STATE(960), 1, sym_primary_expression, - STATE(969), 1, + STATE(974), 1, sym_string, - STATE(1296), 1, + STATE(1309), 1, sym_list_splat_pattern, - STATE(1714), 1, + STATE(1718), 1, sym_expression, - STATE(2486), 1, + STATE(2464), 1, sym_pattern, - STATE(2650), 1, + STATE(2662), 1, sym__collection_elements, - STATE(2722), 1, + STATE(2748), 1, sym__patterns, - STATE(2762), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(879), 2, - anon_sym_match, - anon_sym_type, - STATE(1374), 2, + STATE(1316), 2, sym_attribute, sym_subscript, - STATE(2525), 2, + STATE(2527), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(723), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(877), 3, + ACTIONS(884), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(888), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, + STATE(2381), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(711), 4, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30075,7 +30159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 14, + STATE(1184), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30090,76 +30174,77 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1490] = 30, - ACTIONS(743), 1, + [1129] = 30, + ACTIONS(706), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(827), 1, + ACTIONS(856), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(862), 1, anon_sym_STAR, - ACTIONS(837), 1, + ACTIONS(866), 1, anon_sym_STAR_STAR, - ACTIONS(841), 1, + ACTIONS(870), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(872), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(874), 1, anon_sym_yield, - ACTIONS(847), 1, + ACTIONS(876), 1, anon_sym_await, - ACTIONS(901), 1, + ACTIONS(902), 1, anon_sym_COMMA, - ACTIONS(903), 1, + ACTIONS(904), 1, anon_sym_RBRACE, - STATE(935), 1, + STATE(959), 1, sym_primary_expression, - STATE(973), 1, + STATE(972), 1, sym_string, - STATE(1231), 1, + STATE(1275), 1, sym_list_splat_pattern, - STATE(1668), 1, + STATE(1663), 1, sym_expression, - STATE(1884), 1, + STATE(1863), 1, sym_pair, - STATE(2252), 1, + STATE(2254), 1, sym_dictionary_splat, - STATE(2675), 1, + STATE(2683), 1, sym__named_expression_lhs, - STATE(2705), 1, + STATE(2726), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(745), 3, + ACTIONS(708), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(860), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(864), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2333), 3, + STATE(2338), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(733), 4, + ACTIONS(696), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1775), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30167,7 +30252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30184,79 +30269,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1614] = 31, - ACTIONS(771), 1, + [1254] = 30, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(824), 1, + anon_sym_not, + ACTIONS(826), 1, + anon_sym_lambda, + ACTIONS(828), 1, + anon_sym_yield, + ACTIONS(880), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(882), 1, anon_sym_LPAREN, - ACTIONS(855), 1, + ACTIONS(886), 1, anon_sym_STAR, - ACTIONS(861), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(863), 1, - anon_sym_not, - ACTIONS(865), 1, - anon_sym_lambda, - ACTIONS(867), 1, - anon_sym_yield, - ACTIONS(869), 1, + ACTIONS(894), 1, anon_sym_await, - ACTIONS(905), 1, - anon_sym_RPAREN, - STATE(959), 1, + ACTIONS(906), 1, + anon_sym_RBRACK, + STATE(960), 1, sym_primary_expression, - STATE(1012), 1, + STATE(974), 1, sym_string, - STATE(1398), 1, + STATE(1309), 1, sym_list_splat_pattern, - STATE(1685), 1, + STATE(1716), 1, sym_expression, - STATE(2248), 1, - sym_yield, - STATE(2320), 1, + STATE(2464), 1, sym_pattern, - STATE(2670), 1, - sym__named_expression_lhs, - STATE(2689), 1, - sym__collection_elements, - STATE(2697), 1, + STATE(2760), 1, sym__patterns, + STATE(2769), 1, + sym__collection_elements, + STATE(2772), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, - anon_sym_match, - anon_sym_type, - STATE(1401), 2, + STATE(1316), 2, sym_attribute, sym_subscript, - STATE(2269), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2578), 2, + STATE(2527), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(769), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(884), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(888), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + STATE(2381), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30264,7 +30349,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 14, + STATE(1184), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30279,78 +30364,77 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1740] = 30, - ACTIONS(725), 1, + [1379] = 30, + ACTIONS(706), 1, + anon_sym_LBRACK, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(817), 1, - anon_sym_not, - ACTIONS(819), 1, - anon_sym_lambda, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(873), 1, + ACTIONS(856), 1, anon_sym_LPAREN, - ACTIONS(875), 1, + ACTIONS(862), 1, anon_sym_STAR, - ACTIONS(881), 1, - anon_sym_LBRACK, - ACTIONS(885), 1, + ACTIONS(866), 1, + anon_sym_STAR_STAR, + ACTIONS(870), 1, + anon_sym_not, + ACTIONS(872), 1, + anon_sym_lambda, + ACTIONS(874), 1, + anon_sym_yield, + ACTIONS(876), 1, anon_sym_await, - ACTIONS(907), 1, - anon_sym_RBRACK, - STATE(869), 1, + ACTIONS(908), 1, + anon_sym_COMMA, + ACTIONS(910), 1, + anon_sym_RBRACE, + STATE(959), 1, sym_primary_expression, - STATE(969), 1, + STATE(972), 1, sym_string, - STATE(1296), 1, + STATE(1275), 1, sym_list_splat_pattern, - STATE(1716), 1, + STATE(1669), 1, sym_expression, - STATE(2486), 1, - sym_pattern, - STATE(2629), 1, - sym__collection_elements, - STATE(2646), 1, - sym__patterns, - STATE(2762), 1, + STATE(1871), 1, + sym_pair, + STATE(2358), 1, + sym_dictionary_splat, + STATE(2683), 1, sym__named_expression_lhs, + STATE(2786), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - ACTIONS(879), 2, - anon_sym_match, - anon_sym_type, - STATE(1374), 2, - sym_attribute, - sym_subscript, - STATE(2525), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(723), 3, + ACTIONS(708), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(877), 3, + ACTIONS(860), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(864), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, + STATE(2338), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(711), 4, + ACTIONS(696), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1775), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30358,9 +30442,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 14, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -30373,76 +30459,77 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1864] = 30, - ACTIONS(743), 1, - anon_sym_LBRACK, - ACTIONS(747), 1, - anon_sym_LBRACE, - ACTIONS(753), 1, - sym_string_start, - ACTIONS(825), 1, + [1504] = 28, + ACTIONS(9), 1, sym_identifier, - ACTIONS(827), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(19), 1, anon_sym_STAR, - ACTIONS(837), 1, - anon_sym_STAR_STAR, - ACTIONS(841), 1, + ACTIONS(63), 1, + anon_sym_LBRACK, + ACTIONS(69), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(75), 1, anon_sym_yield, - ACTIONS(847), 1, + ACTIONS(81), 1, anon_sym_await, - ACTIONS(909), 1, - anon_sym_COMMA, - ACTIONS(911), 1, - anon_sym_RBRACE, - STATE(935), 1, + ACTIONS(83), 1, + sym_string_start, + STATE(669), 1, + sym_list_splat_pattern, + STATE(961), 1, sym_primary_expression, - STATE(973), 1, + STATE(966), 1, sym_string, - STATE(1231), 1, - sym_list_splat_pattern, - STATE(1670), 1, + STATE(1634), 1, + sym_pattern, + STATE(1649), 1, + sym_pattern_list, + STATE(1819), 1, sym_expression, - STATE(1844), 1, - sym_pair, - STATE(2300), 1, - sym_dictionary_splat, - STATE(2675), 1, + STATE(2643), 1, sym__named_expression_lhs, - STATE(2754), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(745), 3, + STATE(692), 2, + sym_attribute, + sym_subscript, + STATE(1637), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(404), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(406), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2333), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(733), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(2580), 5, + sym_expression_list, + sym_assignment, + sym_augmented_assignment, + sym__right_hand_side, + sym_yield, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30450,11 +30537,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1088), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -30467,79 +30552,80 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1988] = 31, - ACTIONS(771), 1, + [1625] = 31, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(832), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(834), 1, anon_sym_LPAREN, - ACTIONS(855), 1, + ACTIONS(840), 1, anon_sym_STAR, - ACTIONS(861), 1, + ACTIONS(844), 1, anon_sym_LBRACK, - ACTIONS(863), 1, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(848), 1, anon_sym_lambda, - ACTIONS(867), 1, + ACTIONS(850), 1, anon_sym_yield, - ACTIONS(869), 1, + ACTIONS(852), 1, anon_sym_await, - ACTIONS(913), 1, + ACTIONS(912), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(963), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1035), 1, sym_string, - STATE(1398), 1, + STATE(1379), 1, sym_list_splat_pattern, - STATE(1685), 1, + STATE(1689), 1, sym_expression, - STATE(2248), 1, + STATE(2252), 1, sym_yield, - STATE(2320), 1, + STATE(2344), 1, sym_pattern, - STATE(2670), 1, - sym__named_expression_lhs, - STATE(2689), 1, + STATE(2617), 1, sym__collection_elements, - STATE(2756), 1, + STATE(2681), 1, + sym__named_expression_lhs, + STATE(2708), 1, sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, - anon_sym_match, - anon_sym_type, - STATE(1401), 2, + STATE(1381), 2, sym_attribute, sym_subscript, - STATE(2269), 2, + STATE(2285), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2578), 2, + STATE(2585), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(769), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(838), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(842), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30547,7 +30633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30562,78 +30648,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2114] = 30, - ACTIONS(725), 1, + [1752] = 30, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(824), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(826), 1, anon_sym_lambda, - ACTIONS(821), 1, + ACTIONS(828), 1, anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(880), 1, sym_identifier, - ACTIONS(873), 1, + ACTIONS(882), 1, anon_sym_LPAREN, - ACTIONS(875), 1, + ACTIONS(886), 1, anon_sym_STAR, - ACTIONS(881), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(885), 1, + ACTIONS(894), 1, anon_sym_await, - ACTIONS(915), 1, + ACTIONS(914), 1, anon_sym_RBRACK, - STATE(869), 1, + STATE(960), 1, sym_primary_expression, - STATE(969), 1, + STATE(974), 1, sym_string, - STATE(1296), 1, + STATE(1309), 1, sym_list_splat_pattern, - STATE(1719), 1, + STATE(1720), 1, sym_expression, - STATE(2486), 1, + STATE(2464), 1, sym_pattern, - STATE(2658), 1, - sym__collection_elements, - STATE(2722), 1, + STATE(2597), 1, sym__patterns, - STATE(2762), 1, + STATE(2610), 1, + sym__collection_elements, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(879), 2, - anon_sym_match, - anon_sym_type, - STATE(1374), 2, + STATE(1316), 2, sym_attribute, sym_subscript, - STATE(2525), 2, + STATE(2527), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(723), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(877), 3, + ACTIONS(884), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(888), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, + STATE(2381), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(711), 4, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30641,7 +30728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 14, + STATE(1184), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30656,76 +30743,77 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2238] = 30, - ACTIONS(743), 1, + [1877] = 30, + ACTIONS(706), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(827), 1, + ACTIONS(856), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(862), 1, anon_sym_STAR, - ACTIONS(837), 1, + ACTIONS(866), 1, anon_sym_STAR_STAR, - ACTIONS(841), 1, + ACTIONS(870), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(872), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(874), 1, anon_sym_yield, - ACTIONS(847), 1, + ACTIONS(876), 1, anon_sym_await, - ACTIONS(917), 1, + ACTIONS(916), 1, anon_sym_COMMA, - ACTIONS(919), 1, + ACTIONS(918), 1, anon_sym_RBRACE, - STATE(935), 1, + STATE(959), 1, sym_primary_expression, - STATE(973), 1, + STATE(972), 1, sym_string, - STATE(1231), 1, + STATE(1275), 1, sym_list_splat_pattern, - STATE(1671), 1, + STATE(1666), 1, sym_expression, - STATE(1849), 1, + STATE(1887), 1, sym_pair, - STATE(2341), 1, + STATE(2306), 1, sym_dictionary_splat, - STATE(2675), 1, - sym__named_expression_lhs, - STATE(2710), 1, + STATE(2632), 1, sym__collection_elements, + STATE(2683), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(745), 3, + ACTIONS(708), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(860), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(864), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2333), 3, + STATE(2338), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(733), 4, + ACTIONS(696), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1775), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30733,7 +30821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30750,79 +30838,80 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2362] = 31, - ACTIONS(771), 1, + [2002] = 31, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(832), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(834), 1, anon_sym_LPAREN, - ACTIONS(855), 1, + ACTIONS(840), 1, anon_sym_STAR, - ACTIONS(861), 1, + ACTIONS(844), 1, anon_sym_LBRACK, - ACTIONS(863), 1, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(848), 1, anon_sym_lambda, - ACTIONS(867), 1, + ACTIONS(850), 1, anon_sym_yield, - ACTIONS(869), 1, + ACTIONS(852), 1, anon_sym_await, - ACTIONS(921), 1, + ACTIONS(920), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(963), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1035), 1, sym_string, - STATE(1398), 1, + STATE(1379), 1, sym_list_splat_pattern, - STATE(1685), 1, + STATE(1689), 1, sym_expression, - STATE(2248), 1, + STATE(2252), 1, sym_yield, - STATE(2320), 1, + STATE(2344), 1, sym_pattern, - STATE(2644), 1, + STATE(2617), 1, + sym__collection_elements, + STATE(2658), 1, sym__patterns, - STATE(2670), 1, + STATE(2681), 1, sym__named_expression_lhs, - STATE(2689), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, - anon_sym_match, - anon_sym_type, - STATE(1401), 2, + STATE(1381), 2, sym_attribute, sym_subscript, - STATE(2269), 2, + STATE(2285), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2578), 2, + STATE(2585), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(769), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(838), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(842), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30830,7 +30919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30845,78 +30934,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2488] = 30, - ACTIONS(725), 1, + [2129] = 30, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(824), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(826), 1, anon_sym_lambda, - ACTIONS(821), 1, + ACTIONS(828), 1, anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(880), 1, sym_identifier, - ACTIONS(873), 1, + ACTIONS(882), 1, anon_sym_LPAREN, - ACTIONS(875), 1, + ACTIONS(886), 1, anon_sym_STAR, - ACTIONS(881), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(885), 1, + ACTIONS(894), 1, anon_sym_await, - ACTIONS(923), 1, + ACTIONS(922), 1, anon_sym_RBRACK, - STATE(869), 1, + STATE(960), 1, sym_primary_expression, - STATE(969), 1, + STATE(974), 1, sym_string, - STATE(1296), 1, + STATE(1309), 1, sym_list_splat_pattern, - STATE(1714), 1, + STATE(1677), 1, sym_expression, - STATE(2486), 1, + STATE(2464), 1, sym_pattern, - STATE(2650), 1, - sym__collection_elements, - STATE(2747), 1, + STATE(2748), 1, sym__patterns, - STATE(2762), 1, + STATE(2749), 1, + sym__collection_elements, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(879), 2, - anon_sym_match, - anon_sym_type, - STATE(1374), 2, + STATE(1316), 2, sym_attribute, sym_subscript, - STATE(2525), 2, + STATE(2527), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(723), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(877), 3, + ACTIONS(884), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(888), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, + STATE(2381), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(711), 4, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30924,7 +31014,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 14, + STATE(1184), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30939,76 +31029,77 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2612] = 30, - ACTIONS(743), 1, + [2254] = 30, + ACTIONS(706), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(827), 1, + ACTIONS(856), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(862), 1, anon_sym_STAR, - ACTIONS(837), 1, + ACTIONS(866), 1, anon_sym_STAR_STAR, - ACTIONS(841), 1, + ACTIONS(870), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(872), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(874), 1, anon_sym_yield, - ACTIONS(847), 1, + ACTIONS(876), 1, anon_sym_await, - ACTIONS(925), 1, + ACTIONS(924), 1, anon_sym_COMMA, - ACTIONS(927), 1, + ACTIONS(926), 1, anon_sym_RBRACE, - STATE(935), 1, + STATE(959), 1, sym_primary_expression, - STATE(973), 1, + STATE(972), 1, sym_string, - STATE(1231), 1, + STATE(1275), 1, sym_list_splat_pattern, - STATE(1658), 1, + STATE(1668), 1, sym_expression, - STATE(1852), 1, + STATE(1881), 1, sym_pair, - STATE(2367), 1, + STATE(2345), 1, sym_dictionary_splat, - STATE(2675), 1, + STATE(2683), 1, sym__named_expression_lhs, - STATE(2744), 1, + STATE(2719), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(745), 3, + ACTIONS(708), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(860), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(864), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2333), 3, + STATE(2338), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(733), 4, + ACTIONS(696), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1775), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31016,7 +31107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31033,79 +31124,80 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2736] = 31, - ACTIONS(771), 1, + [2379] = 31, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(832), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(834), 1, anon_sym_LPAREN, - ACTIONS(855), 1, + ACTIONS(840), 1, anon_sym_STAR, - ACTIONS(861), 1, + ACTIONS(844), 1, anon_sym_LBRACK, - ACTIONS(863), 1, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(848), 1, anon_sym_lambda, - ACTIONS(867), 1, + ACTIONS(850), 1, anon_sym_yield, - ACTIONS(869), 1, + ACTIONS(852), 1, anon_sym_await, - ACTIONS(929), 1, + ACTIONS(928), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(963), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1035), 1, sym_string, - STATE(1398), 1, + STATE(1379), 1, sym_list_splat_pattern, - STATE(1685), 1, + STATE(1689), 1, sym_expression, - STATE(2248), 1, + STATE(2252), 1, sym_yield, - STATE(2320), 1, + STATE(2344), 1, sym_pattern, - STATE(2670), 1, - sym__named_expression_lhs, - STATE(2689), 1, + STATE(2617), 1, sym__collection_elements, - STATE(2774), 1, + STATE(2681), 1, + sym__named_expression_lhs, + STATE(2702), 1, sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, - anon_sym_match, - anon_sym_type, - STATE(1401), 2, + STATE(1381), 2, sym_attribute, sym_subscript, - STATE(2269), 2, + STATE(2285), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2578), 2, + STATE(2585), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(769), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(838), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(842), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31113,7 +31205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31128,78 +31220,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2862] = 30, - ACTIONS(725), 1, + [2506] = 30, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(824), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(826), 1, anon_sym_lambda, - ACTIONS(821), 1, + ACTIONS(828), 1, anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(880), 1, sym_identifier, - ACTIONS(873), 1, + ACTIONS(882), 1, anon_sym_LPAREN, - ACTIONS(875), 1, + ACTIONS(886), 1, anon_sym_STAR, - ACTIONS(881), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(885), 1, + ACTIONS(894), 1, anon_sym_await, - ACTIONS(931), 1, + ACTIONS(930), 1, anon_sym_RBRACK, - STATE(869), 1, + STATE(960), 1, sym_primary_expression, - STATE(969), 1, + STATE(974), 1, sym_string, - STATE(1296), 1, + STATE(1309), 1, sym_list_splat_pattern, - STATE(1714), 1, + STATE(1718), 1, sym_expression, - STATE(2486), 1, + STATE(2464), 1, sym_pattern, - STATE(2650), 1, + STATE(2662), 1, sym__collection_elements, - STATE(2722), 1, + STATE(2760), 1, sym__patterns, - STATE(2762), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(879), 2, - anon_sym_match, - anon_sym_type, - STATE(1374), 2, + STATE(1316), 2, sym_attribute, sym_subscript, - STATE(2525), 2, + STATE(2527), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(723), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(877), 3, + ACTIONS(884), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(888), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, + STATE(2381), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(711), 4, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31207,7 +31300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 14, + STATE(1184), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31222,76 +31315,77 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2986] = 30, - ACTIONS(743), 1, + [2631] = 30, + ACTIONS(706), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(827), 1, + ACTIONS(856), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(862), 1, anon_sym_STAR, - ACTIONS(837), 1, + ACTIONS(866), 1, anon_sym_STAR_STAR, - ACTIONS(841), 1, + ACTIONS(870), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(872), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(874), 1, anon_sym_yield, - ACTIONS(847), 1, + ACTIONS(876), 1, anon_sym_await, - ACTIONS(933), 1, + ACTIONS(932), 1, anon_sym_COMMA, - ACTIONS(935), 1, + ACTIONS(934), 1, anon_sym_RBRACE, - STATE(935), 1, + STATE(959), 1, sym_primary_expression, - STATE(973), 1, + STATE(972), 1, sym_string, - STATE(1231), 1, + STATE(1275), 1, sym_list_splat_pattern, - STATE(1672), 1, + STATE(1671), 1, sym_expression, - STATE(1859), 1, + STATE(1875), 1, sym_pair, - STATE(2387), 1, + STATE(2366), 1, sym_dictionary_splat, - STATE(2675), 1, + STATE(2683), 1, sym__named_expression_lhs, - STATE(2676), 1, + STATE(2767), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(745), 3, + ACTIONS(708), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(860), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(864), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2333), 3, + STATE(2338), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(733), 4, + ACTIONS(696), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1775), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31299,7 +31393,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31316,79 +31410,80 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3110] = 31, - ACTIONS(771), 1, + [2756] = 31, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(832), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(834), 1, anon_sym_LPAREN, - ACTIONS(855), 1, + ACTIONS(840), 1, anon_sym_STAR, - ACTIONS(861), 1, + ACTIONS(844), 1, anon_sym_LBRACK, - ACTIONS(863), 1, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(848), 1, anon_sym_lambda, - ACTIONS(867), 1, + ACTIONS(850), 1, anon_sym_yield, - ACTIONS(869), 1, + ACTIONS(852), 1, anon_sym_await, - ACTIONS(937), 1, + ACTIONS(936), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(963), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1035), 1, sym_string, - STATE(1398), 1, + STATE(1379), 1, sym_list_splat_pattern, - STATE(1685), 1, + STATE(1689), 1, sym_expression, - STATE(2248), 1, + STATE(2252), 1, sym_yield, - STATE(2320), 1, + STATE(2344), 1, sym_pattern, - STATE(2670), 1, + STATE(2617), 1, + sym__collection_elements, + STATE(2681), 1, sym__named_expression_lhs, - STATE(2683), 1, + STATE(2790), 1, sym__patterns, - STATE(2689), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, - anon_sym_match, - anon_sym_type, - STATE(1401), 2, + STATE(1381), 2, sym_attribute, sym_subscript, - STATE(2269), 2, + STATE(2285), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2578), 2, + STATE(2585), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(769), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(838), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(842), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31396,7 +31491,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31411,78 +31506,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3236] = 30, - ACTIONS(725), 1, + [2883] = 30, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(824), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(826), 1, anon_sym_lambda, - ACTIONS(821), 1, + ACTIONS(828), 1, anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(880), 1, sym_identifier, - ACTIONS(873), 1, + ACTIONS(882), 1, anon_sym_LPAREN, - ACTIONS(875), 1, + ACTIONS(886), 1, anon_sym_STAR, - ACTIONS(881), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(885), 1, + ACTIONS(894), 1, anon_sym_await, - ACTIONS(939), 1, + ACTIONS(938), 1, anon_sym_RBRACK, - STATE(869), 1, + STATE(960), 1, sym_primary_expression, - STATE(969), 1, + STATE(974), 1, sym_string, - STATE(1296), 1, + STATE(1309), 1, sym_list_splat_pattern, - STATE(1714), 1, + STATE(1718), 1, sym_expression, - STATE(2486), 1, + STATE(2464), 1, sym_pattern, - STATE(2646), 1, - sym__patterns, - STATE(2650), 1, + STATE(2662), 1, sym__collection_elements, - STATE(2762), 1, + STATE(2748), 1, + sym__patterns, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(879), 2, - anon_sym_match, - anon_sym_type, - STATE(1374), 2, + STATE(1316), 2, sym_attribute, sym_subscript, - STATE(2525), 2, + STATE(2527), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(723), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(877), 3, + ACTIONS(884), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(888), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, + STATE(2381), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(711), 4, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31490,7 +31586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 14, + STATE(1184), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31505,76 +31601,77 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3360] = 30, - ACTIONS(743), 1, + [3008] = 30, + ACTIONS(706), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(827), 1, + ACTIONS(856), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(862), 1, anon_sym_STAR, - ACTIONS(837), 1, + ACTIONS(866), 1, anon_sym_STAR_STAR, - ACTIONS(841), 1, + ACTIONS(870), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(872), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(874), 1, anon_sym_yield, - ACTIONS(847), 1, + ACTIONS(876), 1, anon_sym_await, - ACTIONS(941), 1, + ACTIONS(940), 1, anon_sym_COMMA, - ACTIONS(943), 1, + ACTIONS(942), 1, anon_sym_RBRACE, - STATE(935), 1, + STATE(959), 1, sym_primary_expression, - STATE(973), 1, + STATE(972), 1, sym_string, - STATE(1231), 1, + STATE(1275), 1, sym_list_splat_pattern, STATE(1673), 1, sym_expression, - STATE(1862), 1, + STATE(1867), 1, sym_pair, - STATE(2411), 1, + STATE(2389), 1, sym_dictionary_splat, - STATE(2607), 1, - sym__collection_elements, - STATE(2675), 1, + STATE(2683), 1, sym__named_expression_lhs, + STATE(2691), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(745), 3, + ACTIONS(708), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(860), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(864), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2333), 3, + STATE(2338), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(733), 4, + ACTIONS(696), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1775), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31582,7 +31679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31599,79 +31696,80 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3484] = 31, - ACTIONS(771), 1, + [3133] = 31, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(832), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(834), 1, anon_sym_LPAREN, - ACTIONS(855), 1, + ACTIONS(840), 1, anon_sym_STAR, - ACTIONS(861), 1, + ACTIONS(844), 1, anon_sym_LBRACK, - ACTIONS(863), 1, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(848), 1, anon_sym_lambda, - ACTIONS(867), 1, + ACTIONS(850), 1, anon_sym_yield, - ACTIONS(869), 1, + ACTIONS(852), 1, anon_sym_await, - ACTIONS(945), 1, + ACTIONS(944), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(963), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1035), 1, sym_string, - STATE(1398), 1, + STATE(1379), 1, sym_list_splat_pattern, - STATE(1676), 1, + STATE(1689), 1, sym_expression, - STATE(2320), 1, - sym_pattern, - STATE(2327), 1, + STATE(2252), 1, sym_yield, - STATE(2670), 1, - sym__named_expression_lhs, - STATE(2672), 1, + STATE(2344), 1, + sym_pattern, + STATE(2617), 1, sym__collection_elements, - STATE(2756), 1, + STATE(2681), 1, + sym__named_expression_lhs, + STATE(2696), 1, sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, - anon_sym_match, - anon_sym_type, - STATE(1401), 2, + STATE(1381), 2, sym_attribute, sym_subscript, - STATE(2269), 2, + STATE(2285), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2578), 2, + STATE(2585), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(769), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(838), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(842), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31679,7 +31777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 14, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31694,78 +31792,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3610] = 30, - ACTIONS(725), 1, + [3260] = 30, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(824), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(826), 1, anon_sym_lambda, - ACTIONS(821), 1, + ACTIONS(828), 1, anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(880), 1, sym_identifier, - ACTIONS(873), 1, + ACTIONS(882), 1, anon_sym_LPAREN, - ACTIONS(875), 1, + ACTIONS(886), 1, anon_sym_STAR, - ACTIONS(881), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(885), 1, + ACTIONS(894), 1, anon_sym_await, - ACTIONS(947), 1, + ACTIONS(946), 1, anon_sym_RBRACK, - STATE(869), 1, + STATE(960), 1, sym_primary_expression, - STATE(969), 1, + STATE(974), 1, sym_string, - STATE(1296), 1, + STATE(1309), 1, sym_list_splat_pattern, - STATE(1714), 1, + STATE(1718), 1, sym_expression, - STATE(2486), 1, + STATE(2464), 1, sym_pattern, - STATE(2626), 1, + STATE(2597), 1, sym__patterns, - STATE(2650), 1, + STATE(2662), 1, sym__collection_elements, - STATE(2762), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(879), 2, - anon_sym_match, - anon_sym_type, - STATE(1374), 2, + STATE(1316), 2, sym_attribute, sym_subscript, - STATE(2525), 2, + STATE(2527), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(723), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(877), 3, + ACTIONS(884), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(888), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, + STATE(2381), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(711), 4, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31773,7 +31872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 14, + STATE(1184), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31788,78 +31887,270 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3734] = 30, - ACTIONS(725), 1, + [3385] = 30, + ACTIONS(706), 1, + anon_sym_LBRACK, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(854), 1, + sym_identifier, + ACTIONS(856), 1, + anon_sym_LPAREN, + ACTIONS(862), 1, + anon_sym_STAR, + ACTIONS(866), 1, + anon_sym_STAR_STAR, + ACTIONS(870), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(872), 1, anon_sym_lambda, - ACTIONS(821), 1, + ACTIONS(874), 1, anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(876), 1, + anon_sym_await, + ACTIONS(948), 1, + anon_sym_COMMA, + ACTIONS(950), 1, + anon_sym_RBRACE, + STATE(959), 1, + sym_primary_expression, + STATE(972), 1, + sym_string, + STATE(1275), 1, + sym_list_splat_pattern, + STATE(1675), 1, + sym_expression, + STATE(1837), 1, + sym_pair, + STATE(2413), 1, + sym_dictionary_splat, + STATE(2611), 1, + sym__collection_elements, + STATE(2683), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(712), 2, + sym_ellipsis, + sym_float, + ACTIONS(708), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(860), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(864), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2338), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(696), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1775), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + 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, + [3510] = 31, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(832), 1, sym_identifier, - ACTIONS(873), 1, + ACTIONS(834), 1, anon_sym_LPAREN, - ACTIONS(875), 1, + ACTIONS(840), 1, anon_sym_STAR, - ACTIONS(881), 1, + ACTIONS(844), 1, anon_sym_LBRACK, - ACTIONS(885), 1, + ACTIONS(846), 1, + anon_sym_not, + ACTIONS(848), 1, + anon_sym_lambda, + ACTIONS(850), 1, + anon_sym_yield, + ACTIONS(852), 1, anon_sym_await, - ACTIONS(949), 1, - anon_sym_RBRACK, - STATE(869), 1, + ACTIONS(952), 1, + anon_sym_RPAREN, + STATE(963), 1, sym_primary_expression, - STATE(969), 1, + STATE(1035), 1, sym_string, - STATE(1296), 1, + STATE(1379), 1, sym_list_splat_pattern, - STATE(1714), 1, + STATE(1684), 1, sym_expression, - STATE(2486), 1, + STATE(2344), 1, sym_pattern, - STATE(2650), 1, - sym__collection_elements, - STATE(2699), 1, + STATE(2460), 1, + sym_yield, + STATE(2658), 1, sym__patterns, - STATE(2762), 1, + STATE(2681), 1, sym__named_expression_lhs, + STATE(2776), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(879), 2, + STATE(1381), 2, + sym_attribute, + sym_subscript, + STATE(2285), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2585), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(732), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(838), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - STATE(1374), 2, + ACTIONS(842), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(718), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1832), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1377), 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, + [3637] = 30, + ACTIONS(800), 1, + anon_sym_LBRACE, + ACTIONS(806), 1, + sym_string_start, + ACTIONS(824), 1, + anon_sym_not, + ACTIONS(826), 1, + anon_sym_lambda, + ACTIONS(828), 1, + anon_sym_yield, + ACTIONS(880), 1, + sym_identifier, + ACTIONS(882), 1, + anon_sym_LPAREN, + ACTIONS(886), 1, + anon_sym_STAR, + ACTIONS(890), 1, + anon_sym_LBRACK, + ACTIONS(894), 1, + anon_sym_await, + ACTIONS(954), 1, + anon_sym_RBRACK, + STATE(960), 1, + sym_primary_expression, + STATE(974), 1, + sym_string, + STATE(1309), 1, + sym_list_splat_pattern, + STATE(1718), 1, + sym_expression, + STATE(2464), 1, + sym_pattern, + STATE(2602), 1, + sym__patterns, + STATE(2662), 1, + sym__collection_elements, + STATE(2772), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(802), 2, + sym_ellipsis, + sym_float, + STATE(1316), 2, sym_attribute, sym_subscript, - STATE(2525), 2, + STATE(2527), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(723), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(877), 3, + ACTIONS(884), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(888), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, + STATE(2381), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(711), 4, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31867,7 +32158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 14, + STATE(1184), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31882,78 +32173,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3858] = 30, - ACTIONS(725), 1, + [3762] = 30, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(824), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(826), 1, anon_sym_lambda, - ACTIONS(821), 1, + ACTIONS(828), 1, anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(880), 1, sym_identifier, - ACTIONS(873), 1, + ACTIONS(882), 1, anon_sym_LPAREN, - ACTIONS(875), 1, + ACTIONS(886), 1, anon_sym_STAR, - ACTIONS(881), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(885), 1, + ACTIONS(894), 1, anon_sym_await, - ACTIONS(951), 1, + ACTIONS(956), 1, anon_sym_RBRACK, - STATE(869), 1, + STATE(960), 1, sym_primary_expression, - STATE(969), 1, + STATE(974), 1, sym_string, - STATE(1296), 1, + STATE(1309), 1, sym_list_splat_pattern, - STATE(1683), 1, + STATE(1718), 1, sym_expression, - STATE(2486), 1, + STATE(2464), 1, sym_pattern, - STATE(2593), 1, + STATE(2662), 1, sym__collection_elements, - STATE(2722), 1, - sym__patterns, - STATE(2762), 1, + STATE(2772), 1, sym__named_expression_lhs, + STATE(2791), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(879), 2, - anon_sym_match, - anon_sym_type, - STATE(1374), 2, + STATE(1316), 2, sym_attribute, sym_subscript, - STATE(2525), 2, + STATE(2527), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(723), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(877), 3, + ACTIONS(884), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(888), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, + STATE(2381), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(711), 4, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31961,7 +32253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 14, + STATE(1184), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31976,78 +32268,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3982] = 30, - ACTIONS(725), 1, + [3887] = 30, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(824), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(826), 1, anon_sym_lambda, - ACTIONS(821), 1, + ACTIONS(828), 1, anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(880), 1, sym_identifier, - ACTIONS(873), 1, + ACTIONS(882), 1, anon_sym_LPAREN, - ACTIONS(875), 1, + ACTIONS(886), 1, anon_sym_STAR, - ACTIONS(881), 1, + ACTIONS(890), 1, anon_sym_LBRACK, - ACTIONS(885), 1, + ACTIONS(894), 1, anon_sym_await, - ACTIONS(953), 1, + ACTIONS(958), 1, anon_sym_RBRACK, - STATE(869), 1, + STATE(960), 1, sym_primary_expression, - STATE(969), 1, + STATE(974), 1, sym_string, - STATE(1296), 1, + STATE(1309), 1, sym_list_splat_pattern, - STATE(1683), 1, + STATE(1680), 1, sym_expression, - STATE(2486), 1, + STATE(2464), 1, sym_pattern, - STATE(2593), 1, + STATE(2675), 1, sym__collection_elements, - STATE(2722), 1, + STATE(2748), 1, sym__patterns, - STATE(2762), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(879), 2, - anon_sym_match, - anon_sym_type, - STATE(1374), 2, + STATE(1316), 2, sym_attribute, sym_subscript, - STATE(2525), 2, + STATE(2527), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(723), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(877), 3, + ACTIONS(884), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(888), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, + STATE(2381), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(711), 4, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32055,7 +32348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 14, + STATE(1184), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32070,59 +32363,88 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4106] = 22, - ACTIONS(291), 1, + [4012] = 31, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(296), 1, - anon_sym_TILDE, - ACTIONS(308), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(955), 1, + ACTIONS(832), 1, sym_identifier, - ACTIONS(959), 1, + ACTIONS(834), 1, anon_sym_LPAREN, - ACTIONS(961), 1, + ACTIONS(840), 1, anon_sym_STAR, - ACTIONS(967), 1, + ACTIONS(844), 1, anon_sym_LBRACK, - ACTIONS(969), 1, + ACTIONS(846), 1, + anon_sym_not, + ACTIONS(848), 1, + anon_sym_lambda, + ACTIONS(850), 1, + anon_sym_yield, + ACTIONS(852), 1, anon_sym_await, - STATE(1017), 1, + ACTIONS(960), 1, + anon_sym_RPAREN, + STATE(963), 1, + sym_primary_expression, + STATE(1035), 1, sym_string, - STATE(1359), 1, + STATE(1379), 1, sym_list_splat_pattern, - STATE(1592), 1, + STATE(1684), 1, + sym_expression, + STATE(2344), 1, sym_pattern, - STATE(1615), 1, - sym_primary_expression, + STATE(2460), 1, + sym_yield, + STATE(2658), 1, + sym__patterns, + STATE(2681), 1, + sym__named_expression_lhs, + STATE(2776), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(660), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(965), 2, - anon_sym_match, - anon_sym_type, - STATE(1362), 2, + STATE(1381), 2, sym_attribute, sym_subscript, - STATE(1594), 2, + STATE(2285), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2585), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(963), 3, + ACTIONS(732), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(838), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(842), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1832), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1377), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32137,77 +32459,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(957), 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, - [4213] = 22, - ACTIONS(291), 1, - anon_sym_LBRACE, + [4139] = 22, ACTIONS(296), 1, + anon_sym_LBRACE, + ACTIONS(301), 1, anon_sym_TILDE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(955), 1, + ACTIONS(962), 1, sym_identifier, - ACTIONS(959), 1, + ACTIONS(966), 1, anon_sym_LPAREN, - ACTIONS(961), 1, + ACTIONS(970), 1, anon_sym_STAR, - ACTIONS(967), 1, + ACTIONS(974), 1, anon_sym_LBRACK, - ACTIONS(969), 1, + ACTIONS(976), 1, anon_sym_await, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1359), 1, + STATE(1335), 1, sym_list_splat_pattern, - STATE(1592), 1, + STATE(1595), 1, sym_pattern, - STATE(1615), 1, + STATE(1617), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(660), 2, + ACTIONS(667), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(965), 2, - anon_sym_match, - anon_sym_type, - STATE(1362), 2, + STATE(1336), 2, sym_attribute, sym_subscript, - STATE(1594), 2, + STATE(1597), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(963), 3, + ACTIONS(968), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(972), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32222,7 +32527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(971), 17, + ACTIONS(964), 17, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -32240,172 +32545,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [4320] = 27, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [4247] = 22, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(301), 1, + anon_sym_TILDE, + ACTIONS(313), 1, sym_string_start, - ACTIONS(811), 1, - anon_sym_STAR_STAR, - ACTIONS(973), 1, + ACTIONS(962), 1, sym_identifier, - ACTIONS(975), 1, + ACTIONS(966), 1, + anon_sym_LPAREN, + ACTIONS(970), 1, anon_sym_STAR, - ACTIONS(979), 1, - anon_sym_match, - ACTIONS(981), 1, - anon_sym_type, - ACTIONS(983), 1, - anon_sym_RBRACK, - ACTIONS(985), 1, - anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(974), 1, + anon_sym_LBRACK, + ACTIONS(976), 1, anon_sym_await, - STATE(976), 1, - sym_primary_expression, - STATE(1068), 1, + STATE(1032), 1, sym_string, - STATE(1436), 1, + STATE(1335), 1, sym_list_splat_pattern, - STATE(1785), 1, - sym_expression, - STATE(2068), 1, - sym_type, - STATE(2596), 1, - sym__named_expression_lhs, + STATE(1595), 1, + sym_pattern, + STATE(1617), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(791), 3, + ACTIONS(667), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(977), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(779), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(2043), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1768), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1439), 16, - sym_binary_operator, - sym_unary_operator, + STATE(1336), 2, 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, - [4436] = 27, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, - anon_sym_LBRACE, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(811), 1, - anon_sym_STAR_STAR, - ACTIONS(973), 1, - sym_identifier, - ACTIONS(975), 1, - anon_sym_STAR, - ACTIONS(979), 1, + STATE(1597), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(968), 3, + anon_sym_lazy, anon_sym_match, - ACTIONS(981), 1, anon_sym_type, - ACTIONS(985), 1, - anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - ACTIONS(991), 1, - anon_sym_RBRACK, - STATE(976), 1, - sym_primary_expression, - STATE(1068), 1, - sym_string, - STATE(1436), 1, - sym_list_splat_pattern, - STATE(1785), 1, - sym_expression, - STATE(2068), 1, - sym_type, - STATE(2596), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(795), 2, - sym_ellipsis, - sym_float, - ACTIONS(791), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(972), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2043), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1768), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1439), 16, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -32418,71 +32613,90 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4552] = 27, - ACTIONS(781), 1, + ACTIONS(978), 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, + [4355] = 27, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(811), 1, + ACTIONS(818), 1, anon_sym_STAR_STAR, - ACTIONS(973), 1, + ACTIONS(980), 1, sym_identifier, - ACTIONS(975), 1, + ACTIONS(984), 1, anon_sym_STAR, - ACTIONS(979), 1, - anon_sym_match, - ACTIONS(981), 1, + ACTIONS(988), 1, anon_sym_type, - ACTIONS(985), 1, + ACTIONS(990), 1, + anon_sym_RBRACK, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(993), 1, - anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1780), 1, sym_expression, - STATE(2068), 1, + STATE(2079), 1, sym_type, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(791), 3, + ACTIONS(982), 2, + anon_sym_lazy, + anon_sym_match, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2043), 5, + STATE(2008), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32490,7 +32704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32507,71 +32721,72 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4668] = 27, - ACTIONS(781), 1, + [4472] = 27, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(811), 1, + ACTIONS(818), 1, anon_sym_STAR_STAR, - ACTIONS(973), 1, + ACTIONS(980), 1, sym_identifier, - ACTIONS(975), 1, + ACTIONS(984), 1, anon_sym_STAR, - ACTIONS(979), 1, - anon_sym_match, - ACTIONS(981), 1, + ACTIONS(988), 1, anon_sym_type, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(995), 1, + ACTIONS(998), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1780), 1, sym_expression, - STATE(2068), 1, + STATE(2079), 1, sym_type, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(791), 3, + ACTIONS(982), 2, + anon_sym_lazy, + anon_sym_match, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2043), 5, + STATE(2008), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32579,7 +32794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32596,71 +32811,72 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4784] = 27, - ACTIONS(781), 1, + [4589] = 27, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(811), 1, + ACTIONS(818), 1, anon_sym_STAR_STAR, - ACTIONS(973), 1, + ACTIONS(980), 1, sym_identifier, - ACTIONS(975), 1, + ACTIONS(984), 1, anon_sym_STAR, - ACTIONS(979), 1, - anon_sym_match, - ACTIONS(981), 1, + ACTIONS(988), 1, anon_sym_type, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(997), 1, + ACTIONS(1000), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1780), 1, sym_expression, - STATE(2068), 1, + STATE(2079), 1, sym_type, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(791), 3, + ACTIONS(982), 2, + anon_sym_lazy, + anon_sym_match, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2043), 5, + STATE(2008), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32668,7 +32884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32685,71 +32901,72 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4900] = 27, - ACTIONS(781), 1, + [4706] = 27, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(811), 1, + ACTIONS(818), 1, anon_sym_STAR_STAR, - ACTIONS(973), 1, + ACTIONS(980), 1, sym_identifier, - ACTIONS(975), 1, + ACTIONS(984), 1, anon_sym_STAR, - ACTIONS(979), 1, - anon_sym_match, - ACTIONS(981), 1, + ACTIONS(988), 1, anon_sym_type, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(999), 1, + ACTIONS(1002), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1780), 1, sym_expression, - STATE(2068), 1, + STATE(2079), 1, sym_type, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(791), 3, + ACTIONS(982), 2, + anon_sym_lazy, + anon_sym_match, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2043), 5, + STATE(2008), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32757,7 +32974,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32774,71 +32991,72 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5016] = 27, - ACTIONS(781), 1, + [4823] = 27, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(811), 1, + ACTIONS(818), 1, anon_sym_STAR_STAR, - ACTIONS(973), 1, + ACTIONS(980), 1, sym_identifier, - ACTIONS(975), 1, + ACTIONS(984), 1, anon_sym_STAR, - ACTIONS(979), 1, - anon_sym_match, - ACTIONS(981), 1, + ACTIONS(988), 1, anon_sym_type, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1001), 1, + ACTIONS(1004), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1780), 1, sym_expression, - STATE(2068), 1, + STATE(2079), 1, sym_type, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(791), 3, + ACTIONS(982), 2, + anon_sym_lazy, + anon_sym_match, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2043), 5, + STATE(2008), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32846,7 +33064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32863,73 +33081,74 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5132] = 27, - ACTIONS(678), 1, + [4940] = 27, + ACTIONS(688), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(694), 1, sym_string_start, - ACTIONS(845), 1, + ACTIONS(874), 1, anon_sym_yield, - ACTIONS(1003), 1, + ACTIONS(1006), 1, sym_identifier, - ACTIONS(1005), 1, + ACTIONS(1008), 1, anon_sym_LPAREN, - ACTIONS(1007), 1, + ACTIONS(1012), 1, anon_sym_STAR, - ACTIONS(1013), 1, + ACTIONS(1016), 1, anon_sym_LBRACK, - ACTIONS(1015), 1, + ACTIONS(1018), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1020), 1, anon_sym_lambda, - ACTIONS(1019), 1, + ACTIONS(1022), 1, anon_sym_await, - STATE(942), 1, + STATE(958), 1, sym_primary_expression, - STATE(981), 1, + STATE(969), 1, sym_string, - STATE(1208), 1, + STATE(1260), 1, sym_list_splat_pattern, - STATE(1738), 1, + STATE(1751), 1, sym_expression, - STATE(2568), 1, + STATE(2584), 1, sym_pattern, - STATE(2764), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(690), 2, sym_ellipsis, sym_float, - ACTIONS(1011), 2, - anon_sym_match, - anon_sym_type, - STATE(1210), 2, + STATE(1261), 2, sym_attribute, sym_subscript, - STATE(1634), 2, + STATE(1637), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(676), 3, + ACTIONS(686), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1009), 3, + ACTIONS(1010), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1014), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(674), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2103), 4, + STATE(2109), 4, sym_expression_list, sym_pattern_list, sym_yield, sym__f_expression, - STATE(1753), 7, + STATE(1770), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32937,7 +33156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 14, + STATE(1205), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32952,71 +33171,72 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5248] = 27, - ACTIONS(781), 1, + [5057] = 27, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(811), 1, + ACTIONS(818), 1, anon_sym_STAR_STAR, - ACTIONS(973), 1, + ACTIONS(980), 1, sym_identifier, - ACTIONS(975), 1, + ACTIONS(984), 1, anon_sym_STAR, - ACTIONS(979), 1, - anon_sym_match, - ACTIONS(981), 1, + ACTIONS(988), 1, anon_sym_type, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1021), 1, + ACTIONS(1024), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1780), 1, sym_expression, - STATE(2068), 1, + STATE(2079), 1, sym_type, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(791), 3, + ACTIONS(982), 2, + anon_sym_lazy, + anon_sym_match, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2043), 5, + STATE(2008), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33024,7 +33244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33041,73 +33261,72 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5364] = 27, - ACTIONS(678), 1, + [5174] = 27, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(774), 1, + anon_sym_LBRACK, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(1003), 1, + ACTIONS(818), 1, + anon_sym_STAR_STAR, + ACTIONS(980), 1, sym_identifier, - ACTIONS(1005), 1, - anon_sym_LPAREN, - ACTIONS(1007), 1, + ACTIONS(984), 1, anon_sym_STAR, - ACTIONS(1013), 1, - anon_sym_LBRACK, - ACTIONS(1015), 1, + ACTIONS(988), 1, + anon_sym_type, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(1019), 1, + ACTIONS(996), 1, anon_sym_await, - STATE(942), 1, + ACTIONS(1026), 1, + anon_sym_RBRACK, + STATE(979), 1, sym_primary_expression, - STATE(981), 1, + STATE(1131), 1, sym_string, - STATE(1208), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1738), 1, + STATE(1780), 1, sym_expression, - STATE(2568), 1, - sym_pattern, - STATE(2764), 1, + STATE(2079), 1, + sym_type, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(1011), 2, + ACTIONS(982), 2, + anon_sym_lazy, anon_sym_match, - anon_sym_type, - STATE(1210), 2, - sym_attribute, - sym_subscript, - STATE(1634), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(676), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1009), 3, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2039), 4, - sym_expression_list, - sym_pattern_list, - sym_yield, - sym__f_expression, - STATE(1753), 7, + STATE(2008), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33115,9 +33334,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 14, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -33130,69 +33351,72 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5480] = 26, - ACTIONS(255), 1, - sym_identifier, - ACTIONS(277), 1, - anon_sym_match, - ACTIONS(282), 1, - anon_sym_type, - ACTIONS(291), 1, + [5291] = 27, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(774), 1, + anon_sym_LBRACK, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(325), 1, + ACTIONS(818), 1, anon_sym_STAR_STAR, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1023), 1, + ACTIONS(980), 1, + sym_identifier, + ACTIONS(984), 1, anon_sym_STAR, - ACTIONS(1025), 1, + ACTIONS(988), 1, + anon_sym_type, + ACTIONS(992), 1, anon_sym_not, - STATE(962), 1, + ACTIONS(994), 1, + anon_sym_lambda, + ACTIONS(996), 1, + anon_sym_await, + ACTIONS(1028), 1, + anon_sym_RBRACK, + STATE(979), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1131), 1, sym_string, - STATE(1416), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1780), 1, sym_expression, - STATE(2356), 1, + STATE(2079), 1, sym_type, - STATE(2653), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(982), 2, + anon_sym_lazy, + anon_sym_match, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(986), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2046), 5, + STATE(2008), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1750), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33200,7 +33424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33217,69 +33441,74 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5593] = 26, - ACTIONS(255), 1, - sym_identifier, - ACTIONS(277), 1, - anon_sym_match, - ACTIONS(282), 1, - anon_sym_type, - ACTIONS(291), 1, + [5408] = 27, + ACTIONS(688), 1, anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(694), 1, sym_string_start, - ACTIONS(325), 1, - anon_sym_STAR_STAR, - ACTIONS(648), 1, + ACTIONS(874), 1, + anon_sym_yield, + ACTIONS(1006), 1, + sym_identifier, + ACTIONS(1008), 1, anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1023), 1, + ACTIONS(1012), 1, anon_sym_STAR, - ACTIONS(1025), 1, + ACTIONS(1016), 1, + anon_sym_LBRACK, + ACTIONS(1018), 1, anon_sym_not, - STATE(962), 1, + ACTIONS(1020), 1, + anon_sym_lambda, + ACTIONS(1022), 1, + anon_sym_await, + STATE(958), 1, sym_primary_expression, - STATE(1017), 1, + STATE(969), 1, sym_string, - STATE(1416), 1, + STATE(1260), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1751), 1, sym_expression, - STATE(2455), 1, - sym_type, + STATE(2584), 1, + sym_pattern, STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(690), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + STATE(1261), 2, + sym_attribute, + sym_subscript, + STATE(1637), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(686), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(1010), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1014), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(674), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2046), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1750), 7, + STATE(2114), 4, + sym_expression_list, + sym_pattern_list, + sym_yield, + sym__f_expression, + STATE(1770), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33287,11 +33516,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1205), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -33304,61 +33531,82 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5706] = 22, - ACTIONS(291), 1, - anon_sym_LBRACE, + [5525] = 26, + ACTIONS(260), 1, + sym_identifier, + ACTIONS(287), 1, + anon_sym_type, ACTIONS(296), 1, - anon_sym_TILDE, - ACTIONS(308), 1, + anon_sym_LBRACE, + ACTIONS(303), 1, + anon_sym_lambda, + ACTIONS(311), 1, + anon_sym_await, + ACTIONS(313), 1, sym_string_start, - ACTIONS(1027), 1, - sym_identifier, - ACTIONS(1029), 1, + ACTIONS(332), 1, + anon_sym_STAR_STAR, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(1031), 1, - anon_sym_STAR, - ACTIONS(1037), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1039), 1, - anon_sym_await, - STATE(1017), 1, + ACTIONS(1030), 1, + anon_sym_STAR, + ACTIONS(1032), 1, + anon_sym_not, + STATE(962), 1, + sym_primary_expression, + STATE(1032), 1, sym_string, - STATE(1475), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1623), 1, - sym_primary_expression, - STATE(1629), 1, - sym_pattern, + STATE(1759), 1, + sym_expression, + STATE(2093), 1, + sym_type, + STATE(2751), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(272), 2, + anon_sym_lazy, + anon_sym_match, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(660), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1035), 2, - anon_sym_match, - anon_sym_type, - STATE(1481), 2, - sym_attribute, - sym_subscript, - STATE(1634), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1033), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(2105), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1730), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -33371,85 +33619,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(971), 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, - [5811] = 26, - 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(379), 1, - anon_sym_match, - ACTIONS(390), 1, - anon_sym_await, - ACTIONS(629), 1, + [5639] = 26, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(1041), 1, + ACTIONS(778), 1, + anon_sym_LBRACE, + ACTIONS(784), 1, + sym_string_start, + ACTIONS(818), 1, + anon_sym_STAR_STAR, + ACTIONS(980), 1, sym_identifier, - ACTIONS(1043), 1, + ACTIONS(984), 1, anon_sym_STAR, - ACTIONS(1045), 1, - anon_sym_STAR_STAR, - ACTIONS(1047), 1, + ACTIONS(988), 1, anon_sym_type, - STATE(859), 1, + ACTIONS(992), 1, + anon_sym_not, + ACTIONS(994), 1, + anon_sym_lambda, + ACTIONS(996), 1, + anon_sym_await, + STATE(979), 1, sym_primary_expression, - STATE(961), 1, + STATE(1131), 1, sym_string, - STATE(1077), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1729), 1, + STATE(1780), 1, sym_expression, - STATE(1937), 1, + STATE(2010), 1, sym_type, - STATE(2625), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(982), 2, + anon_sym_lazy, + anon_sym_match, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1971), 5, + STATE(2008), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1665), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33457,7 +33690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33474,69 +33707,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5924] = 26, - ACTIONS(67), 1, + [5753] = 25, + ACTIONS(676), 1, + anon_sym_LPAREN, + ACTIONS(684), 1, + anon_sym_LBRACK, + ACTIONS(688), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(694), 1, + sym_string_start, + ACTIONS(1012), 1, + anon_sym_STAR, + ACTIONS(1018), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1020), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(379), 1, - anon_sym_match, - ACTIONS(390), 1, - anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1041), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1043), 1, - anon_sym_STAR, - ACTIONS(1045), 1, - anon_sym_STAR_STAR, - ACTIONS(1047), 1, - anon_sym_type, - STATE(859), 1, + ACTIONS(1036), 1, + anon_sym_from, + ACTIONS(1044), 1, + anon_sym_await, + STATE(958), 1, sym_primary_expression, - STATE(961), 1, + STATE(969), 1, sym_string, - STATE(1077), 1, + STATE(1147), 1, sym_list_splat_pattern, - STATE(1729), 1, + STATE(1737), 1, sym_expression, - STATE(1940), 1, - sym_type, - STATE(2625), 1, + STATE(2067), 1, + sym_expression_list, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(690), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(686), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(1040), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1042), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(674), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1971), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1665), 7, + ACTIONS(1038), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1770), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33544,7 +33777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1205), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33561,69 +33794,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6037] = 26, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, + [5865] = 27, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(1049), 1, + ACTIONS(846), 1, + anon_sym_not, + ACTIONS(848), 1, + anon_sym_lambda, + ACTIONS(1046), 1, sym_identifier, - ACTIONS(1051), 1, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1050), 1, + anon_sym_RPAREN, + ACTIONS(1052), 1, + anon_sym_COMMA, + ACTIONS(1056), 1, anon_sym_STAR, - ACTIONS(1055), 1, - anon_sym_match, - ACTIONS(1057), 1, + ACTIONS(1060), 1, anon_sym_STAR_STAR, - ACTIONS(1059), 1, - anon_sym_type, - ACTIONS(1061), 1, - anon_sym_not, - ACTIONS(1063), 1, - anon_sym_lambda, - ACTIONS(1065), 1, + ACTIONS(1062), 1, anon_sym_await, - STATE(964), 1, + STATE(963), 1, sym_primary_expression, - STATE(993), 1, + STATE(1035), 1, sym_string, - STATE(1384), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(1745), 1, + STATE(1701), 1, sym_expression, - STATE(1944), 1, - sym_type, - STATE(2647), 1, + STATE(2307), 1, + sym_parenthesized_list_splat, + STATE(2681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(701), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(1054), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1058), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + STATE(2287), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1941), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1743), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33631,7 +33866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33648,69 +33883,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6150] = 26, - ACTIONS(691), 1, + [5981] = 26, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(1049), 1, + ACTIONS(818), 1, + anon_sym_STAR_STAR, + ACTIONS(980), 1, sym_identifier, - ACTIONS(1051), 1, + ACTIONS(984), 1, anon_sym_STAR, - ACTIONS(1055), 1, - anon_sym_match, - ACTIONS(1057), 1, - anon_sym_STAR_STAR, - ACTIONS(1059), 1, + ACTIONS(988), 1, anon_sym_type, - ACTIONS(1061), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(1065), 1, + ACTIONS(996), 1, anon_sym_await, - STATE(964), 1, + STATE(979), 1, sym_primary_expression, - STATE(993), 1, + STATE(1131), 1, sym_string, - STATE(1384), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1745), 1, + STATE(1780), 1, sym_expression, - STATE(2061), 1, + STATE(2079), 1, sym_type, - STATE(2647), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(701), 3, + ACTIONS(982), 2, + anon_sym_lazy, + anon_sym_match, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1941), 5, + STATE(2008), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1743), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33718,7 +33954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33735,69 +33971,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6263] = 26, - 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(379), 1, - anon_sym_match, - ACTIONS(390), 1, - anon_sym_await, - ACTIONS(629), 1, + [6095] = 26, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(1041), 1, + ACTIONS(756), 1, + anon_sym_LBRACE, + ACTIONS(762), 1, + sym_string_start, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1043), 1, + ACTIONS(1068), 1, anon_sym_STAR, - ACTIONS(1045), 1, + ACTIONS(1072), 1, anon_sym_STAR_STAR, - ACTIONS(1047), 1, + ACTIONS(1074), 1, anon_sym_type, - STATE(859), 1, + ACTIONS(1076), 1, + anon_sym_not, + ACTIONS(1078), 1, + anon_sym_lambda, + ACTIONS(1080), 1, + anon_sym_await, + STATE(964), 1, sym_primary_expression, - STATE(961), 1, + STATE(1043), 1, sym_string, - STATE(1077), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1729), 1, + STATE(1734), 1, sym_expression, - STATE(1950), 1, + STATE(1999), 1, sym_type, - STATE(2625), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(1066), 2, + anon_sym_lazy, + anon_sym_match, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(1070), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1971), 5, + STATE(1970), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1665), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33805,7 +34042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33822,69 +34059,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6376] = 26, - ACTIONS(781), 1, + [6209] = 26, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(811), 1, - anon_sym_STAR_STAR, - ACTIONS(973), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(975), 1, + ACTIONS(1068), 1, anon_sym_STAR, - ACTIONS(979), 1, - anon_sym_match, - ACTIONS(981), 1, + ACTIONS(1072), 1, + anon_sym_STAR_STAR, + ACTIONS(1074), 1, anon_sym_type, - ACTIONS(985), 1, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(1080), 1, anon_sym_await, - STATE(976), 1, + STATE(964), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1043), 1, sym_string, - STATE(1436), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1734), 1, sym_expression, - STATE(2002), 1, + STATE(1947), 1, sym_type, - STATE(2596), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(791), 3, + ACTIONS(1066), 2, + anon_sym_lazy, + anon_sym_match, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(1070), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2043), 5, + STATE(1970), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33892,7 +34130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33909,69 +34147,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6489] = 26, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [6323] = 26, + ACTIONS(260), 1, + sym_identifier, + ACTIONS(287), 1, + anon_sym_type, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(303), 1, + anon_sym_lambda, + ACTIONS(311), 1, + anon_sym_await, + ACTIONS(313), 1, sym_string_start, - ACTIONS(811), 1, + ACTIONS(332), 1, anon_sym_STAR_STAR, - ACTIONS(973), 1, - sym_identifier, - ACTIONS(975), 1, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(1030), 1, anon_sym_STAR, - ACTIONS(979), 1, - anon_sym_match, - ACTIONS(981), 1, - anon_sym_type, - ACTIONS(985), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - STATE(976), 1, + STATE(962), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1032), 1, sym_string, - STATE(1436), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1759), 1, sym_expression, - STATE(2003), 1, + STATE(2341), 1, sym_type, - STATE(2596), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(272), 2, + anon_sym_lazy, + anon_sym_match, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(791), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2043), 5, + STATE(2105), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33979,7 +34218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33996,70 +34235,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6602] = 27, - ACTIONS(767), 1, + [6437] = 27, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(863), 1, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(848), 1, anon_sym_lambda, - ACTIONS(1067), 1, + ACTIONS(1046), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1048), 1, anon_sym_LPAREN, - ACTIONS(1071), 1, - anon_sym_RPAREN, - ACTIONS(1073), 1, - anon_sym_COMMA, - ACTIONS(1075), 1, + ACTIONS(1056), 1, anon_sym_STAR, - ACTIONS(1081), 1, + ACTIONS(1060), 1, anon_sym_STAR_STAR, - ACTIONS(1083), 1, + ACTIONS(1062), 1, anon_sym_await, - STATE(959), 1, + ACTIONS(1082), 1, + anon_sym_RPAREN, + ACTIONS(1084), 1, + anon_sym_COMMA, + STATE(963), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1035), 1, sym_string, - STATE(1337), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(1725), 1, + STATE(1686), 1, sym_expression, - STATE(2276), 1, + STATE(2399), 1, sym_parenthesized_list_splat, - STATE(2670), 1, + STATE(2681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(769), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(1054), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1058), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2275), 3, + STATE(2397), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34067,7 +34307,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34084,69 +34324,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6717] = 26, - ACTIONS(255), 1, + [6553] = 26, + ACTIONS(260), 1, sym_identifier, - ACTIONS(277), 1, - anon_sym_match, - ACTIONS(282), 1, + ACTIONS(287), 1, anon_sym_type, - ACTIONS(291), 1, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(325), 1, + ACTIONS(332), 1, anon_sym_STAR_STAR, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1023), 1, + ACTIONS(1030), 1, anon_sym_STAR, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1759), 1, sym_expression, - STATE(2334), 1, + STATE(2373), 1, sym_type, - STATE(2653), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(272), 2, + anon_sym_lazy, + anon_sym_match, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2046), 5, + STATE(2105), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34154,7 +34395,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34171,69 +34412,72 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6830] = 26, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, + [6667] = 28, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(811), 1, - anon_sym_STAR_STAR, - ACTIONS(973), 1, - sym_identifier, - ACTIONS(975), 1, + ACTIONS(840), 1, anon_sym_STAR, - ACTIONS(979), 1, - anon_sym_match, - ACTIONS(981), 1, - anon_sym_type, - ACTIONS(985), 1, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(848), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(850), 1, + anon_sym_yield, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1086), 1, + sym_identifier, + ACTIONS(1088), 1, + anon_sym_RPAREN, + ACTIONS(1094), 1, anon_sym_await, - STATE(976), 1, + STATE(963), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1035), 1, sym_string, - STATE(1436), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1717), 1, sym_expression, - STATE(2068), 1, - sym_type, - STATE(2596), 1, + STATE(2252), 1, + sym_yield, + STATE(2343), 1, + sym_with_item, + STATE(2617), 1, + sym__collection_elements, + STATE(2681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(791), 3, + STATE(2285), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(1090), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1092), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2043), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1768), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34241,7 +34485,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34258,68 +34502,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6943] = 25, - ACTIONS(666), 1, + [6785] = 26, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(818), 1, + anon_sym_STAR_STAR, + ACTIONS(980), 1, + sym_identifier, + ACTIONS(984), 1, anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(988), 1, + anon_sym_type, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(1085), 1, - sym_identifier, - ACTIONS(1087), 1, - anon_sym_from, - ACTIONS(1095), 1, + ACTIONS(996), 1, anon_sym_await, - STATE(942), 1, + STATE(979), 1, sym_primary_expression, - STATE(981), 1, + STATE(1131), 1, sym_string, - STATE(1147), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1780), 1, sym_expression, - STATE(2059), 1, - sym_expression_list, - STATE(2764), 1, + STATE(1976), 1, + sym_type, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(1093), 2, + ACTIONS(982), 2, + anon_sym_lazy, anon_sym_match, - anon_sym_type, - ACTIONS(676), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1091), 3, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1089), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1753), 7, + STATE(2008), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34327,7 +34573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34344,69 +34590,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7054] = 26, - ACTIONS(255), 1, + [6899] = 26, + ACTIONS(260), 1, sym_identifier, - ACTIONS(277), 1, - anon_sym_match, - ACTIONS(282), 1, + ACTIONS(287), 1, anon_sym_type, - ACTIONS(291), 1, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(325), 1, + ACTIONS(332), 1, anon_sym_STAR_STAR, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1023), 1, + ACTIONS(1030), 1, anon_sym_STAR, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1759), 1, sym_expression, - STATE(2474), 1, + STATE(2477), 1, sym_type, - STATE(2653), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(272), 2, + anon_sym_lazy, + anon_sym_match, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2046), 5, + STATE(2105), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34414,7 +34661,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34431,70 +34678,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7167] = 27, - ACTIONS(699), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, + [7013] = 26, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(709), 1, - sym_string_start, - ACTIONS(1061), 1, + ACTIONS(71), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, - sym_identifier, - ACTIONS(1099), 1, + ACTIONS(83), 1, + sym_string_start, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(1101), 1, - anon_sym_RPAREN, - ACTIONS(1103), 1, - anon_sym_COMMA, - ACTIONS(1105), 1, + ACTIONS(644), 1, + anon_sym_LBRACK, + ACTIONS(1096), 1, + sym_identifier, + ACTIONS(1098), 1, anon_sym_STAR, - ACTIONS(1111), 1, - anon_sym_await, - STATE(964), 1, + ACTIONS(1100), 1, + anon_sym_STAR_STAR, + ACTIONS(1102), 1, + anon_sym_type, + STATE(942), 1, sym_primary_expression, - STATE(993), 1, + STATE(966), 1, sym_string, - STATE(1384), 1, + STATE(1112), 1, sym_list_splat_pattern, - STATE(1871), 1, + STATE(1740), 1, sym_expression, - STATE(2261), 1, - sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2095), 1, + sym_type, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(379), 2, + anon_sym_lazy, anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(384), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2260), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1979), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34502,7 +34749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34519,70 +34766,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7282] = 27, - ACTIONS(767), 1, - anon_sym_LBRACK, - ACTIONS(771), 1, + [7127] = 26, + ACTIONS(260), 1, + sym_identifier, + ACTIONS(287), 1, + anon_sym_type, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(777), 1, - sym_string_start, - ACTIONS(863), 1, - anon_sym_not, - ACTIONS(865), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1069), 1, + ACTIONS(311), 1, + anon_sym_await, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(332), 1, + anon_sym_STAR_STAR, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(1075), 1, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(1030), 1, anon_sym_STAR, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1083), 1, - anon_sym_await, - ACTIONS(1101), 1, - anon_sym_RPAREN, - ACTIONS(1103), 1, - anon_sym_COMMA, - STATE(959), 1, + ACTIONS(1032), 1, + anon_sym_not, + STATE(962), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1032), 1, sym_string, - STATE(1337), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1686), 1, + STATE(1759), 1, sym_expression, - STATE(2261), 1, - sym_parenthesized_list_splat, - STATE(2670), 1, + STATE(2096), 1, + sym_type, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(272), 2, + anon_sym_lazy, + anon_sym_match, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(769), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2260), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(2105), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34590,7 +34837,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34607,69 +34854,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7397] = 26, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [7241] = 26, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(83), 1, sym_string_start, - ACTIONS(811), 1, - anon_sym_STAR_STAR, - ACTIONS(973), 1, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(644), 1, + anon_sym_LBRACK, + ACTIONS(1096), 1, sym_identifier, - ACTIONS(975), 1, + ACTIONS(1098), 1, anon_sym_STAR, - ACTIONS(979), 1, - anon_sym_match, - ACTIONS(981), 1, + ACTIONS(1100), 1, + anon_sym_STAR_STAR, + ACTIONS(1102), 1, anon_sym_type, - ACTIONS(985), 1, - anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - STATE(976), 1, + STATE(942), 1, sym_primary_expression, - STATE(1068), 1, + STATE(966), 1, sym_string, - STATE(1436), 1, + STATE(1112), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1740), 1, sym_expression, - STATE(1949), 1, + STATE(1903), 1, sym_type, - STATE(2596), 1, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(791), 3, + ACTIONS(379), 2, + anon_sym_lazy, + anon_sym_match, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(384), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2043), 5, + STATE(1979), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34677,7 +34925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34694,69 +34942,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7510] = 26, - ACTIONS(691), 1, + [7355] = 26, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(1049), 1, + ACTIONS(818), 1, + anon_sym_STAR_STAR, + ACTIONS(980), 1, sym_identifier, - ACTIONS(1051), 1, + ACTIONS(984), 1, anon_sym_STAR, - ACTIONS(1055), 1, - anon_sym_match, - ACTIONS(1057), 1, - anon_sym_STAR_STAR, - ACTIONS(1059), 1, + ACTIONS(988), 1, anon_sym_type, - ACTIONS(1061), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(1065), 1, + ACTIONS(996), 1, anon_sym_await, - STATE(964), 1, + STATE(979), 1, sym_primary_expression, - STATE(993), 1, + STATE(1131), 1, sym_string, - STATE(1384), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1745), 1, + STATE(1780), 1, sym_expression, - STATE(1993), 1, + STATE(2115), 1, sym_type, - STATE(2647), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(701), 3, + ACTIONS(982), 2, + anon_sym_lazy, + anon_sym_match, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1941), 5, + STATE(2008), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1743), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34764,7 +35013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34781,69 +35030,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7623] = 26, - ACTIONS(691), 1, + [7469] = 26, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(1049), 1, + ACTIONS(1064), 1, sym_identifier, - ACTIONS(1051), 1, + ACTIONS(1068), 1, anon_sym_STAR, - ACTIONS(1055), 1, - anon_sym_match, - ACTIONS(1057), 1, + ACTIONS(1072), 1, anon_sym_STAR_STAR, - ACTIONS(1059), 1, + ACTIONS(1074), 1, anon_sym_type, - ACTIONS(1061), 1, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(1065), 1, + ACTIONS(1080), 1, anon_sym_await, STATE(964), 1, sym_primary_expression, - STATE(993), 1, + STATE(1043), 1, sym_string, - STATE(1384), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1745), 1, + STATE(1734), 1, sym_expression, - STATE(1994), 1, + STATE(1911), 1, sym_type, - STATE(2647), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(701), 3, + ACTIONS(1066), 2, + anon_sym_lazy, + anon_sym_match, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(1070), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1941), 5, + STATE(1970), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1743), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34851,7 +35101,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34868,69 +35118,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7736] = 26, - ACTIONS(255), 1, - sym_identifier, - ACTIONS(277), 1, - anon_sym_match, - ACTIONS(282), 1, - anon_sym_type, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(325), 1, - anon_sym_STAR_STAR, - ACTIONS(648), 1, + [7583] = 26, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(1023), 1, + ACTIONS(756), 1, + anon_sym_LBRACE, + ACTIONS(762), 1, + sym_string_start, + ACTIONS(1064), 1, + sym_identifier, + ACTIONS(1068), 1, anon_sym_STAR, - ACTIONS(1025), 1, + ACTIONS(1072), 1, + anon_sym_STAR_STAR, + ACTIONS(1074), 1, + anon_sym_type, + ACTIONS(1076), 1, anon_sym_not, - STATE(962), 1, + ACTIONS(1078), 1, + anon_sym_lambda, + ACTIONS(1080), 1, + anon_sym_await, + STATE(964), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1043), 1, sym_string, - STATE(1416), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1734), 1, sym_expression, - STATE(2074), 1, + STATE(2028), 1, sym_type, - STATE(2653), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(1066), 2, + anon_sym_lazy, + anon_sym_match, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(1070), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2046), 5, + STATE(1970), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1750), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34938,7 +35189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34955,70 +35206,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7849] = 27, - ACTIONS(767), 1, + [7697] = 27, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(863), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(1067), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1106), 1, anon_sym_LPAREN, - ACTIONS(1075), 1, - anon_sym_STAR, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1083), 1, - anon_sym_await, - ACTIONS(1113), 1, + ACTIONS(1108), 1, anon_sym_RPAREN, - ACTIONS(1115), 1, + ACTIONS(1110), 1, anon_sym_COMMA, - STATE(959), 1, + ACTIONS(1114), 1, + anon_sym_STAR, + ACTIONS(1118), 1, + anon_sym_await, + STATE(964), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1043), 1, sym_string, - STATE(1337), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1690), 1, + STATE(1864), 1, sym_expression, - STATE(2304), 1, + STATE(2262), 1, sym_parenthesized_list_splat, - STATE(2670), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(769), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2303), 3, + STATE(2261), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35026,7 +35278,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35043,70 +35295,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7964] = 27, - ACTIONS(767), 1, + [7813] = 27, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(863), 1, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(848), 1, anon_sym_lambda, - ACTIONS(1067), 1, + ACTIONS(1046), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1048), 1, anon_sym_LPAREN, - ACTIONS(1075), 1, + ACTIONS(1056), 1, anon_sym_STAR, - ACTIONS(1081), 1, + ACTIONS(1060), 1, anon_sym_STAR_STAR, - ACTIONS(1083), 1, + ACTIONS(1062), 1, anon_sym_await, - ACTIONS(1117), 1, + ACTIONS(1108), 1, anon_sym_RPAREN, - ACTIONS(1119), 1, + ACTIONS(1110), 1, anon_sym_COMMA, - STATE(959), 1, + STATE(963), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1035), 1, sym_string, - STATE(1337), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(1694), 1, + STATE(1690), 1, sym_expression, - STATE(2346), 1, + STATE(2262), 1, sym_parenthesized_list_splat, - STATE(2670), 1, + STATE(2681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(769), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(1054), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1058), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2345), 3, + STATE(2261), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35114,7 +35367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35131,71 +35384,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8079] = 28, - ACTIONS(767), 1, - anon_sym_LBRACK, - ACTIONS(771), 1, + [7929] = 26, + ACTIONS(260), 1, + sym_identifier, + ACTIONS(287), 1, + anon_sym_type, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(303), 1, + anon_sym_lambda, + ACTIONS(311), 1, + anon_sym_await, + ACTIONS(313), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(332), 1, + anon_sym_STAR_STAR, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(1030), 1, anon_sym_STAR, - ACTIONS(863), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(865), 1, - anon_sym_lambda, - ACTIONS(867), 1, - anon_sym_yield, - ACTIONS(1069), 1, - anon_sym_LPAREN, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1123), 1, - anon_sym_RPAREN, - ACTIONS(1129), 1, - anon_sym_await, - STATE(959), 1, + STATE(962), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1032), 1, sym_string, - STATE(1337), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1680), 1, + STATE(1759), 1, sym_expression, - STATE(2248), 1, - sym_yield, - STATE(2325), 1, - sym_with_item, - STATE(2670), 1, + STATE(2331), 1, + sym_type, + STATE(2751), 1, sym__named_expression_lhs, - STATE(2689), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(272), 2, + anon_sym_lazy, + anon_sym_match, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, - anon_sym_match, - anon_sym_type, - STATE(2269), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(769), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(2105), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35203,7 +35455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35220,82 +35472,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8196] = 27, - ACTIONS(767), 1, - anon_sym_LBRACK, - ACTIONS(771), 1, + [8043] = 22, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(301), 1, + anon_sym_TILDE, + ACTIONS(313), 1, sym_string_start, - ACTIONS(863), 1, - anon_sym_not, - ACTIONS(865), 1, - anon_sym_lambda, - ACTIONS(1067), 1, + ACTIONS(1120), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1122), 1, anon_sym_LPAREN, - ACTIONS(1075), 1, + ACTIONS(1126), 1, anon_sym_STAR, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1083), 1, + ACTIONS(1130), 1, + anon_sym_LBRACK, + ACTIONS(1132), 1, anon_sym_await, - ACTIONS(1131), 1, - anon_sym_RPAREN, - ACTIONS(1133), 1, - anon_sym_COMMA, - STATE(959), 1, - sym_primary_expression, - STATE(1012), 1, + STATE(1032), 1, sym_string, - STATE(1337), 1, + STATE(1474), 1, sym_list_splat_pattern, - STATE(1700), 1, - sym_expression, - STATE(2372), 1, - sym_parenthesized_list_splat, - STATE(2670), 1, - sym__named_expression_lhs, + STATE(1625), 1, + sym_primary_expression, + STATE(1647), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(769), 3, + ACTIONS(667), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1077), 3, + STATE(1476), 2, + sym_attribute, + sym_subscript, + STATE(1637), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1124), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1128), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2371), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1334), 16, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -35308,59 +35540,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8311] = 22, - ACTIONS(291), 1, - anon_sym_LBRACE, + 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, + [8149] = 22, ACTIONS(296), 1, + anon_sym_LBRACE, + ACTIONS(301), 1, anon_sym_TILDE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1120), 1, sym_identifier, - ACTIONS(1029), 1, + ACTIONS(1122), 1, anon_sym_LPAREN, - ACTIONS(1031), 1, + ACTIONS(1126), 1, anon_sym_STAR, - ACTIONS(1037), 1, + ACTIONS(1130), 1, anon_sym_LBRACK, - ACTIONS(1039), 1, + ACTIONS(1132), 1, anon_sym_await, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1475), 1, + STATE(1474), 1, sym_list_splat_pattern, - STATE(1623), 1, + STATE(1625), 1, sym_primary_expression, - STATE(1629), 1, + STATE(1647), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(660), 2, + ACTIONS(667), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1035), 2, - anon_sym_match, - anon_sym_type, - STATE(1481), 2, + STATE(1476), 2, sym_attribute, sym_subscript, - STATE(1634), 2, + STATE(1637), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1033), 3, + ACTIONS(1124), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1128), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -35375,7 +35624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(957), 15, + ACTIONS(964), 15, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, @@ -35391,157 +35640,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [8416] = 26, - ACTIONS(255), 1, - sym_identifier, - ACTIONS(277), 1, - anon_sym_match, - ACTIONS(282), 1, - anon_sym_type, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(325), 1, - anon_sym_STAR_STAR, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1023), 1, - anon_sym_STAR, - ACTIONS(1025), 1, - anon_sym_not, - STATE(962), 1, - sym_primary_expression, - STATE(1017), 1, - sym_string, - STATE(1416), 1, - sym_list_splat_pattern, - STATE(1757), 1, - sym_expression, - STATE(2318), 1, - sym_type, - STATE(2653), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(304), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(2046), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1750), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1348), 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, - [8529] = 27, - ACTIONS(767), 1, + [8255] = 27, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(863), 1, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(848), 1, anon_sym_lambda, - ACTIONS(1067), 1, + ACTIONS(1046), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1048), 1, anon_sym_LPAREN, - ACTIONS(1075), 1, + ACTIONS(1056), 1, anon_sym_STAR, - ACTIONS(1081), 1, + ACTIONS(1060), 1, anon_sym_STAR_STAR, - ACTIONS(1083), 1, + ACTIONS(1062), 1, anon_sym_await, - ACTIONS(1135), 1, + ACTIONS(1134), 1, anon_sym_RPAREN, - ACTIONS(1137), 1, + ACTIONS(1136), 1, anon_sym_COMMA, - STATE(959), 1, + STATE(963), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1035), 1, sym_string, - STATE(1337), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(1704), 1, + STATE(1694), 1, sym_expression, - STATE(2394), 1, + STATE(2310), 1, sym_parenthesized_list_splat, - STATE(2670), 1, + STATE(2681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(769), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(1054), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1058), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2393), 3, + STATE(2309), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35549,7 +35712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35566,70 +35729,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8644] = 27, - ACTIONS(767), 1, + [8371] = 27, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(863), 1, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(848), 1, anon_sym_lambda, - ACTIONS(1067), 1, + ACTIONS(1046), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1048), 1, anon_sym_LPAREN, - ACTIONS(1075), 1, + ACTIONS(1056), 1, anon_sym_STAR, - ACTIONS(1081), 1, + ACTIONS(1060), 1, anon_sym_STAR_STAR, - ACTIONS(1083), 1, + ACTIONS(1062), 1, anon_sym_await, - ACTIONS(1139), 1, + ACTIONS(1138), 1, anon_sym_RPAREN, - ACTIONS(1141), 1, + ACTIONS(1140), 1, anon_sym_COMMA, - STATE(959), 1, + STATE(963), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1035), 1, sym_string, - STATE(1337), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(1709), 1, + STATE(1698), 1, sym_expression, - STATE(2415), 1, + STATE(2349), 1, sym_parenthesized_list_splat, - STATE(2670), 1, + STATE(2681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(769), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(1054), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1058), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2414), 3, + STATE(2348), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35637,7 +35801,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35654,69 +35818,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8759] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, + [8487] = 26, ACTIONS(69), 1, - anon_sym_not, + anon_sym_LBRACE, ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(83), 1, sym_string_start, - ACTIONS(379), 1, - anon_sym_match, - ACTIONS(390), 1, + ACTIONS(397), 1, anon_sym_await, - ACTIONS(629), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(644), 1, anon_sym_LBRACK, - ACTIONS(1041), 1, + ACTIONS(1096), 1, sym_identifier, - ACTIONS(1043), 1, + ACTIONS(1098), 1, anon_sym_STAR, - ACTIONS(1045), 1, + ACTIONS(1100), 1, anon_sym_STAR_STAR, - ACTIONS(1047), 1, + ACTIONS(1102), 1, anon_sym_type, - STATE(859), 1, + STATE(942), 1, sym_primary_expression, - STATE(961), 1, + STATE(966), 1, sym_string, - STATE(1077), 1, + STATE(1112), 1, sym_list_splat_pattern, - STATE(1729), 1, + STATE(1740), 1, sym_expression, - STATE(2075), 1, + STATE(1977), 1, sym_type, - STATE(2625), 1, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(379), 2, + anon_sym_lazy, + anon_sym_match, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(384), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1971), 5, + STATE(1979), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1665), 7, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35724,7 +35889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35741,69 +35906,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8872] = 26, - ACTIONS(255), 1, - sym_identifier, - ACTIONS(277), 1, - anon_sym_match, - ACTIONS(282), 1, - anon_sym_type, - ACTIONS(291), 1, + [8601] = 27, + ACTIONS(730), 1, + anon_sym_LBRACK, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(325), 1, - anon_sym_STAR_STAR, - ACTIONS(648), 1, + ACTIONS(846), 1, + anon_sym_not, + ACTIONS(848), 1, + anon_sym_lambda, + ACTIONS(1046), 1, + sym_identifier, + ACTIONS(1048), 1, anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1023), 1, + ACTIONS(1056), 1, anon_sym_STAR, - ACTIONS(1025), 1, - anon_sym_not, - STATE(962), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1062), 1, + anon_sym_await, + ACTIONS(1142), 1, + anon_sym_RPAREN, + ACTIONS(1144), 1, + anon_sym_COMMA, + STATE(963), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1035), 1, sym_string, - STATE(1416), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1703), 1, sym_expression, - STATE(2085), 1, - sym_type, - STATE(2653), 1, + STATE(2372), 1, + sym_parenthesized_list_splat, + STATE(2681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(1054), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1058), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2371), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2046), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1750), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35811,7 +35978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35828,69 +35995,160 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8985] = 26, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, + [8717] = 27, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(811), 1, - anon_sym_STAR_STAR, - ACTIONS(973), 1, + ACTIONS(846), 1, + anon_sym_not, + ACTIONS(848), 1, + anon_sym_lambda, + ACTIONS(1046), 1, sym_identifier, - ACTIONS(975), 1, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1056), 1, anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1062), 1, + anon_sym_await, + ACTIONS(1146), 1, + anon_sym_RPAREN, + ACTIONS(1148), 1, + anon_sym_COMMA, + STATE(963), 1, + sym_primary_expression, + STATE(1035), 1, + sym_string, + STATE(1370), 1, + sym_list_splat_pattern, + STATE(1708), 1, + sym_expression, + STATE(2394), 1, + sym_parenthesized_list_splat, + STATE(2681), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(736), 2, + sym_ellipsis, + sym_float, + ACTIONS(732), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1054), 3, + anon_sym_lazy, anon_sym_match, - ACTIONS(981), 1, anon_sym_type, - ACTIONS(985), 1, + ACTIONS(1058), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2393), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(718), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1832), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1377), 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, + [8833] = 27, + ACTIONS(730), 1, + anon_sym_LBRACK, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(848), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(1046), 1, + sym_identifier, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1056), 1, + anon_sym_STAR, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1062), 1, anon_sym_await, - STATE(976), 1, + ACTIONS(1150), 1, + anon_sym_RPAREN, + ACTIONS(1152), 1, + anon_sym_COMMA, + STATE(963), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1035), 1, sym_string, - STATE(1436), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1713), 1, sym_expression, - STATE(1952), 1, - sym_type, - STATE(2596), 1, + STATE(2417), 1, + sym_parenthesized_list_splat, + STATE(2681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(791), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(1054), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1058), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + STATE(2416), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2043), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1768), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35898,7 +36156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35915,69 +36173,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9098] = 26, - ACTIONS(781), 1, + [8949] = 26, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(811), 1, + ACTIONS(818), 1, anon_sym_STAR_STAR, - ACTIONS(973), 1, + ACTIONS(980), 1, sym_identifier, - ACTIONS(975), 1, + ACTIONS(984), 1, anon_sym_STAR, - ACTIONS(979), 1, - anon_sym_match, - ACTIONS(981), 1, + ACTIONS(988), 1, anon_sym_type, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1780), 1, sym_expression, - STATE(1893), 1, + STATE(1915), 1, sym_type, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(791), 3, + ACTIONS(982), 2, + anon_sym_lazy, + anon_sym_match, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2043), 5, + STATE(2008), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35985,7 +36244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36002,69 +36261,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9211] = 26, - ACTIONS(781), 1, + [9063] = 26, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(811), 1, + ACTIONS(818), 1, anon_sym_STAR_STAR, - ACTIONS(973), 1, + ACTIONS(980), 1, sym_identifier, - ACTIONS(975), 1, + ACTIONS(984), 1, anon_sym_STAR, - ACTIONS(979), 1, - anon_sym_match, - ACTIONS(981), 1, + ACTIONS(988), 1, anon_sym_type, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1780), 1, sym_expression, - STATE(1916), 1, + STATE(1934), 1, sym_type, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(791), 3, + ACTIONS(982), 2, + anon_sym_lazy, + anon_sym_match, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2043), 5, + STATE(2008), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36072,7 +36332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36089,69 +36349,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9324] = 26, - ACTIONS(255), 1, - sym_identifier, - ACTIONS(277), 1, - anon_sym_match, - ACTIONS(282), 1, - anon_sym_type, - ACTIONS(291), 1, + [9177] = 26, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(774), 1, + anon_sym_LBRACK, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(325), 1, + ACTIONS(818), 1, anon_sym_STAR_STAR, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1023), 1, + ACTIONS(980), 1, + sym_identifier, + ACTIONS(984), 1, anon_sym_STAR, - ACTIONS(1025), 1, + ACTIONS(988), 1, + anon_sym_type, + ACTIONS(992), 1, anon_sym_not, - STATE(962), 1, + ACTIONS(994), 1, + anon_sym_lambda, + ACTIONS(996), 1, + anon_sym_await, + STATE(979), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1131), 1, sym_string, - STATE(1416), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1780), 1, sym_expression, - STATE(2450), 1, + STATE(1951), 1, sym_type, - STATE(2653), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(982), 2, + anon_sym_lazy, + anon_sym_match, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(986), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2046), 5, + STATE(2008), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1750), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36159,7 +36420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36176,69 +36437,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9437] = 26, - ACTIONS(255), 1, + [9291] = 26, + ACTIONS(260), 1, sym_identifier, - ACTIONS(277), 1, - anon_sym_match, - ACTIONS(282), 1, + ACTIONS(287), 1, anon_sym_type, - ACTIONS(291), 1, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(325), 1, + ACTIONS(332), 1, anon_sym_STAR_STAR, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1023), 1, + ACTIONS(1030), 1, anon_sym_STAR, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1759), 1, sym_expression, STATE(2452), 1, sym_type, - STATE(2653), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(272), 2, + anon_sym_lazy, + anon_sym_match, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2046), 5, + STATE(2105), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36246,7 +36508,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36263,69 +36525,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9550] = 26, - ACTIONS(255), 1, + [9405] = 26, + ACTIONS(260), 1, sym_identifier, - ACTIONS(277), 1, - anon_sym_match, - ACTIONS(282), 1, + ACTIONS(287), 1, anon_sym_type, - ACTIONS(291), 1, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(325), 1, + ACTIONS(332), 1, anon_sym_STAR_STAR, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1023), 1, + ACTIONS(1030), 1, anon_sym_STAR, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1759), 1, sym_expression, - STATE(2454), 1, + STATE(2455), 1, sym_type, - STATE(2653), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(272), 2, + anon_sym_lazy, + anon_sym_match, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2046), 5, + STATE(2105), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36333,7 +36596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36350,70 +36613,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9663] = 27, - ACTIONS(767), 1, - anon_sym_LBRACK, - ACTIONS(771), 1, + [9519] = 26, + ACTIONS(260), 1, + sym_identifier, + ACTIONS(287), 1, + anon_sym_type, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(777), 1, - sym_string_start, - ACTIONS(863), 1, - anon_sym_not, - ACTIONS(865), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1069), 1, + ACTIONS(311), 1, + anon_sym_await, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(332), 1, + anon_sym_STAR_STAR, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(1075), 1, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(1030), 1, anon_sym_STAR, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1083), 1, - anon_sym_await, - ACTIONS(1143), 1, - anon_sym_RPAREN, - ACTIONS(1145), 1, - anon_sym_COMMA, - STATE(959), 1, + ACTIONS(1032), 1, + anon_sym_not, + STATE(962), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1032), 1, sym_string, - STATE(1337), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1681), 1, + STATE(1759), 1, sym_expression, - STATE(2404), 1, - sym_parenthesized_list_splat, - STATE(2670), 1, + STATE(2457), 1, + sym_type, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(272), 2, + anon_sym_lazy, + anon_sym_match, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(769), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2403), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(2105), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36421,7 +36684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36438,68 +36701,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9778] = 26, - ACTIONS(699), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, + [9633] = 26, + ACTIONS(260), 1, + sym_identifier, + ACTIONS(287), 1, + anon_sym_type, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(709), 1, - sym_string_start, - ACTIONS(1061), 1, - anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(1081), 1, + ACTIONS(311), 1, + anon_sym_await, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(332), 1, anon_sym_STAR_STAR, - ACTIONS(1097), 1, - sym_identifier, - ACTIONS(1099), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(1030), 1, anon_sym_STAR, - ACTIONS(1111), 1, - anon_sym_await, - ACTIONS(1147), 1, - anon_sym_RPAREN, - STATE(964), 1, + ACTIONS(1032), 1, + anon_sym_not, + STATE(962), 1, sym_primary_expression, - STATE(993), 1, + STATE(1032), 1, sym_string, - STATE(1384), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1759), 1, sym_expression, - STATE(2590), 1, - sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2458), 1, + sym_type, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(272), 2, + anon_sym_lazy, + anon_sym_match, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(2105), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36507,7 +36772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36524,68 +36789,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9890] = 26, - ACTIONS(721), 1, - anon_sym_LBRACK, - ACTIONS(725), 1, + [9747] = 26, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(731), 1, - sym_string_start, - ACTIONS(803), 1, - anon_sym_LPAREN, - ACTIONS(817), 1, + ACTIONS(71), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(823), 1, + ACTIONS(83), 1, + sym_string_start, + ACTIONS(397), 1, anon_sym_await, - ACTIONS(875), 1, - anon_sym_STAR, - ACTIONS(1149), 1, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(644), 1, + anon_sym_LBRACK, + ACTIONS(1096), 1, sym_identifier, - ACTIONS(1151), 1, - anon_sym_RBRACK, - STATE(869), 1, + ACTIONS(1098), 1, + anon_sym_STAR, + ACTIONS(1100), 1, + anon_sym_STAR_STAR, + ACTIONS(1102), 1, + anon_sym_type, + STATE(942), 1, sym_primary_expression, - STATE(969), 1, + STATE(966), 1, sym_string, - STATE(1268), 1, + STATE(1112), 1, sym_list_splat_pattern, - STATE(1722), 1, + STATE(1740), 1, sym_expression, - STATE(2663), 1, - sym__collection_elements, - STATE(2762), 1, + STATE(1904), 1, + sym_type, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(379), 2, + anon_sym_lazy, anon_sym_match, - anon_sym_type, - ACTIONS(723), 3, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(384), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(711), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1979), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36593,7 +36860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36610,70 +36877,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10002] = 28, - ACTIONS(767), 1, + [9861] = 26, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(855), 1, - anon_sym_STAR, - ACTIONS(863), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(867), 1, - anon_sym_yield, - ACTIONS(1069), 1, - anon_sym_LPAREN, - ACTIONS(1121), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1106), 1, + anon_sym_LPAREN, + ACTIONS(1114), 1, + anon_sym_STAR, + ACTIONS(1118), 1, anon_sym_await, - ACTIONS(1153), 1, + ACTIONS(1154), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(964), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1043), 1, sym_string, - STATE(1337), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1703), 1, + STATE(1929), 1, sym_expression, - STATE(2386), 1, - sym_yield, - STATE(2424), 1, - sym_list_splat, - STATE(2439), 1, + STATE(2545), 1, sym_parenthesized_list_splat, - STATE(2659), 1, - sym__collection_elements, - STATE(2670), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(769), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + STATE(2594), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36681,7 +36947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36698,68 +36964,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10118] = 26, - ACTIONS(699), 1, + [9974] = 26, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1106), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1114), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1118), 1, anon_sym_await, - ACTIONS(1155), 1, + ACTIONS(1156), 1, anon_sym_RPAREN, STATE(964), 1, sym_primary_expression, - STATE(993), 1, + STATE(1043), 1, sym_string, - STATE(1384), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1929), 1, sym_expression, - STATE(2590), 1, + STATE(2545), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2594), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36767,7 +37034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36784,68 +37051,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10230] = 26, - ACTIONS(699), 1, + [10087] = 26, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1106), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1114), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1118), 1, anon_sym_await, - ACTIONS(1157), 1, + ACTIONS(1158), 1, anon_sym_RPAREN, STATE(964), 1, sym_primary_expression, - STATE(993), 1, + STATE(1043), 1, sym_string, - STATE(1384), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1929), 1, sym_expression, - STATE(2590), 1, + STATE(2545), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2594), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36853,7 +37121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36870,68 +37138,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10342] = 26, - ACTIONS(699), 1, + [10200] = 26, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1106), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1114), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1118), 1, anon_sym_await, - ACTIONS(1159), 1, + ACTIONS(1160), 1, anon_sym_RPAREN, STATE(964), 1, sym_primary_expression, - STATE(993), 1, + STATE(1043), 1, sym_string, - STATE(1384), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1929), 1, sym_expression, - STATE(2590), 1, + STATE(2545), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2594), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36939,7 +37208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36956,68 +37225,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10454] = 26, - ACTIONS(699), 1, + [10313] = 26, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1106), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1114), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1118), 1, anon_sym_await, - ACTIONS(1161), 1, + ACTIONS(1162), 1, anon_sym_RPAREN, STATE(964), 1, sym_primary_expression, - STATE(993), 1, + STATE(1043), 1, sym_string, - STATE(1384), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1929), 1, sym_expression, - STATE(2590), 1, + STATE(2545), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2594), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37025,7 +37295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37042,68 +37312,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10566] = 26, - ACTIONS(699), 1, + [10426] = 26, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1106), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1114), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1118), 1, anon_sym_await, - ACTIONS(1163), 1, + ACTIONS(1164), 1, anon_sym_RPAREN, STATE(964), 1, sym_primary_expression, - STATE(993), 1, + STATE(1043), 1, sym_string, - STATE(1384), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1929), 1, sym_expression, - STATE(2590), 1, + STATE(2545), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2594), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37111,7 +37382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37128,68 +37399,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10678] = 26, - ACTIONS(699), 1, + [10539] = 26, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1106), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1114), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1118), 1, anon_sym_await, - ACTIONS(1165), 1, + ACTIONS(1166), 1, anon_sym_RPAREN, STATE(964), 1, sym_primary_expression, - STATE(993), 1, + STATE(1043), 1, sym_string, - STATE(1384), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1929), 1, sym_expression, - STATE(2590), 1, + STATE(2545), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2594), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37197,7 +37469,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37214,68 +37486,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10790] = 26, - ACTIONS(699), 1, + [10652] = 28, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(840), 1, + anon_sym_STAR, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(848), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, - sym_identifier, - ACTIONS(1099), 1, + ACTIONS(850), 1, + anon_sym_yield, + ACTIONS(1048), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, - anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1086), 1, + sym_identifier, + ACTIONS(1094), 1, anon_sym_await, - ACTIONS(1167), 1, + ACTIONS(1168), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(963), 1, sym_primary_expression, - STATE(993), 1, + STATE(1035), 1, sym_string, - STATE(1384), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1697), 1, sym_expression, - STATE(2590), 1, + STATE(2257), 1, + sym_list_splat, + STATE(2258), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2342), 1, + sym_yield, + STATE(2681), 1, sym__named_expression_lhs, + STATE(2701), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1090), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1092), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37283,7 +37558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37300,69 +37575,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10902] = 27, - ACTIONS(767), 1, + [10769] = 27, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(840), 1, anon_sym_STAR, - ACTIONS(863), 1, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(848), 1, anon_sym_lambda, - ACTIONS(867), 1, + ACTIONS(850), 1, anon_sym_yield, - ACTIONS(1069), 1, + ACTIONS(1048), 1, anon_sym_LPAREN, - ACTIONS(1121), 1, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1094), 1, anon_sym_await, - ACTIONS(1169), 1, + ACTIONS(1170), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(963), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1035), 1, sym_string, - STATE(1337), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(1708), 1, + STATE(1707), 1, sym_expression, - STATE(2410), 1, + STATE(2387), 1, sym_yield, - STATE(2600), 1, + STATE(2674), 1, sym__collection_elements, - STATE(2670), 1, + STATE(2681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, - anon_sym_match, - anon_sym_type, - STATE(2269), 2, + STATE(2285), 2, sym_list_splat, sym_parenthesized_list_splat, - ACTIONS(769), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1090), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1092), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37370,7 +37646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37387,68 +37663,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11016] = 26, - ACTIONS(721), 1, + [10884] = 26, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(803), 1, + ACTIONS(810), 1, anon_sym_LPAREN, - ACTIONS(817), 1, + ACTIONS(824), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(826), 1, anon_sym_lambda, - ACTIONS(821), 1, + ACTIONS(828), 1, anon_sym_yield, - ACTIONS(823), 1, + ACTIONS(830), 1, anon_sym_await, - ACTIONS(875), 1, + ACTIONS(886), 1, anon_sym_STAR, - ACTIONS(1149), 1, + ACTIONS(1172), 1, sym_identifier, - ACTIONS(1171), 1, + ACTIONS(1174), 1, anon_sym_RBRACK, - STATE(869), 1, + STATE(960), 1, sym_primary_expression, - STATE(969), 1, + STATE(974), 1, sym_string, - STATE(1268), 1, + STATE(1208), 1, sym_list_splat_pattern, - STATE(1712), 1, + STATE(1722), 1, sym_expression, - STATE(2750), 1, + STATE(2706), 1, sym__collection_elements, - STATE(2762), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(723), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(812), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(816), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, + STATE(2381), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(711), 4, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37456,7 +37733,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37473,70 +37750,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11128] = 28, - ACTIONS(767), 1, + [10997] = 28, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(840), 1, anon_sym_STAR, - ACTIONS(863), 1, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(848), 1, anon_sym_lambda, - ACTIONS(867), 1, + ACTIONS(850), 1, anon_sym_yield, - ACTIONS(1069), 1, + ACTIONS(1048), 1, anon_sym_LPAREN, - ACTIONS(1121), 1, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1094), 1, anon_sym_await, - ACTIONS(1169), 1, + ACTIONS(1176), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(963), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1035), 1, sym_string, - STATE(1337), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(1708), 1, + STATE(1693), 1, sym_expression, - STATE(2368), 1, + STATE(2304), 1, + sym_yield, + STATE(2367), 1, sym_list_splat, - STATE(2369), 1, + STATE(2370), 1, sym_parenthesized_list_splat, - STATE(2410), 1, - sym_yield, - STATE(2600), 1, + STATE(2646), 1, sym__collection_elements, - STATE(2670), 1, + STATE(2681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(769), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1090), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1092), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37544,7 +37822,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37561,68 +37839,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11244] = 26, - ACTIONS(699), 1, + [11114] = 26, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1106), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1114), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1118), 1, anon_sym_await, - ACTIONS(1173), 1, + ACTIONS(1178), 1, anon_sym_RPAREN, STATE(964), 1, sym_primary_expression, - STATE(993), 1, + STATE(1043), 1, sym_string, - STATE(1384), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1929), 1, sym_expression, - STATE(2590), 1, + STATE(2545), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2594), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37630,7 +37909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37647,68 +37926,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11356] = 26, - ACTIONS(699), 1, + [11227] = 26, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1106), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1114), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1118), 1, anon_sym_await, - ACTIONS(1175), 1, + ACTIONS(1180), 1, anon_sym_RPAREN, STATE(964), 1, sym_primary_expression, - STATE(993), 1, + STATE(1043), 1, sym_string, - STATE(1384), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1929), 1, sym_expression, - STATE(2590), 1, + STATE(2545), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2594), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37716,7 +37996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37733,68 +38013,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11468] = 26, - ACTIONS(699), 1, + [11340] = 26, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1106), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1114), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1118), 1, anon_sym_await, - ACTIONS(1177), 1, + ACTIONS(1182), 1, anon_sym_RPAREN, STATE(964), 1, sym_primary_expression, - STATE(993), 1, + STATE(1043), 1, sym_string, - STATE(1384), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1929), 1, sym_expression, - STATE(2590), 1, + STATE(2545), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2594), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37802,7 +38083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37819,68 +38100,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11580] = 26, - ACTIONS(699), 1, + [11453] = 26, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1106), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1114), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1118), 1, anon_sym_await, - ACTIONS(1179), 1, + ACTIONS(1184), 1, anon_sym_RPAREN, STATE(964), 1, sym_primary_expression, - STATE(993), 1, + STATE(1043), 1, sym_string, - STATE(1384), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1929), 1, sym_expression, - STATE(2590), 1, + STATE(2545), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2594), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37888,7 +38170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37905,68 +38187,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11692] = 26, - ACTIONS(699), 1, + [11566] = 26, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1106), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1114), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1118), 1, anon_sym_await, - ACTIONS(1181), 1, + ACTIONS(1186), 1, anon_sym_RPAREN, STATE(964), 1, sym_primary_expression, - STATE(993), 1, + STATE(1043), 1, sym_string, - STATE(1384), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1929), 1, sym_expression, - STATE(2590), 1, + STATE(2545), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2594), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37974,7 +38257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37991,68 +38274,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11804] = 26, - ACTIONS(699), 1, + [11679] = 27, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(840), 1, + anon_sym_STAR, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(848), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, - sym_identifier, - ACTIONS(1099), 1, + ACTIONS(850), 1, + anon_sym_yield, + ACTIONS(1048), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, - anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1086), 1, + sym_identifier, + ACTIONS(1094), 1, anon_sym_await, - ACTIONS(1183), 1, + ACTIONS(1188), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(963), 1, sym_primary_expression, - STATE(993), 1, + STATE(1035), 1, sym_string, - STATE(1384), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1683), 1, sym_expression, - STATE(2590), 1, - sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2346), 1, + sym_yield, + STATE(2681), 1, sym__named_expression_lhs, + STATE(2734), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + STATE(2285), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1090), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1092), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38060,7 +38345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38077,69 +38362,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11916] = 27, - ACTIONS(767), 1, + [11794] = 26, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(855), 1, - anon_sym_STAR, - ACTIONS(863), 1, + ACTIONS(810), 1, + anon_sym_LPAREN, + ACTIONS(824), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(826), 1, anon_sym_lambda, - ACTIONS(867), 1, + ACTIONS(828), 1, anon_sym_yield, - ACTIONS(1069), 1, - anon_sym_LPAREN, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1129), 1, + ACTIONS(830), 1, anon_sym_await, - ACTIONS(1185), 1, - anon_sym_RPAREN, - STATE(959), 1, + ACTIONS(886), 1, + anon_sym_STAR, + ACTIONS(1172), 1, + sym_identifier, + ACTIONS(1190), 1, + anon_sym_RBRACK, + STATE(960), 1, sym_primary_expression, - STATE(1012), 1, + STATE(974), 1, sym_string, - STATE(1337), 1, + STATE(1208), 1, sym_list_splat_pattern, - STATE(1689), 1, + STATE(1724), 1, sym_expression, - STATE(2298), 1, - sym_yield, - STATE(2670), 1, - sym__named_expression_lhs, - STATE(2785), 1, + STATE(2677), 1, sym__collection_elements, + STATE(2772), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, - anon_sym_match, - anon_sym_type, - STATE(2269), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(769), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(812), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(816), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + STATE(2381), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38147,7 +38432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38164,68 +38449,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12030] = 26, - ACTIONS(721), 1, + [11907] = 28, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(803), 1, - anon_sym_LPAREN, - ACTIONS(817), 1, + ACTIONS(840), 1, + anon_sym_STAR, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(848), 1, anon_sym_lambda, - ACTIONS(821), 1, + ACTIONS(850), 1, anon_sym_yield, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(875), 1, - anon_sym_STAR, - ACTIONS(1149), 1, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(1187), 1, - anon_sym_RBRACK, - STATE(869), 1, + ACTIONS(1094), 1, + anon_sym_await, + ACTIONS(1170), 1, + anon_sym_RPAREN, + STATE(963), 1, sym_primary_expression, - STATE(969), 1, + STATE(1035), 1, sym_string, - STATE(1268), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(1716), 1, + STATE(1707), 1, sym_expression, - STATE(2629), 1, + STATE(2291), 1, + sym_list_splat, + STATE(2387), 1, + sym_yield, + STATE(2418), 1, + sym_parenthesized_list_splat, + STATE(2674), 1, sym__collection_elements, - STATE(2762), 1, + STATE(2681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(723), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(1090), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1092), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(711), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38233,7 +38521,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38250,70 +38538,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12142] = 28, - ACTIONS(767), 1, + [12024] = 26, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(855), 1, - anon_sym_STAR, - ACTIONS(863), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(867), 1, - anon_sym_yield, - ACTIONS(1069), 1, - anon_sym_LPAREN, - ACTIONS(1121), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1106), 1, + anon_sym_LPAREN, + ACTIONS(1114), 1, + anon_sym_STAR, + ACTIONS(1118), 1, anon_sym_await, - ACTIONS(1189), 1, + ACTIONS(1192), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(964), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1043), 1, sym_string, - STATE(1337), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1699), 1, + STATE(1929), 1, sym_expression, - STATE(2255), 1, - sym_list_splat, - STATE(2256), 1, + STATE(2545), 1, sym_parenthesized_list_splat, - STATE(2364), 1, - sym_yield, - STATE(2633), 1, - sym__collection_elements, - STATE(2670), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(769), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + STATE(2594), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38321,7 +38608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38338,69 +38625,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12258] = 27, - ACTIONS(767), 1, + [12137] = 26, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(855), 1, - anon_sym_STAR, - ACTIONS(863), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(867), 1, - anon_sym_yield, - ACTIONS(1069), 1, - anon_sym_LPAREN, - ACTIONS(1121), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1106), 1, + anon_sym_LPAREN, + ACTIONS(1114), 1, + anon_sym_STAR, + ACTIONS(1118), 1, anon_sym_await, - ACTIONS(1191), 1, + ACTIONS(1194), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(964), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1043), 1, sym_string, - STATE(1337), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1676), 1, + STATE(1929), 1, sym_expression, - STATE(2327), 1, - sym_yield, - STATE(2670), 1, + STATE(2545), 1, + sym_parenthesized_list_splat, + STATE(2669), 1, sym__named_expression_lhs, - STATE(2672), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, - anon_sym_match, - anon_sym_type, - STATE(2269), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(769), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + STATE(2594), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38408,7 +38695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38425,68 +38712,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12372] = 26, - ACTIONS(721), 1, + [12250] = 26, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(803), 1, - anon_sym_LPAREN, - ACTIONS(817), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(875), 1, - anon_sym_STAR, - ACTIONS(1149), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1193), 1, - anon_sym_RBRACK, - STATE(869), 1, + ACTIONS(1106), 1, + anon_sym_LPAREN, + ACTIONS(1114), 1, + anon_sym_STAR, + ACTIONS(1118), 1, + anon_sym_await, + ACTIONS(1196), 1, + anon_sym_RPAREN, + STATE(964), 1, sym_primary_expression, - STATE(969), 1, + STATE(1043), 1, sym_string, - STATE(1268), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1683), 1, + STATE(1929), 1, sym_expression, - STATE(2593), 1, - sym__collection_elements, - STATE(2762), 1, + STATE(2545), 1, + sym_parenthesized_list_splat, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(723), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, + STATE(2594), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(711), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38494,7 +38782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38511,69 +38799,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12484] = 27, - ACTIONS(767), 1, + [12363] = 27, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(840), 1, anon_sym_STAR, - ACTIONS(863), 1, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(848), 1, anon_sym_lambda, - ACTIONS(867), 1, + ACTIONS(850), 1, anon_sym_yield, - ACTIONS(1069), 1, + ACTIONS(1048), 1, anon_sym_LPAREN, - ACTIONS(1121), 1, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1094), 1, anon_sym_await, - ACTIONS(1195), 1, + ACTIONS(1198), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(963), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1035), 1, sym_string, - STATE(1337), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(1679), 1, + STATE(1712), 1, sym_expression, - STATE(2342), 1, + STATE(2411), 1, sym_yield, - STATE(2670), 1, - sym__named_expression_lhs, - STATE(2715), 1, + STATE(2604), 1, sym__collection_elements, + STATE(2681), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, - anon_sym_match, - anon_sym_type, - STATE(2269), 2, + STATE(2285), 2, sym_list_splat, sym_parenthesized_list_splat, - ACTIONS(769), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1090), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1092), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38581,7 +38870,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38598,68 +38887,156 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12598] = 26, - ACTIONS(699), 1, + [12478] = 26, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(810), 1, + anon_sym_LPAREN, + ACTIONS(824), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(826), 1, anon_sym_lambda, - ACTIONS(1081), 1, + ACTIONS(828), 1, + anon_sym_yield, + ACTIONS(830), 1, + anon_sym_await, + ACTIONS(886), 1, + anon_sym_STAR, + ACTIONS(1172), 1, + sym_identifier, + ACTIONS(1200), 1, + anon_sym_RBRACK, + STATE(960), 1, + sym_primary_expression, + STATE(974), 1, + sym_string, + STATE(1208), 1, + sym_list_splat_pattern, + STATE(1716), 1, + sym_expression, + STATE(2769), 1, + sym__collection_elements, + STATE(2772), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(802), 2, + sym_ellipsis, + sym_float, + ACTIONS(798), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(812), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(816), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2381), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(786), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1700), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1184), 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, + [12591] = 26, + ACTIONS(752), 1, + anon_sym_LBRACK, + ACTIONS(756), 1, + anon_sym_LBRACE, + ACTIONS(762), 1, + sym_string_start, + ACTIONS(1060), 1, anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1076), 1, + anon_sym_not, + ACTIONS(1078), 1, + anon_sym_lambda, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1106), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1114), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1118), 1, anon_sym_await, - ACTIONS(1197), 1, + ACTIONS(1202), 1, anon_sym_RPAREN, STATE(964), 1, sym_primary_expression, - STATE(993), 1, + STATE(1043), 1, sym_string, - STATE(1384), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1929), 1, sym_expression, - STATE(2590), 1, + STATE(2545), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2594), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38667,7 +39044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38684,68 +39061,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12710] = 26, - ACTIONS(699), 1, + [12704] = 27, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(840), 1, + anon_sym_STAR, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(848), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, - sym_identifier, - ACTIONS(1099), 1, + ACTIONS(850), 1, + anon_sym_yield, + ACTIONS(1048), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, - anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1086), 1, + sym_identifier, + ACTIONS(1094), 1, anon_sym_await, - ACTIONS(1199), 1, + ACTIONS(1204), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(963), 1, sym_primary_expression, - STATE(993), 1, + STATE(1035), 1, sym_string, - STATE(1384), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1684), 1, sym_expression, - STATE(2590), 1, - sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2460), 1, + sym_yield, + STATE(2681), 1, sym__named_expression_lhs, + STATE(2776), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + STATE(2285), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1090), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1092), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38753,7 +39132,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38770,69 +39149,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12822] = 27, - ACTIONS(767), 1, + [12819] = 26, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(855), 1, - anon_sym_STAR, - ACTIONS(863), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(867), 1, - anon_sym_yield, - ACTIONS(1069), 1, - anon_sym_LPAREN, - ACTIONS(1121), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1106), 1, + anon_sym_LPAREN, + ACTIONS(1114), 1, + anon_sym_STAR, + ACTIONS(1118), 1, anon_sym_await, - ACTIONS(1153), 1, + ACTIONS(1206), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(964), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1043), 1, sym_string, - STATE(1337), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1703), 1, + STATE(1929), 1, sym_expression, - STATE(2386), 1, - sym_yield, - STATE(2659), 1, - sym__collection_elements, - STATE(2670), 1, + STATE(2545), 1, + sym_parenthesized_list_splat, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, - anon_sym_match, - anon_sym_type, - STATE(2269), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(769), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + STATE(2594), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38840,7 +39219,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38857,68 +39236,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12936] = 26, - ACTIONS(721), 1, + [12932] = 26, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(803), 1, - anon_sym_LPAREN, - ACTIONS(817), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(875), 1, - anon_sym_STAR, - ACTIONS(1149), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1201), 1, - anon_sym_RBRACK, - STATE(869), 1, + ACTIONS(1106), 1, + anon_sym_LPAREN, + ACTIONS(1114), 1, + anon_sym_STAR, + ACTIONS(1118), 1, + anon_sym_await, + ACTIONS(1208), 1, + anon_sym_RPAREN, + STATE(964), 1, sym_primary_expression, - STATE(969), 1, + STATE(1043), 1, sym_string, - STATE(1268), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1718), 1, + STATE(1929), 1, sym_expression, - STATE(2762), 1, + STATE(2545), 1, + sym_parenthesized_list_splat, + STATE(2669), 1, sym__named_expression_lhs, - STATE(2787), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(723), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, + STATE(2594), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(711), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38926,7 +39306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38943,69 +39323,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13048] = 27, - ACTIONS(767), 1, + [13045] = 26, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(855), 1, - anon_sym_STAR, - ACTIONS(863), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(867), 1, - anon_sym_yield, - ACTIONS(1069), 1, - anon_sym_LPAREN, - ACTIONS(1121), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1106), 1, + anon_sym_LPAREN, + ACTIONS(1114), 1, + anon_sym_STAR, + ACTIONS(1118), 1, anon_sym_await, - ACTIONS(1189), 1, + ACTIONS(1210), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(964), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1043), 1, sym_string, - STATE(1337), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1699), 1, + STATE(1929), 1, sym_expression, - STATE(2364), 1, - sym_yield, - STATE(2633), 1, - sym__collection_elements, - STATE(2670), 1, + STATE(2545), 1, + sym_parenthesized_list_splat, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, - anon_sym_match, - anon_sym_type, - STATE(2269), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(769), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + STATE(2594), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39013,7 +39393,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39030,68 +39410,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13162] = 26, - ACTIONS(721), 1, + [13158] = 26, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(803), 1, - anon_sym_LPAREN, - ACTIONS(817), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(875), 1, - anon_sym_STAR, - ACTIONS(1149), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1203), 1, - anon_sym_RBRACK, - STATE(869), 1, + ACTIONS(1106), 1, + anon_sym_LPAREN, + ACTIONS(1114), 1, + anon_sym_STAR, + ACTIONS(1118), 1, + anon_sym_await, + ACTIONS(1212), 1, + anon_sym_RPAREN, + STATE(964), 1, sym_primary_expression, - STATE(969), 1, + STATE(1043), 1, sym_string, - STATE(1268), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1724), 1, + STATE(1929), 1, sym_expression, - STATE(2603), 1, - sym__collection_elements, - STATE(2762), 1, + STATE(2545), 1, + sym_parenthesized_list_splat, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(723), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, + STATE(2594), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(711), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39099,7 +39480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39116,70 +39497,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13274] = 28, - ACTIONS(767), 1, + [13271] = 26, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(855), 1, - anon_sym_STAR, - ACTIONS(863), 1, + ACTIONS(810), 1, + anon_sym_LPAREN, + ACTIONS(824), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(826), 1, anon_sym_lambda, - ACTIONS(867), 1, + ACTIONS(828), 1, anon_sym_yield, - ACTIONS(1069), 1, - anon_sym_LPAREN, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1129), 1, + ACTIONS(830), 1, anon_sym_await, - ACTIONS(1185), 1, - anon_sym_RPAREN, - STATE(959), 1, + ACTIONS(886), 1, + anon_sym_STAR, + ACTIONS(1172), 1, + sym_identifier, + ACTIONS(1214), 1, + anon_sym_RBRACK, + STATE(960), 1, sym_primary_expression, - STATE(1012), 1, + STATE(974), 1, sym_string, - STATE(1337), 1, + STATE(1208), 1, sym_list_splat_pattern, - STATE(1689), 1, + STATE(1680), 1, sym_expression, - STATE(2298), 1, - sym_yield, - STATE(2368), 1, - sym_list_splat, - STATE(2369), 1, - sym_parenthesized_list_splat, - STATE(2670), 1, - sym__named_expression_lhs, - STATE(2785), 1, + STATE(2675), 1, sym__collection_elements, + STATE(2772), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(769), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(812), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(816), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + STATE(2381), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39187,7 +39567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39204,68 +39584,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13390] = 26, - ACTIONS(699), 1, + [13384] = 27, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(840), 1, + anon_sym_STAR, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(848), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, - sym_identifier, - ACTIONS(1099), 1, + ACTIONS(850), 1, + anon_sym_yield, + ACTIONS(1048), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, - anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1086), 1, + sym_identifier, + ACTIONS(1094), 1, anon_sym_await, - ACTIONS(1205), 1, + ACTIONS(1176), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(963), 1, sym_primary_expression, - STATE(993), 1, + STATE(1035), 1, sym_string, - STATE(1384), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1693), 1, sym_expression, - STATE(2590), 1, - sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2304), 1, + sym_yield, + STATE(2646), 1, + sym__collection_elements, + STATE(2681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + STATE(2285), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1090), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1092), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39273,7 +39655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39290,68 +39672,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13502] = 26, - ACTIONS(699), 1, + [13499] = 26, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(810), 1, + anon_sym_LPAREN, + ACTIONS(824), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(826), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, - sym_identifier, - ACTIONS(1099), 1, - anon_sym_LPAREN, - ACTIONS(1105), 1, - anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(828), 1, + anon_sym_yield, + ACTIONS(830), 1, anon_sym_await, - ACTIONS(1207), 1, - anon_sym_RPAREN, - STATE(964), 1, + ACTIONS(886), 1, + anon_sym_STAR, + ACTIONS(1172), 1, + sym_identifier, + ACTIONS(1216), 1, + anon_sym_RBRACK, + STATE(960), 1, sym_primary_expression, - STATE(993), 1, + STATE(974), 1, sym_string, - STATE(1384), 1, + STATE(1208), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1720), 1, sym_expression, - STATE(2590), 1, - sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2610), 1, + sym__collection_elements, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(812), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(816), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2381), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(689), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39359,7 +39742,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39376,68 +39759,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13614] = 26, - ACTIONS(699), 1, + [13612] = 28, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(840), 1, + anon_sym_STAR, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(848), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, - sym_identifier, - ACTIONS(1099), 1, + ACTIONS(850), 1, + anon_sym_yield, + ACTIONS(1048), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, - anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1086), 1, + sym_identifier, + ACTIONS(1094), 1, anon_sym_await, - ACTIONS(1209), 1, + ACTIONS(1218), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(963), 1, sym_primary_expression, - STATE(993), 1, + STATE(1035), 1, sym_string, - STATE(1384), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1702), 1, sym_expression, - STATE(2590), 1, + STATE(2257), 1, + sym_list_splat, + STATE(2258), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2365), 1, + sym_yield, + STATE(2681), 1, sym__named_expression_lhs, + STATE(2718), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1090), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1092), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39445,7 +39831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39462,68 +39848,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13726] = 26, - ACTIONS(699), 1, + [13729] = 26, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1106), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1114), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1118), 1, anon_sym_await, - ACTIONS(1211), 1, + ACTIONS(1220), 1, anon_sym_RPAREN, STATE(964), 1, sym_primary_expression, - STATE(993), 1, + STATE(1043), 1, sym_string, - STATE(1384), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1929), 1, sym_expression, - STATE(2590), 1, + STATE(2545), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2594), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39531,7 +39918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39548,69 +39935,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13838] = 27, - ACTIONS(767), 1, + [13842] = 26, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(855), 1, - anon_sym_STAR, - ACTIONS(863), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(867), 1, - anon_sym_yield, - ACTIONS(1069), 1, - anon_sym_LPAREN, - ACTIONS(1121), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1106), 1, + anon_sym_LPAREN, + ACTIONS(1114), 1, + anon_sym_STAR, + ACTIONS(1118), 1, anon_sym_await, - ACTIONS(1213), 1, + ACTIONS(1222), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(964), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1043), 1, sym_string, - STATE(1337), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1693), 1, + STATE(1929), 1, sym_expression, - STATE(2339), 1, - sym_yield, - STATE(2670), 1, + STATE(2545), 1, + sym_parenthesized_list_splat, + STATE(2669), 1, sym__named_expression_lhs, - STATE(2694), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, - anon_sym_match, - anon_sym_type, - STATE(2269), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(769), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + STATE(2594), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39618,7 +40005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39635,156 +40022,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13952] = 26, - ACTIONS(721), 1, + [13955] = 26, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(803), 1, - anon_sym_LPAREN, - ACTIONS(817), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(875), 1, - anon_sym_STAR, - ACTIONS(1149), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1215), 1, - anon_sym_RBRACK, - STATE(869), 1, - sym_primary_expression, - STATE(969), 1, - sym_string, - STATE(1268), 1, - sym_list_splat_pattern, - STATE(1719), 1, - sym_expression, - STATE(2658), 1, - sym__collection_elements, - STATE(2762), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(727), 2, - sym_ellipsis, - sym_float, - ACTIONS(809), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(723), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(807), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - STATE(2242), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(711), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1697), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1151), 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, - [14064] = 28, - ACTIONS(767), 1, - anon_sym_LBRACK, - ACTIONS(771), 1, - anon_sym_LBRACE, - ACTIONS(777), 1, - sym_string_start, - ACTIONS(855), 1, - anon_sym_STAR, - ACTIONS(863), 1, - anon_sym_not, - ACTIONS(865), 1, - anon_sym_lambda, - ACTIONS(867), 1, - anon_sym_yield, - ACTIONS(1069), 1, + ACTIONS(1106), 1, anon_sym_LPAREN, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1114), 1, + anon_sym_STAR, + ACTIONS(1118), 1, anon_sym_await, - ACTIONS(1213), 1, + ACTIONS(1224), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(964), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1043), 1, sym_string, - STATE(1337), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1693), 1, + STATE(1929), 1, sym_expression, - STATE(2255), 1, - sym_list_splat, - STATE(2256), 1, + STATE(2545), 1, sym_parenthesized_list_splat, - STATE(2339), 1, - sym_yield, - STATE(2670), 1, + STATE(2669), 1, sym__named_expression_lhs, - STATE(2694), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(769), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + STATE(2594), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39792,7 +40092,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39809,68 +40109,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14180] = 26, - ACTIONS(699), 1, + [14068] = 26, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1106), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1114), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1118), 1, anon_sym_await, - ACTIONS(1217), 1, + ACTIONS(1226), 1, anon_sym_RPAREN, STATE(964), 1, sym_primary_expression, - STATE(993), 1, + STATE(1043), 1, sym_string, - STATE(1384), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1929), 1, sym_expression, - STATE(2590), 1, + STATE(2545), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2594), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39878,7 +40179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39895,68 +40196,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14292] = 26, - ACTIONS(699), 1, + [14181] = 27, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(840), 1, + anon_sym_STAR, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(848), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, - sym_identifier, - ACTIONS(1099), 1, + ACTIONS(850), 1, + anon_sym_yield, + ACTIONS(1048), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, - anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1086), 1, + sym_identifier, + ACTIONS(1094), 1, anon_sym_await, - ACTIONS(1219), 1, + ACTIONS(1218), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(963), 1, sym_primary_expression, - STATE(993), 1, + STATE(1035), 1, sym_string, - STATE(1384), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1702), 1, sym_expression, - STATE(2590), 1, - sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2365), 1, + sym_yield, + STATE(2681), 1, sym__named_expression_lhs, + STATE(2718), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + STATE(2285), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1090), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1092), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39964,7 +40267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39981,68 +40284,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14404] = 26, - ACTIONS(699), 1, + [14296] = 26, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(810), 1, + anon_sym_LPAREN, + ACTIONS(824), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(826), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, - sym_identifier, - ACTIONS(1099), 1, - anon_sym_LPAREN, - ACTIONS(1105), 1, - anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(828), 1, + anon_sym_yield, + ACTIONS(830), 1, anon_sym_await, - ACTIONS(1221), 1, - anon_sym_RPAREN, - STATE(964), 1, + ACTIONS(886), 1, + anon_sym_STAR, + ACTIONS(1172), 1, + sym_identifier, + ACTIONS(1228), 1, + anon_sym_RBRACK, + STATE(960), 1, sym_primary_expression, - STATE(993), 1, + STATE(974), 1, sym_string, - STATE(1384), 1, + STATE(1208), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1727), 1, sym_expression, - STATE(2590), 1, - sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2607), 1, + sym__collection_elements, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(812), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(816), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2381), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(689), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40050,7 +40354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40067,68 +40371,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14516] = 26, - ACTIONS(699), 1, + [14409] = 28, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(840), 1, + anon_sym_STAR, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(848), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, - sym_identifier, - ACTIONS(1099), 1, + ACTIONS(850), 1, + anon_sym_yield, + ACTIONS(1048), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, - anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1086), 1, + sym_identifier, + ACTIONS(1094), 1, anon_sym_await, - ACTIONS(1223), 1, + ACTIONS(1188), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(963), 1, sym_primary_expression, - STATE(993), 1, + STATE(1035), 1, sym_string, - STATE(1384), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1683), 1, sym_expression, - STATE(2590), 1, + STATE(2291), 1, + sym_list_splat, + STATE(2346), 1, + sym_yield, + STATE(2418), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2681), 1, sym__named_expression_lhs, + STATE(2734), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1090), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1092), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40136,7 +40443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40153,69 +40460,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14628] = 27, - ACTIONS(767), 1, + [14526] = 26, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(855), 1, - anon_sym_STAR, - ACTIONS(863), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(867), 1, - anon_sym_yield, - ACTIONS(1069), 1, - anon_sym_LPAREN, - ACTIONS(1121), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1123), 1, - anon_sym_RPAREN, - ACTIONS(1129), 1, + ACTIONS(1106), 1, + anon_sym_LPAREN, + ACTIONS(1114), 1, + anon_sym_STAR, + ACTIONS(1118), 1, anon_sym_await, - STATE(959), 1, + ACTIONS(1230), 1, + anon_sym_RPAREN, + STATE(964), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1043), 1, sym_string, - STATE(1337), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1685), 1, + STATE(1929), 1, sym_expression, - STATE(2248), 1, - sym_yield, - STATE(2670), 1, + STATE(2545), 1, + sym_parenthesized_list_splat, + STATE(2669), 1, sym__named_expression_lhs, - STATE(2689), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, - anon_sym_match, - anon_sym_type, - STATE(2269), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(769), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + STATE(2594), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40223,7 +40530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40240,68 +40547,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14742] = 26, - ACTIONS(699), 1, + [14639] = 26, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1106), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1114), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1118), 1, anon_sym_await, - ACTIONS(1225), 1, + ACTIONS(1232), 1, anon_sym_RPAREN, STATE(964), 1, sym_primary_expression, - STATE(993), 1, + STATE(1043), 1, sym_string, - STATE(1384), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1929), 1, sym_expression, - STATE(2590), 1, + STATE(2545), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2594), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40309,7 +40617,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40326,68 +40634,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14854] = 26, - ACTIONS(699), 1, + [14752] = 26, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1106), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1114), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1118), 1, anon_sym_await, - ACTIONS(1227), 1, + ACTIONS(1234), 1, anon_sym_RPAREN, STATE(964), 1, sym_primary_expression, - STATE(993), 1, + STATE(1043), 1, sym_string, - STATE(1384), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1929), 1, sym_expression, - STATE(2590), 1, + STATE(2545), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2594), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40395,7 +40704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40412,68 +40721,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14966] = 26, - ACTIONS(699), 1, + [14865] = 26, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1106), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1114), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1118), 1, anon_sym_await, - ACTIONS(1229), 1, + ACTIONS(1236), 1, anon_sym_RPAREN, STATE(964), 1, sym_primary_expression, - STATE(993), 1, + STATE(1043), 1, sym_string, - STATE(1384), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1929), 1, sym_expression, - STATE(2590), 1, + STATE(2545), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2594), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40481,7 +40791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40498,68 +40808,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15078] = 26, - ACTIONS(699), 1, + [14978] = 27, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(840), 1, + anon_sym_STAR, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(848), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, - sym_identifier, - ACTIONS(1099), 1, + ACTIONS(850), 1, + anon_sym_yield, + ACTIONS(1048), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, - anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1086), 1, + sym_identifier, + ACTIONS(1094), 1, anon_sym_await, - ACTIONS(1231), 1, + ACTIONS(1168), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(963), 1, sym_primary_expression, - STATE(993), 1, + STATE(1035), 1, sym_string, - STATE(1384), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1697), 1, sym_expression, - STATE(2590), 1, - sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2342), 1, + sym_yield, + STATE(2681), 1, sym__named_expression_lhs, + STATE(2701), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + STATE(2285), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1090), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1092), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40567,7 +40879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40584,68 +40896,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15190] = 26, - ACTIONS(721), 1, + [15093] = 26, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(803), 1, + ACTIONS(810), 1, anon_sym_LPAREN, - ACTIONS(815), 1, - anon_sym_RBRACK, - ACTIONS(817), 1, + ACTIONS(824), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(826), 1, anon_sym_lambda, - ACTIONS(821), 1, + ACTIONS(828), 1, anon_sym_yield, - ACTIONS(823), 1, + ACTIONS(830), 1, anon_sym_await, - ACTIONS(875), 1, + ACTIONS(886), 1, anon_sym_STAR, - ACTIONS(1149), 1, + ACTIONS(1172), 1, sym_identifier, - STATE(869), 1, + ACTIONS(1238), 1, + anon_sym_RBRACK, + STATE(960), 1, sym_primary_expression, - STATE(969), 1, + STATE(974), 1, sym_string, - STATE(1268), 1, + STATE(1208), 1, sym_list_splat_pattern, - STATE(1714), 1, + STATE(1677), 1, sym_expression, - STATE(2650), 1, + STATE(2749), 1, sym__collection_elements, - STATE(2762), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(723), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(812), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(816), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, + STATE(2381), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(711), 4, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40653,7 +40966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40670,68 +40983,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15302] = 26, - ACTIONS(699), 1, + [15206] = 26, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1106), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1114), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1118), 1, anon_sym_await, - ACTIONS(1233), 1, + ACTIONS(1240), 1, anon_sym_RPAREN, STATE(964), 1, sym_primary_expression, - STATE(993), 1, + STATE(1043), 1, sym_string, - STATE(1384), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1929), 1, sym_expression, - STATE(2590), 1, + STATE(2545), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2594), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40739,7 +41053,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40756,68 +41070,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15414] = 26, - ACTIONS(699), 1, + [15319] = 26, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1106), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1114), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1118), 1, anon_sym_await, - ACTIONS(1235), 1, + ACTIONS(1242), 1, anon_sym_RPAREN, STATE(964), 1, sym_primary_expression, - STATE(993), 1, + STATE(1043), 1, sym_string, - STATE(1384), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1929), 1, sym_expression, - STATE(2590), 1, + STATE(2545), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2594), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40825,7 +41140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40842,68 +41157,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15526] = 26, - ACTIONS(699), 1, + [15432] = 26, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1106), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1114), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1118), 1, anon_sym_await, - ACTIONS(1237), 1, + ACTIONS(1244), 1, anon_sym_RPAREN, STATE(964), 1, sym_primary_expression, - STATE(993), 1, + STATE(1043), 1, sym_string, - STATE(1384), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1929), 1, sym_expression, - STATE(2590), 1, + STATE(2545), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2594), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40911,7 +41227,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40928,70 +41244,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15638] = 28, - ACTIONS(767), 1, + [15545] = 26, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(855), 1, - anon_sym_STAR, - ACTIONS(863), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(867), 1, - anon_sym_yield, - ACTIONS(1069), 1, - anon_sym_LPAREN, - ACTIONS(1121), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1106), 1, + anon_sym_LPAREN, + ACTIONS(1114), 1, + anon_sym_STAR, + ACTIONS(1118), 1, anon_sym_await, - ACTIONS(1195), 1, + ACTIONS(1246), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(964), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1043), 1, sym_string, - STATE(1337), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1679), 1, + STATE(1929), 1, sym_expression, - STATE(2342), 1, - sym_yield, - STATE(2424), 1, - sym_list_splat, - STATE(2439), 1, + STATE(2545), 1, sym_parenthesized_list_splat, - STATE(2670), 1, + STATE(2669), 1, sym__named_expression_lhs, - STATE(2715), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(769), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + STATE(2594), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40999,7 +41314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41016,68 +41331,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15754] = 26, - ACTIONS(699), 1, + [15658] = 27, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(840), 1, + anon_sym_STAR, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(848), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, - sym_identifier, - ACTIONS(1099), 1, + ACTIONS(850), 1, + anon_sym_yield, + ACTIONS(1048), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, - anon_sym_STAR, - ACTIONS(1111), 1, - anon_sym_await, - ACTIONS(1239), 1, + ACTIONS(1086), 1, + sym_identifier, + ACTIONS(1088), 1, anon_sym_RPAREN, - STATE(964), 1, + ACTIONS(1094), 1, + anon_sym_await, + STATE(963), 1, sym_primary_expression, - STATE(993), 1, + STATE(1035), 1, sym_string, - STATE(1384), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1689), 1, sym_expression, - STATE(2590), 1, - sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2252), 1, + sym_yield, + STATE(2617), 1, + sym__collection_elements, + STATE(2681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + STATE(2285), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1090), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1092), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41085,7 +41402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41102,66 +41419,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15866] = 25, - ACTIONS(789), 1, + [15773] = 26, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(985), 1, + ACTIONS(810), 1, + anon_sym_LPAREN, + ACTIONS(822), 1, + anon_sym_RBRACK, + ACTIONS(824), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(826), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(828), 1, + anon_sym_yield, + ACTIONS(830), 1, anon_sym_await, - ACTIONS(1241), 1, - sym_identifier, - ACTIONS(1243), 1, - anon_sym_LPAREN, - ACTIONS(1245), 1, + ACTIONS(886), 1, anon_sym_STAR, - ACTIONS(1247), 1, - anon_sym_RBRACK, - STATE(976), 1, + ACTIONS(1172), 1, + sym_identifier, + STATE(960), 1, sym_primary_expression, - STATE(1068), 1, + STATE(974), 1, sym_string, - STATE(1436), 1, + STATE(1208), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1718), 1, sym_expression, - STATE(2596), 1, + STATE(2662), 1, + sym__collection_elements, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(812), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(816), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2505), 3, + STATE(2381), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(779), 4, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41169,7 +41489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41186,66 +41506,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15975] = 25, - ACTIONS(735), 1, - anon_sym_LPAREN, - ACTIONS(743), 1, + [15886] = 28, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(825), 1, - sym_identifier, - ACTIONS(841), 1, - anon_sym_not, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(840), 1, anon_sym_STAR, - ACTIONS(1253), 1, - anon_sym_RBRACE, - ACTIONS(1255), 1, + ACTIONS(846), 1, + anon_sym_not, + ACTIONS(848), 1, anon_sym_lambda, - STATE(935), 1, + ACTIONS(850), 1, + anon_sym_yield, + ACTIONS(1048), 1, + anon_sym_LPAREN, + ACTIONS(1086), 1, + sym_identifier, + ACTIONS(1094), 1, + anon_sym_await, + ACTIONS(1198), 1, + anon_sym_RPAREN, + STATE(963), 1, sym_primary_expression, - STATE(973), 1, + STATE(1035), 1, sym_string, - STATE(1231), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1712), 1, sym_expression, - STATE(2675), 1, + STATE(2367), 1, + sym_list_splat, + STATE(2370), 1, + sym_parenthesized_list_splat, + STATE(2411), 1, + sym_yield, + STATE(2604), 1, + sym__collection_elements, + STATE(2681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(835), 2, - anon_sym_match, - anon_sym_type, - STATE(2029), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(745), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1251), 3, - anon_sym_if, + ACTIONS(1090), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1092), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(733), 4, + anon_sym_exec, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41253,7 +41578,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41270,68 +41595,75 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16084] = 19, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(648), 1, + [16003] = 25, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(652), 1, - anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(662), 1, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(846), 1, + anon_sym_not, + ACTIONS(1086), 1, + sym_identifier, + ACTIONS(1094), 1, anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1124), 1, + ACTIONS(1248), 1, + anon_sym_RPAREN, + ACTIONS(1250), 1, + anon_sym_STAR, + ACTIONS(1254), 1, + anon_sym_lambda, + STATE(963), 1, sym_primary_expression, - STATE(1416), 1, + STATE(1035), 1, + sym_string, + STATE(1370), 1, sym_list_splat_pattern, + STATE(1831), 1, + sym_expression, + STATE(2681), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(302), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(296), 3, + ACTIONS(1092), 2, + anon_sym_print, + anon_sym_exec, + STATE(2053), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(654), 3, - anon_sym_print, + ACTIONS(1090), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1252), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - ACTIONS(300), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(304), 5, + anon_sym_for, + ACTIONS(718), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(257), 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(1348), 16, + STATE(1832), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41348,66 +41680,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16181] = 25, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, + [16113] = 25, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(828), 1, + anon_sym_yield, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(823), 1, + ACTIONS(994), 1, + anon_sym_lambda, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1149), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1257), 1, + ACTIONS(1258), 1, + anon_sym_LPAREN, + ACTIONS(1260), 1, anon_sym_STAR, - ACTIONS(1261), 1, + ACTIONS(1262), 1, anon_sym_RBRACK, - ACTIONS(1263), 1, - anon_sym_lambda, - STATE(869), 1, + STATE(979), 1, sym_primary_expression, - STATE(969), 1, + STATE(1131), 1, sym_string, - STATE(1268), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1994), 1, sym_expression, - STATE(2762), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(807), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(809), 2, - anon_sym_match, - anon_sym_type, - STATE(2011), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(723), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1259), 3, - anon_sym_if, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(711), 4, + anon_sym_exec, + STATE(2504), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41415,7 +41748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41432,66 +41765,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16290] = 25, - ACTIONS(713), 1, + [16223] = 23, + ACTIONS(676), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(688), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(694), 1, sym_string_start, - ACTIONS(817), 1, - anon_sym_not, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(1149), 1, - sym_identifier, - ACTIONS(1257), 1, + ACTIONS(1012), 1, anon_sym_STAR, - ACTIONS(1263), 1, + ACTIONS(1018), 1, + anon_sym_not, + ACTIONS(1020), 1, anon_sym_lambda, - ACTIONS(1267), 1, - anon_sym_RBRACK, - STATE(869), 1, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1044), 1, + anon_sym_await, + STATE(958), 1, sym_primary_expression, STATE(969), 1, sym_string, - STATE(1268), 1, + STATE(1147), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1769), 1, sym_expression, - STATE(2762), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(690), 2, sym_ellipsis, sym_float, - ACTIONS(807), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(809), 2, - anon_sym_match, - anon_sym_type, - STATE(2011), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(723), 3, + ACTIONS(686), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1265), 3, - anon_sym_if, + ACTIONS(1040), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1042), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(711), 4, + anon_sym_exec, + ACTIONS(674), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + ACTIONS(1264), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1770), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41499,7 +41831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1205), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41516,150 +41848,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16399] = 25, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(767), 1, + [16329] = 25, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(863), 1, + ACTIONS(850), 1, + anon_sym_yield, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1078), 1, + anon_sym_lambda, + ACTIONS(1080), 1, anon_sym_await, - ACTIONS(1261), 1, + ACTIONS(1106), 1, + anon_sym_LPAREN, + ACTIONS(1262), 1, anon_sym_RPAREN, - ACTIONS(1269), 1, + ACTIONS(1266), 1, + sym_identifier, + ACTIONS(1268), 1, anon_sym_STAR, - ACTIONS(1271), 1, - anon_sym_lambda, - STATE(959), 1, + STATE(964), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1043), 1, sym_string, - STATE(1337), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1827), 1, + STATE(1919), 1, sym_expression, - STATE(2670), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1125), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(1127), 2, - anon_sym_match, - anon_sym_type, - STATE(2069), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(769), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1259), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, - ACTIONS(755), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1828), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1334), 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, - [16508] = 25, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(767), 1, - anon_sym_LBRACK, - ACTIONS(771), 1, - anon_sym_LBRACE, - ACTIONS(777), 1, - sym_string_start, - ACTIONS(863), 1, - anon_sym_not, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1129), 1, - anon_sym_await, - ACTIONS(1267), 1, - anon_sym_RPAREN, - ACTIONS(1269), 1, - anon_sym_STAR, - ACTIONS(1271), 1, - anon_sym_lambda, - STATE(959), 1, - sym_primary_expression, - STATE(1012), 1, - sym_string, - STATE(1337), 1, - sym_list_splat_pattern, - STATE(1827), 1, - sym_expression, - STATE(2670), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(773), 2, - sym_ellipsis, - sym_float, - ACTIONS(1125), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(1127), 2, + ACTIONS(1066), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - STATE(2069), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(769), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1265), 3, - anon_sym_if, + ACTIONS(1070), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(755), 4, + anon_sym_exec, + STATE(2564), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41667,7 +41916,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41684,64 +41933,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16617] = 23, - ACTIONS(666), 1, - anon_sym_LPAREN, - ACTIONS(674), 1, + [16439] = 25, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(688), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(694), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(874), 1, + anon_sym_yield, + ACTIONS(1018), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1020), 1, anon_sym_lambda, - ACTIONS(1085), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(1044), 1, anon_sym_await, - STATE(942), 1, + ACTIONS(1270), 1, + anon_sym_LPAREN, + ACTIONS(1272), 1, + anon_sym_STAR, + ACTIONS(1274), 1, + anon_sym_RBRACE, + STATE(958), 1, sym_primary_expression, - STATE(981), 1, + STATE(969), 1, sym_string, STATE(1147), 1, sym_list_splat_pattern, - STATE(1780), 1, + STATE(1933), 1, sym_expression, - STATE(2764), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(690), 2, sym_ellipsis, sym_float, - ACTIONS(1093), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(676), 3, + ACTIONS(686), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1091), 3, + ACTIONS(1040), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1042), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + STATE(2565), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(674), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1273), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1753), 7, + STATE(1770), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41749,7 +42001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1205), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41766,66 +42018,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16722] = 25, - ACTIONS(699), 1, + [16549] = 25, + ACTIONS(788), 1, + anon_sym_LPAREN, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(824), 1, anon_sym_not, - ACTIONS(1063), 1, - anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(830), 1, + anon_sym_await, + ACTIONS(1172), 1, sym_identifier, - ACTIONS(1099), 1, - anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1248), 1, + anon_sym_RBRACK, + ACTIONS(1276), 1, anon_sym_STAR, - ACTIONS(1111), 1, - anon_sym_await, - STATE(964), 1, + ACTIONS(1278), 1, + anon_sym_lambda, + STATE(960), 1, sym_primary_expression, - STATE(993), 1, + STATE(974), 1, sym_string, - STATE(1384), 1, + STATE(1208), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1833), 1, sym_expression, - STATE(2590), 1, - sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(816), 2, + anon_sym_print, + anon_sym_exec, + STATE(2088), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, - anon_sym_print, + ACTIONS(812), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1252), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - STATE(2587), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(689), 4, + anon_sym_for, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41833,7 +42086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41850,66 +42103,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16831] = 25, - ACTIONS(757), 1, + [16659] = 25, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(863), 1, + ACTIONS(824), 1, anon_sym_not, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1129), 1, + ACTIONS(830), 1, anon_sym_await, - ACTIONS(1269), 1, + ACTIONS(1172), 1, + sym_identifier, + ACTIONS(1276), 1, anon_sym_STAR, - ACTIONS(1271), 1, + ACTIONS(1278), 1, anon_sym_lambda, - ACTIONS(1275), 1, - anon_sym_RPAREN, - STATE(959), 1, + ACTIONS(1282), 1, + anon_sym_RBRACK, + STATE(960), 1, sym_primary_expression, - STATE(1012), 1, + STATE(974), 1, sym_string, - STATE(1337), 1, + STATE(1208), 1, sym_list_splat_pattern, - STATE(1827), 1, + STATE(1833), 1, sym_expression, - STATE(2670), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(1125), 2, + ACTIONS(816), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1127), 2, - anon_sym_match, - anon_sym_type, - STATE(2069), 2, + STATE(2088), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(769), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1277), 3, + ACTIONS(812), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1280), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(755), 4, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41917,7 +42171,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41934,66 +42188,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16940] = 25, - ACTIONS(789), 1, + [16769] = 25, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(688), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(694), 1, sym_string_start, - ACTIONS(821), 1, + ACTIONS(874), 1, anon_sym_yield, - ACTIONS(985), 1, + ACTIONS(1018), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(1020), 1, anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1243), 1, + ACTIONS(1044), 1, + anon_sym_await, + ACTIONS(1262), 1, + anon_sym_RBRACE, + ACTIONS(1270), 1, anon_sym_LPAREN, - ACTIONS(1245), 1, + ACTIONS(1272), 1, anon_sym_STAR, - ACTIONS(1279), 1, - anon_sym_RBRACK, - STATE(976), 1, + STATE(958), 1, sym_primary_expression, - STATE(1068), 1, + STATE(969), 1, sym_string, - STATE(1436), 1, + STATE(1147), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1933), 1, sym_expression, - STATE(2596), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(690), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(686), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(1040), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1042), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2505), 3, + STATE(2565), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(779), 4, + ACTIONS(674), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1770), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42001,7 +42256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1205), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42018,64 +42273,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17049] = 23, - ACTIONS(666), 1, - anon_sym_LPAREN, - ACTIONS(674), 1, + [16879] = 25, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(828), 1, + anon_sym_yield, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(1085), 1, - sym_identifier, - ACTIONS(1095), 1, + ACTIONS(996), 1, anon_sym_await, - STATE(942), 1, + ACTIONS(1256), 1, + sym_identifier, + ACTIONS(1258), 1, + anon_sym_LPAREN, + ACTIONS(1260), 1, + anon_sym_STAR, + ACTIONS(1274), 1, + anon_sym_RBRACK, + STATE(979), 1, sym_primary_expression, - STATE(981), 1, + STATE(1131), 1, sym_string, - STATE(1147), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1780), 1, + STATE(1994), 1, sym_expression, - STATE(2764), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(1093), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(676), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1091), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + STATE(2504), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1281), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1753), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42083,7 +42341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42100,66 +42358,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17154] = 25, - ACTIONS(713), 1, + [16989] = 23, + ACTIONS(676), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(688), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(694), 1, sym_string_start, - ACTIONS(817), 1, - anon_sym_not, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(1149), 1, - sym_identifier, - ACTIONS(1253), 1, - anon_sym_RBRACK, - ACTIONS(1257), 1, + ACTIONS(1012), 1, anon_sym_STAR, - ACTIONS(1263), 1, + ACTIONS(1018), 1, + anon_sym_not, + ACTIONS(1020), 1, anon_sym_lambda, - STATE(869), 1, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1044), 1, + anon_sym_await, + STATE(958), 1, sym_primary_expression, STATE(969), 1, sym_string, - STATE(1268), 1, + STATE(1147), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1769), 1, sym_expression, - STATE(2762), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(690), 2, sym_ellipsis, sym_float, - ACTIONS(807), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(809), 2, - anon_sym_match, - anon_sym_type, - STATE(2011), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(723), 3, + ACTIONS(686), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1251), 3, - anon_sym_if, + ACTIONS(1040), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1042), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(711), 4, + anon_sym_exec, + ACTIONS(674), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + ACTIONS(1284), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1770), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42167,7 +42424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1205), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42184,66 +42441,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17263] = 25, - ACTIONS(674), 1, + [17095] = 25, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(1015), 1, + ACTIONS(1060), 1, + anon_sym_STAR_STAR, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(1085), 1, + ACTIONS(1104), 1, sym_identifier, - ACTIONS(1095), 1, - anon_sym_await, - ACTIONS(1279), 1, - anon_sym_RBRACE, - ACTIONS(1283), 1, + ACTIONS(1106), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(1114), 1, anon_sym_STAR, - STATE(942), 1, + ACTIONS(1118), 1, + anon_sym_await, + STATE(964), 1, sym_primary_expression, - STATE(981), 1, + STATE(1043), 1, sym_string, - STATE(1147), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1890), 1, + STATE(1929), 1, sym_expression, - STATE(2764), 1, + STATE(2545), 1, + sym_parenthesized_list_splat, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1093), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(676), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1091), 3, + ACTIONS(1112), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1116), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2520), 3, + STATE(2594), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(664), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42251,7 +42509,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42268,66 +42526,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17372] = 25, - ACTIONS(735), 1, + [17205] = 25, + ACTIONS(698), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(706), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(841), 1, + ACTIONS(870), 1, anon_sym_not, - ACTIONS(847), 1, + ACTIONS(876), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1286), 1, anon_sym_STAR, - ACTIONS(1255), 1, - anon_sym_lambda, - ACTIONS(1275), 1, + ACTIONS(1290), 1, anon_sym_RBRACE, - STATE(935), 1, + ACTIONS(1292), 1, + anon_sym_lambda, + STATE(959), 1, sym_primary_expression, - STATE(973), 1, + STATE(972), 1, sym_string, - STATE(1231), 1, + STATE(1275), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1829), 1, sym_expression, - STATE(2675), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(864), 2, anon_sym_print, anon_sym_exec, - ACTIONS(835), 2, - anon_sym_match, - anon_sym_type, - STATE(2029), 2, + STATE(2041), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(745), 3, + ACTIONS(708), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1277), 3, + ACTIONS(860), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1288), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(733), 4, + ACTIONS(696), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1775), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42335,7 +42594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42352,66 +42611,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17481] = 25, - ACTIONS(735), 1, + [17315] = 25, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(825), 1, - sym_identifier, - ACTIONS(841), 1, + ACTIONS(824), 1, anon_sym_not, - ACTIONS(847), 1, + ACTIONS(830), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1172), 1, + sym_identifier, + ACTIONS(1276), 1, anon_sym_STAR, - ACTIONS(1255), 1, + ACTIONS(1278), 1, anon_sym_lambda, - ACTIONS(1261), 1, - anon_sym_RBRACE, - STATE(935), 1, + ACTIONS(1290), 1, + anon_sym_RBRACK, + STATE(960), 1, sym_primary_expression, - STATE(973), 1, + STATE(974), 1, sym_string, - STATE(1231), 1, + STATE(1208), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1833), 1, sym_expression, - STATE(2675), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(816), 2, anon_sym_print, anon_sym_exec, - ACTIONS(835), 2, - anon_sym_match, - anon_sym_type, - STATE(2029), 2, + STATE(2088), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(745), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1259), 3, + ACTIONS(812), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1288), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(733), 4, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42419,7 +42679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42436,150 +42696,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17590] = 25, - ACTIONS(699), 1, + [17425] = 25, + ACTIONS(788), 1, + anon_sym_LPAREN, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(867), 1, - anon_sym_yield, - ACTIONS(1061), 1, + ACTIONS(824), 1, anon_sym_not, - ACTIONS(1063), 1, - anon_sym_lambda, - ACTIONS(1065), 1, + ACTIONS(830), 1, anon_sym_await, - ACTIONS(1099), 1, - anon_sym_LPAREN, - ACTIONS(1247), 1, - anon_sym_RPAREN, - ACTIONS(1287), 1, + ACTIONS(1172), 1, sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1276), 1, anon_sym_STAR, - STATE(964), 1, + ACTIONS(1278), 1, + anon_sym_lambda, + ACTIONS(1296), 1, + anon_sym_RBRACK, + STATE(960), 1, sym_primary_expression, - STATE(993), 1, + STATE(974), 1, sym_string, - STATE(1384), 1, + STATE(1208), 1, sym_list_splat_pattern, - STATE(1963), 1, + STATE(1833), 1, sym_expression, - STATE(2647), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(816), 2, anon_sym_print, - anon_sym_async, anon_sym_exec, - STATE(2556), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(689), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1743), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1367), 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, - [17699] = 25, - ACTIONS(674), 1, - anon_sym_LBRACK, - ACTIONS(678), 1, - anon_sym_LBRACE, - ACTIONS(684), 1, - sym_string_start, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(1015), 1, - anon_sym_not, - ACTIONS(1017), 1, - anon_sym_lambda, - ACTIONS(1085), 1, - sym_identifier, - ACTIONS(1095), 1, - anon_sym_await, - ACTIONS(1247), 1, - anon_sym_RBRACE, - ACTIONS(1283), 1, - anon_sym_LPAREN, - ACTIONS(1285), 1, - anon_sym_STAR, - STATE(942), 1, - sym_primary_expression, - STATE(981), 1, - sym_string, - STATE(1147), 1, - sym_list_splat_pattern, - STATE(1890), 1, - sym_expression, - STATE(2764), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(680), 2, - sym_ellipsis, - sym_float, - ACTIONS(1093), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(676), 3, + STATE(2088), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1091), 3, - anon_sym_print, + ACTIONS(812), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1294), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - STATE(2520), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(664), 4, + anon_sym_for, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42587,7 +42764,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42604,74 +42781,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17808] = 25, - ACTIONS(699), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, + [17535] = 19, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(867), 1, - anon_sym_yield, - ACTIONS(1061), 1, - anon_sym_not, - ACTIONS(1063), 1, - anon_sym_lambda, - ACTIONS(1065), 1, - anon_sym_await, - ACTIONS(1099), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(1279), 1, - anon_sym_RPAREN, - ACTIONS(1287), 1, - sym_identifier, - ACTIONS(1289), 1, + ACTIONS(661), 1, anon_sym_STAR, - STATE(964), 1, - sym_primary_expression, - STATE(993), 1, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(669), 1, + anon_sym_await, + STATE(1032), 1, sym_string, - STATE(1384), 1, + STATE(1126), 1, + sym_primary_expression, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1963), 1, - sym_expression, - STATE(2647), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(264), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(657), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(663), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2556), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(689), 4, + ACTIONS(305), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(309), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1743), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1367), 16, + ACTIONS(262), 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(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42688,66 +42860,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17917] = 25, - ACTIONS(757), 1, + [17633] = 25, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(863), 1, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(1121), 1, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1094), 1, anon_sym_await, - ACTIONS(1253), 1, - anon_sym_RPAREN, - ACTIONS(1269), 1, + ACTIONS(1250), 1, anon_sym_STAR, - ACTIONS(1271), 1, + ACTIONS(1254), 1, anon_sym_lambda, - STATE(959), 1, + ACTIONS(1282), 1, + anon_sym_RPAREN, + STATE(963), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1035), 1, sym_string, - STATE(1337), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(1827), 1, + STATE(1831), 1, sym_expression, - STATE(2670), 1, + STATE(2681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(1125), 2, + ACTIONS(1092), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1127), 2, - anon_sym_match, - anon_sym_type, - STATE(2069), 2, + STATE(2053), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(769), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1251), 3, + ACTIONS(1090), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1280), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(755), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42755,7 +42928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42772,66 +42945,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18026] = 25, - ACTIONS(713), 1, + [17743] = 25, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(1149), 1, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(1257), 1, + ACTIONS(1094), 1, + anon_sym_await, + ACTIONS(1250), 1, anon_sym_STAR, - ACTIONS(1263), 1, + ACTIONS(1254), 1, anon_sym_lambda, - ACTIONS(1275), 1, - anon_sym_RBRACK, - STATE(869), 1, + ACTIONS(1296), 1, + anon_sym_RPAREN, + STATE(963), 1, sym_primary_expression, - STATE(969), 1, + STATE(1035), 1, sym_string, - STATE(1268), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1831), 1, sym_expression, - STATE(2762), 1, + STATE(2681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(807), 2, + ACTIONS(1092), 2, anon_sym_print, anon_sym_exec, - ACTIONS(809), 2, - anon_sym_match, - anon_sym_type, - STATE(2011), 2, + STATE(2053), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(723), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1277), 3, + ACTIONS(1090), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1294), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(711), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42839,7 +43013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42856,66 +43030,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18135] = 25, - ACTIONS(735), 1, + [17853] = 25, + ACTIONS(698), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(706), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(841), 1, + ACTIONS(870), 1, anon_sym_not, - ACTIONS(847), 1, + ACTIONS(876), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1286), 1, anon_sym_STAR, - ACTIONS(1255), 1, + ACTIONS(1292), 1, anon_sym_lambda, - ACTIONS(1267), 1, + ACTIONS(1296), 1, anon_sym_RBRACE, - STATE(935), 1, + STATE(959), 1, sym_primary_expression, - STATE(973), 1, + STATE(972), 1, sym_string, - STATE(1231), 1, + STATE(1275), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1829), 1, sym_expression, - STATE(2675), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(864), 2, anon_sym_print, anon_sym_exec, - ACTIONS(835), 2, - anon_sym_match, - anon_sym_type, - STATE(2029), 2, + STATE(2041), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(745), 3, + ACTIONS(708), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1265), 3, + ACTIONS(860), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1294), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(733), 4, + ACTIONS(696), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1775), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42923,7 +43098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42940,65 +43115,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18244] = 25, - ACTIONS(291), 1, + [17963] = 25, + ACTIONS(752), 1, + anon_sym_LBRACK, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(762), 1, + sym_string_start, + ACTIONS(850), 1, + anon_sym_yield, + ACTIONS(1076), 1, + anon_sym_not, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(1080), 1, anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(1106), 1, anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(1266), 1, + sym_identifier, + ACTIONS(1268), 1, anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(837), 1, - anon_sym_STAR_STAR, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1291), 1, - anon_sym_RBRACE, - STATE(962), 1, + ACTIONS(1274), 1, + anon_sym_RPAREN, + STATE(964), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1043), 1, sym_string, - STATE(1416), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(1919), 1, sym_expression, - STATE(2653), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - STATE(2580), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(1066), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1070), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2564), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43006,7 +43183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43023,65 +43200,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18352] = 25, - ACTIONS(291), 1, + [18073] = 25, + ACTIONS(720), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, + anon_sym_LBRACK, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(846), 1, + anon_sym_not, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(1094), 1, + anon_sym_await, + ACTIONS(1250), 1, anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(837), 1, - anon_sym_STAR_STAR, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1293), 1, - anon_sym_RBRACE, - STATE(962), 1, + ACTIONS(1254), 1, + anon_sym_lambda, + ACTIONS(1290), 1, + anon_sym_RPAREN, + STATE(963), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1035), 1, sym_string, - STATE(1416), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(1831), 1, sym_expression, - STATE(2653), 1, + STATE(2681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - STATE(2580), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(270), 3, + ACTIONS(1092), 2, anon_sym_print, - anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + STATE(2053), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(1090), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1288), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43089,7 +43268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43106,65 +43285,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18460] = 25, - ACTIONS(291), 1, + [18183] = 25, + ACTIONS(698), 1, + anon_sym_LPAREN, + ACTIONS(706), 1, + anon_sym_LBRACK, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(652), 1, - anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(837), 1, - anon_sym_STAR_STAR, - ACTIONS(1025), 1, + ACTIONS(870), 1, anon_sym_not, - ACTIONS(1295), 1, + ACTIONS(876), 1, + anon_sym_await, + ACTIONS(1248), 1, anon_sym_RBRACE, - STATE(962), 1, + ACTIONS(1286), 1, + anon_sym_STAR, + ACTIONS(1292), 1, + anon_sym_lambda, + STATE(959), 1, sym_primary_expression, - STATE(1017), 1, + STATE(972), 1, sym_string, - STATE(1416), 1, + STATE(1275), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(1829), 1, sym_expression, - STATE(2653), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - STATE(2580), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(270), 3, + ACTIONS(864), 2, anon_sym_print, - anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + STATE(2041), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(708), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(860), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1252), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(696), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1775), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43172,7 +43353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43189,65 +43370,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18568] = 25, - ACTIONS(291), 1, + [18293] = 25, + ACTIONS(698), 1, + anon_sym_LPAREN, + ACTIONS(706), 1, + anon_sym_LBRACK, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(652), 1, - anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(837), 1, - anon_sym_STAR_STAR, - ACTIONS(1025), 1, + ACTIONS(870), 1, anon_sym_not, - ACTIONS(1297), 1, + ACTIONS(876), 1, + anon_sym_await, + ACTIONS(1282), 1, anon_sym_RBRACE, - STATE(962), 1, + ACTIONS(1286), 1, + anon_sym_STAR, + ACTIONS(1292), 1, + anon_sym_lambda, + STATE(959), 1, sym_primary_expression, - STATE(1017), 1, + STATE(972), 1, sym_string, - STATE(1416), 1, + STATE(1275), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(1829), 1, sym_expression, - STATE(2653), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - STATE(2580), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(270), 3, + ACTIONS(864), 2, anon_sym_print, - anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + STATE(2041), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(708), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(860), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1280), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(696), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1775), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43255,7 +43438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43272,65 +43455,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18676] = 25, - ACTIONS(67), 1, + [18403] = 25, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(311), 1, + anon_sym_await, + ACTIONS(313), 1, sym_string_start, - ACTIONS(367), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(390), 1, - anon_sym_await, - ACTIONS(629), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1301), 1, - anon_sym_from, - ACTIONS(1303), 1, + ACTIONS(661), 1, anon_sym_STAR, - STATE(859), 1, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(866), 1, + anon_sym_STAR_STAR, + ACTIONS(1032), 1, + anon_sym_not, + ACTIONS(1298), 1, + anon_sym_RBRACE, + STATE(962), 1, sym_primary_expression, - STATE(961), 1, + STATE(1032), 1, sym_string, - STATE(1077), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1761), 1, + STATE(2110), 1, sym_expression, - STATE(2400), 1, - sym_expression_list, - STATE(2625), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, + STATE(2587), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(1299), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43338,7 +43522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43355,65 +43539,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18784] = 25, - ACTIONS(291), 1, + [18512] = 25, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(661), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(837), 1, + ACTIONS(866), 1, anon_sym_STAR_STAR, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1305), 1, + ACTIONS(1300), 1, anon_sym_RBRACE, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(2110), 1, sym_expression, - STATE(2653), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - STATE(2580), 2, + STATE(2587), 2, sym_dictionary_splat, sym_pair, - ACTIONS(270), 3, + ACTIONS(272), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43421,7 +43606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43438,64 +43623,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18892] = 24, - ACTIONS(789), 1, + [18621] = 24, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(821), 1, + ACTIONS(828), 1, anon_sym_yield, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1243), 1, + ACTIONS(1258), 1, anon_sym_LPAREN, - ACTIONS(1245), 1, + ACTIONS(1260), 1, anon_sym_STAR, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1994), 1, sym_expression, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2505), 3, + STATE(2504), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43503,7 +43689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43520,64 +43706,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18998] = 24, - ACTIONS(674), 1, - anon_sym_LBRACK, - ACTIONS(678), 1, + [18728] = 25, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(684), 1, - sym_string_start, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(1015), 1, - anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(1085), 1, - sym_identifier, - ACTIONS(1095), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(1283), 1, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(399), 1, + sym_identifier, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(661), 1, anon_sym_STAR, - STATE(942), 1, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(866), 1, + anon_sym_STAR_STAR, + ACTIONS(1032), 1, + anon_sym_not, + ACTIONS(1302), 1, + anon_sym_RBRACE, + STATE(962), 1, sym_primary_expression, - STATE(981), 1, + STATE(1032), 1, sym_string, - STATE(1147), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1890), 1, + STATE(2110), 1, sym_expression, - STATE(2764), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1093), 2, + STATE(2587), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1091), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2520), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(664), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43585,7 +43773,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43602,65 +43790,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19104] = 25, - ACTIONS(67), 1, + [18837] = 25, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(311), 1, + anon_sym_await, + ACTIONS(313), 1, sym_string_start, - ACTIONS(367), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(390), 1, - anon_sym_await, - ACTIONS(629), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(661), 1, anon_sym_STAR, - ACTIONS(1307), 1, - anon_sym_from, - STATE(859), 1, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(866), 1, + anon_sym_STAR_STAR, + ACTIONS(1032), 1, + anon_sym_not, + ACTIONS(1304), 1, + anon_sym_RBRACE, + STATE(962), 1, sym_primary_expression, - STATE(961), 1, + STATE(1032), 1, sym_string, - STATE(1077), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1796), 1, + STATE(2110), 1, sym_expression, - STATE(2515), 1, - sym_expression_list, - STATE(2625), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, + STATE(2587), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(1089), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43668,7 +43857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43685,65 +43874,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19212] = 25, - ACTIONS(291), 1, + [18946] = 24, + ACTIONS(752), 1, + anon_sym_LBRACK, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(762), 1, + sym_string_start, + ACTIONS(850), 1, + anon_sym_yield, + ACTIONS(1076), 1, + anon_sym_not, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(1080), 1, anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(1106), 1, anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(1266), 1, + sym_identifier, + ACTIONS(1268), 1, anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(837), 1, - anon_sym_STAR_STAR, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1309), 1, - anon_sym_RBRACE, - STATE(962), 1, + STATE(964), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1043), 1, sym_string, - STATE(1416), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(1919), 1, sym_expression, - STATE(2653), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - STATE(2580), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(1066), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1070), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2564), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43751,7 +43940,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43768,65 +43957,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19320] = 25, - ACTIONS(291), 1, + [19053] = 25, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(661), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(837), 1, + ACTIONS(866), 1, anon_sym_STAR_STAR, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1311), 1, + ACTIONS(1306), 1, anon_sym_RBRACE, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(2110), 1, sym_expression, - STATE(2653), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - STATE(2580), 2, + STATE(2587), 2, sym_dictionary_splat, sym_pair, - ACTIONS(270), 3, + ACTIONS(272), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43834,7 +44024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43851,65 +44041,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19428] = 25, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, + [19162] = 25, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(709), 1, - sym_string_start, - ACTIONS(1061), 1, - anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(1065), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(399), 1, sym_identifier, - ACTIONS(1313), 1, - anon_sym_from, - ACTIONS(1315), 1, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, anon_sym_STAR, - STATE(964), 1, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(866), 1, + anon_sym_STAR_STAR, + ACTIONS(1032), 1, + anon_sym_not, + ACTIONS(1308), 1, + anon_sym_RBRACE, + STATE(962), 1, sym_primary_expression, - STATE(993), 1, + STATE(1032), 1, sym_string, - STATE(1384), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1866), 1, + STATE(2110), 1, sym_expression, - STATE(2517), 1, - sym_expression_list, - STATE(2647), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, + STATE(2587), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(1089), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(701), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43917,7 +44108,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43934,65 +44125,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19536] = 25, - ACTIONS(291), 1, + [19271] = 25, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(661), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(837), 1, + ACTIONS(866), 1, anon_sym_STAR_STAR, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1317), 1, + ACTIONS(1310), 1, anon_sym_RBRACE, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(2110), 1, sym_expression, - STATE(2653), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - STATE(2580), 2, + STATE(2587), 2, sym_dictionary_splat, sym_pair, - ACTIONS(270), 3, + ACTIONS(272), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44000,7 +44192,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44017,65 +44209,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19644] = 25, - ACTIONS(291), 1, + [19380] = 24, + ACTIONS(684), 1, + anon_sym_LBRACK, + ACTIONS(688), 1, anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(694), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(874), 1, + anon_sym_yield, + ACTIONS(1018), 1, + anon_sym_not, + ACTIONS(1020), 1, + anon_sym_lambda, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(1044), 1, + anon_sym_await, + ACTIONS(1270), 1, anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(1272), 1, anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(837), 1, - anon_sym_STAR_STAR, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1319), 1, - anon_sym_RBRACE, - STATE(962), 1, + STATE(958), 1, sym_primary_expression, - STATE(1017), 1, + STATE(969), 1, sym_string, - STATE(1416), 1, + STATE(1147), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(1933), 1, sym_expression, STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(690), 2, sym_ellipsis, sym_float, - STATE(2580), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(686), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(1040), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1042), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2565), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(674), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1770), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44083,7 +44275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1205), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44100,65 +44292,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19752] = 25, - ACTIONS(291), 1, + [19487] = 25, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(661), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(837), 1, + ACTIONS(866), 1, anon_sym_STAR_STAR, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1321), 1, + ACTIONS(1312), 1, anon_sym_RBRACE, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(2110), 1, sym_expression, - STATE(2653), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - STATE(2580), 2, + STATE(2587), 2, sym_dictionary_splat, sym_pair, - ACTIONS(270), 3, + ACTIONS(272), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44166,7 +44359,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44183,65 +44376,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19860] = 25, - ACTIONS(291), 1, + [19596] = 25, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(661), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(837), 1, + ACTIONS(866), 1, anon_sym_STAR_STAR, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1323), 1, + ACTIONS(1314), 1, anon_sym_RBRACE, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(2110), 1, sym_expression, - STATE(2653), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - STATE(2580), 2, + STATE(2587), 2, sym_dictionary_splat, sym_pair, - ACTIONS(270), 3, + ACTIONS(272), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44249,7 +44443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44266,65 +44460,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19968] = 25, - ACTIONS(291), 1, + [19705] = 25, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(661), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(837), 1, + ACTIONS(866), 1, anon_sym_STAR_STAR, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1325), 1, + ACTIONS(1316), 1, anon_sym_RBRACE, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(2110), 1, sym_expression, - STATE(2653), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - STATE(2580), 2, + STATE(2587), 2, sym_dictionary_splat, sym_pair, - ACTIONS(270), 3, + ACTIONS(272), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44332,7 +44527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44349,64 +44544,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20076] = 24, - ACTIONS(699), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, + [19814] = 25, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(709), 1, - sym_string_start, - ACTIONS(867), 1, - anon_sym_yield, - ACTIONS(1061), 1, - anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(1065), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(1099), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(399), 1, sym_identifier, - ACTIONS(1289), 1, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, anon_sym_STAR, - STATE(964), 1, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(866), 1, + anon_sym_STAR_STAR, + ACTIONS(1032), 1, + anon_sym_not, + ACTIONS(1318), 1, + anon_sym_RBRACE, + STATE(962), 1, sym_primary_expression, - STATE(993), 1, + STATE(1032), 1, sym_string, - STATE(1384), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1963), 1, + STATE(2110), 1, sym_expression, - STATE(2647), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, + STATE(2587), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2556), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(689), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44414,7 +44611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44431,65 +44628,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20182] = 25, - ACTIONS(781), 1, + [19923] = 25, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1327), 1, + ACTIONS(1320), 1, anon_sym_from, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1856), 1, + STATE(1886), 1, sym_expression, - STATE(2523), 1, + STATE(2519), 1, sym_expression_list, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(1089), 2, + ACTIONS(1038), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44497,7 +44695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44514,65 +44712,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20290] = 25, - ACTIONS(291), 1, + [20032] = 25, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(83), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(374), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(652), 1, - anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(644), 1, anon_sym_LBRACK, - ACTIONS(837), 1, - anon_sym_STAR_STAR, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1331), 1, - anon_sym_RBRACE, - STATE(962), 1, + ACTIONS(1324), 1, + anon_sym_from, + ACTIONS(1326), 1, + anon_sym_STAR, + STATE(942), 1, sym_primary_expression, - STATE(1017), 1, + STATE(966), 1, sym_string, - STATE(1416), 1, + STATE(1112), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(1802), 1, sym_expression, - STATE(2653), 1, + STATE(2596), 1, + sym_expression_list, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - STATE(2580), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(1038), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(384), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44580,7 +44779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44597,65 +44796,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20398] = 25, - ACTIONS(291), 1, + [20141] = 25, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(661), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(837), 1, + ACTIONS(866), 1, anon_sym_STAR_STAR, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1333), 1, + ACTIONS(1328), 1, anon_sym_RBRACE, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(2110), 1, sym_expression, - STATE(2653), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - STATE(2580), 2, + STATE(2587), 2, sym_dictionary_splat, sym_pair, - ACTIONS(270), 3, + ACTIONS(272), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44663,7 +44863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44680,65 +44880,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20506] = 25, - ACTIONS(291), 1, + [20250] = 25, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(661), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(837), 1, + ACTIONS(866), 1, anon_sym_STAR_STAR, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1335), 1, + ACTIONS(1330), 1, anon_sym_RBRACE, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(2110), 1, sym_expression, - STATE(2653), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - STATE(2580), 2, + STATE(2587), 2, sym_dictionary_splat, sym_pair, - ACTIONS(270), 3, + ACTIONS(272), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44746,7 +44947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44763,65 +44964,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20614] = 25, - ACTIONS(291), 1, + [20359] = 25, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(661), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(837), 1, + ACTIONS(866), 1, anon_sym_STAR_STAR, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1337), 1, + ACTIONS(1332), 1, anon_sym_RBRACE, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(2110), 1, sym_expression, - STATE(2653), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - STATE(2580), 2, + STATE(2587), 2, sym_dictionary_splat, sym_pair, - ACTIONS(270), 3, + ACTIONS(272), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44829,7 +45031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44846,64 +45048,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20722] = 25, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [20468] = 25, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(985), 1, - anon_sym_not, - ACTIONS(987), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(399), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_COLON, - ACTIONS(1341), 1, - anon_sym_RBRACK, - STATE(976), 1, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(866), 1, + anon_sym_STAR_STAR, + ACTIONS(1032), 1, + anon_sym_not, + ACTIONS(1334), 1, + anon_sym_RBRACE, + STATE(962), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1032), 1, sym_string, - STATE(1436), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(2110), 1, sym_expression, - STATE(2581), 1, - sym_slice, - STATE(2596), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + STATE(2587), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44911,7 +45115,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44928,64 +45132,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20829] = 25, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [20577] = 25, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(985), 1, - anon_sym_not, - ACTIONS(987), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(399), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_COLON, - ACTIONS(1343), 1, - anon_sym_RBRACK, - STATE(976), 1, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(866), 1, + anon_sym_STAR_STAR, + ACTIONS(1032), 1, + anon_sym_not, + ACTIONS(1336), 1, + anon_sym_RBRACE, + STATE(962), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1032), 1, sym_string, - STATE(1436), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(2110), 1, sym_expression, - STATE(2581), 1, - sym_slice, - STATE(2596), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + STATE(2587), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44993,7 +45199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45010,64 +45216,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20936] = 25, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [20686] = 25, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(985), 1, + ACTIONS(71), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(83), 1, + sym_string_start, + ACTIONS(374), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(644), 1, + anon_sym_LBRACK, + ACTIONS(1326), 1, anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_COLON, - ACTIONS(1345), 1, - anon_sym_RBRACK, - STATE(976), 1, + ACTIONS(1340), 1, + anon_sym_from, + STATE(942), 1, sym_primary_expression, - STATE(1068), 1, + STATE(966), 1, sym_string, - STATE(1436), 1, + STATE(1112), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1783), 1, sym_expression, - STATE(2581), 1, - sym_slice, - STATE(2596), 1, + STATE(2433), 1, + sym_expression_list, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(1338), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(379), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(384), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45075,7 +45283,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45092,64 +45300,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21043] = 25, - ACTIONS(781), 1, + [20795] = 25, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(1080), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1266), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1342), 1, + anon_sym_from, + ACTIONS(1344), 1, anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_COLON, - ACTIONS(1347), 1, - anon_sym_RBRACK, - STATE(976), 1, + STATE(964), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1043), 1, sym_string, - STATE(1436), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1868), 1, sym_expression, - STATE(2581), 1, - sym_slice, - STATE(2596), 1, + STATE(2534), 1, + sym_expression_list, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(1038), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(1066), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1070), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45157,7 +45367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45174,63 +45384,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21150] = 24, - ACTIONS(781), 1, + [20904] = 25, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1351), 1, + ACTIONS(1346), 1, anon_sym_COLON, - STATE(976), 1, + ACTIONS(1348), 1, + anon_sym_RBRACK, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1882), 1, + STATE(1866), 1, sym_expression, - STATE(2596), 1, + STATE(2586), 1, + sym_slice, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(1349), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45238,7 +45450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45255,64 +45467,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21255] = 25, - ACTIONS(781), 1, + [21012] = 25, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1346), 1, anon_sym_COLON, - ACTIONS(1353), 1, + ACTIONS(1350), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1866), 1, sym_expression, - STATE(2581), 1, + STATE(2586), 1, sym_slice, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45320,7 +45533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45337,63 +45550,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21362] = 24, - ACTIONS(67), 1, - anon_sym_LBRACE, + [21120] = 24, ACTIONS(69), 1, - anon_sym_not, + anon_sym_LBRACE, ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(83), 1, sym_string_start, - ACTIONS(367), 1, + ACTIONS(374), 1, sym_identifier, - ACTIONS(390), 1, + ACTIONS(397), 1, anon_sym_await, - ACTIONS(629), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(644), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1326), 1, anon_sym_STAR, - STATE(859), 1, + ACTIONS(1352), 1, + anon_sym_from, + STATE(942), 1, sym_primary_expression, - STATE(961), 1, + STATE(966), 1, sym_string, - STATE(1077), 1, + STATE(1112), 1, sym_list_splat_pattern, - STATE(1819), 1, + STATE(1822), 1, sym_expression, - STATE(2502), 1, - sym_expression_list, - STATE(2625), 1, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(1355), 2, + ACTIONS(1264), 2, sym__newline, anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(379), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(384), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45401,7 +45615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45418,64 +45632,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21467] = 25, - ACTIONS(781), 1, + [21226] = 25, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1346), 1, anon_sym_COLON, - ACTIONS(1357), 1, + ACTIONS(1354), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1866), 1, sym_expression, - STATE(2581), 1, + STATE(2586), 1, sym_slice, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45483,7 +45698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45500,64 +45715,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21574] = 25, - ACTIONS(781), 1, + [21334] = 25, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1346), 1, anon_sym_COLON, - ACTIONS(1359), 1, + ACTIONS(1356), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1866), 1, sym_expression, - STATE(2581), 1, + STATE(2586), 1, sym_slice, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45565,7 +45781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45582,64 +45798,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21681] = 25, - ACTIONS(781), 1, + [21442] = 25, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1346), 1, anon_sym_COLON, - ACTIONS(1361), 1, + ACTIONS(1358), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1866), 1, sym_expression, - STATE(2581), 1, + STATE(2586), 1, sym_slice, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45647,7 +45864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45664,64 +45881,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21788] = 25, - ACTIONS(781), 1, + [21550] = 25, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1346), 1, anon_sym_COLON, - ACTIONS(1363), 1, + ACTIONS(1360), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1866), 1, sym_expression, - STATE(2581), 1, + STATE(2586), 1, sym_slice, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45729,7 +45947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45746,64 +45964,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21895] = 25, - ACTIONS(781), 1, + [21658] = 25, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1346), 1, anon_sym_COLON, - ACTIONS(1365), 1, + ACTIONS(1362), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1866), 1, sym_expression, - STATE(2581), 1, + STATE(2586), 1, sym_slice, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45811,7 +46030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45828,63 +46047,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22002] = 24, - ACTIONS(67), 1, + [21766] = 25, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(774), 1, + anon_sym_LBRACK, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(784), 1, + sym_string_start, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(367), 1, - sym_identifier, - ACTIONS(390), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1256), 1, + sym_identifier, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1367), 1, - anon_sym_from, - STATE(859), 1, + ACTIONS(1346), 1, + anon_sym_COLON, + ACTIONS(1364), 1, + anon_sym_RBRACK, + STATE(979), 1, sym_primary_expression, - STATE(961), 1, + STATE(1131), 1, sym_string, - STATE(1077), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1805), 1, + STATE(1866), 1, sym_expression, - STATE(2625), 1, + STATE(2586), 1, + sym_slice, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(1273), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45892,7 +46113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45909,64 +46130,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22107] = 25, - ACTIONS(781), 1, + [21874] = 25, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1346), 1, anon_sym_COLON, - ACTIONS(1369), 1, + ACTIONS(1366), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1866), 1, sym_expression, - STATE(2581), 1, + STATE(2586), 1, sym_slice, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45974,7 +46196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45991,64 +46213,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22214] = 25, - ACTIONS(781), 1, + [21982] = 25, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1346), 1, anon_sym_COLON, - ACTIONS(1371), 1, + ACTIONS(1368), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1866), 1, sym_expression, - STATE(2581), 1, + STATE(2586), 1, sym_slice, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46056,7 +46279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46073,64 +46296,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22321] = 25, - ACTIONS(781), 1, + [22090] = 24, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1372), 1, anon_sym_COLON, - ACTIONS(1373), 1, - anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1872), 1, sym_expression, - STATE(2581), 1, - sym_slice, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(1370), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46138,7 +46361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46155,64 +46378,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22428] = 25, - ACTIONS(781), 1, + [22196] = 25, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1346), 1, anon_sym_COLON, - ACTIONS(1375), 1, + ACTIONS(1374), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1866), 1, sym_expression, - STATE(2581), 1, + STATE(2586), 1, sym_slice, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46220,7 +46444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46237,64 +46461,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22535] = 25, - ACTIONS(781), 1, + [22304] = 25, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1346), 1, anon_sym_COLON, - ACTIONS(1377), 1, + ACTIONS(1376), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1866), 1, sym_expression, - STATE(2581), 1, + STATE(2586), 1, sym_slice, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46302,7 +46527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46319,63 +46544,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22642] = 24, - ACTIONS(67), 1, + [22412] = 25, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(774), 1, + anon_sym_LBRACK, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(784), 1, + sym_string_start, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(367), 1, - sym_identifier, - ACTIONS(390), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1256), 1, + sym_identifier, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1379), 1, - anon_sym_from, - STATE(859), 1, + ACTIONS(1346), 1, + anon_sym_COLON, + ACTIONS(1378), 1, + anon_sym_RBRACK, + STATE(979), 1, sym_primary_expression, - STATE(961), 1, + STATE(1131), 1, sym_string, - STATE(1077), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1805), 1, + STATE(1866), 1, sym_expression, - STATE(2625), 1, + STATE(2586), 1, + sym_slice, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(1281), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46383,7 +46610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46400,66 +46627,72 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22747] = 19, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(648), 1, + [22520] = 24, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(652), 1, - anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(662), 1, + ACTIONS(778), 1, + anon_sym_LBRACE, + ACTIONS(784), 1, + sym_string_start, + ACTIONS(992), 1, + anon_sym_not, + ACTIONS(994), 1, + anon_sym_lambda, + ACTIONS(996), 1, anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1124), 1, + ACTIONS(1256), 1, + sym_identifier, + ACTIONS(1322), 1, + anon_sym_STAR, + ACTIONS(1382), 1, + anon_sym_COLON, + STATE(979), 1, sym_primary_expression, - STATE(1416), 1, + STATE(1131), 1, + sym_string, + STATE(1431), 1, sym_list_splat_pattern, + STATE(1885), 1, + sym_expression, + STATE(2600), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(302), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(296), 3, + ACTIONS(1380), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(643), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(654), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 5, + ACTIONS(764), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(257), 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(1348), 16, + STATE(1760), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46476,64 +46709,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22842] = 25, - ACTIONS(781), 1, + [22626] = 25, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1346), 1, anon_sym_COLON, - ACTIONS(1381), 1, + ACTIONS(1384), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1866), 1, sym_expression, - STATE(2581), 1, + STATE(2586), 1, sym_slice, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46541,7 +46775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46558,64 +46792,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22949] = 25, - ACTIONS(781), 1, + [22734] = 25, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1346), 1, anon_sym_COLON, - ACTIONS(1383), 1, + ACTIONS(1386), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1866), 1, sym_expression, - STATE(2581), 1, + STATE(2586), 1, sym_slice, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46623,7 +46858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46640,64 +46875,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23056] = 25, - ACTIONS(781), 1, + [22842] = 25, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1346), 1, anon_sym_COLON, - ACTIONS(1385), 1, + ACTIONS(1388), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1866), 1, sym_expression, - STATE(2581), 1, + STATE(2586), 1, sym_slice, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46705,7 +46941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46722,64 +46958,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23163] = 25, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [22950] = 24, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(985), 1, + ACTIONS(71), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(83), 1, + sym_string_start, + ACTIONS(374), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(644), 1, + anon_sym_LBRACK, + ACTIONS(1326), 1, anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_COLON, - ACTIONS(1387), 1, - anon_sym_RBRACK, - STATE(976), 1, + STATE(942), 1, sym_primary_expression, - STATE(1068), 1, + STATE(966), 1, sym_string, - STATE(1436), 1, + STATE(1112), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1807), 1, sym_expression, - STATE(2581), 1, - sym_slice, - STATE(2596), 1, + STATE(2512), 1, + sym_expression_list, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(1390), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(379), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(384), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46787,7 +47023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46804,64 +47040,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23270] = 25, - ACTIONS(781), 1, + [23056] = 25, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1346), 1, anon_sym_COLON, - ACTIONS(1389), 1, + ACTIONS(1392), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1866), 1, sym_expression, - STATE(2581), 1, + STATE(2586), 1, sym_slice, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46869,7 +47106,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46886,64 +47123,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23377] = 25, - ACTIONS(781), 1, + [23164] = 25, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1346), 1, anon_sym_COLON, - ACTIONS(1391), 1, + ACTIONS(1394), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1866), 1, sym_expression, - STATE(2581), 1, + STATE(2586), 1, sym_slice, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46951,7 +47189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46968,64 +47206,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23484] = 25, - ACTIONS(781), 1, + [23272] = 25, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1346), 1, anon_sym_COLON, - ACTIONS(1393), 1, + ACTIONS(1396), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1866), 1, sym_expression, - STATE(2581), 1, + STATE(2586), 1, sym_slice, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47033,7 +47272,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47050,64 +47289,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23591] = 25, - ACTIONS(781), 1, + [23380] = 25, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1346), 1, anon_sym_COLON, - ACTIONS(1395), 1, + ACTIONS(1398), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1866), 1, sym_expression, - STATE(2581), 1, + STATE(2586), 1, sym_slice, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47115,7 +47355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47132,64 +47372,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23698] = 25, - ACTIONS(781), 1, + [23488] = 25, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1346), 1, anon_sym_COLON, - ACTIONS(1397), 1, + ACTIONS(1400), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1866), 1, sym_expression, - STATE(2581), 1, + STATE(2586), 1, sym_slice, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47197,7 +47438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47214,63 +47455,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23805] = 24, - ACTIONS(781), 1, + [23596] = 25, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1401), 1, + ACTIONS(1346), 1, anon_sym_COLON, - STATE(976), 1, + ACTIONS(1402), 1, + anon_sym_RBRACK, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1877), 1, + STATE(1866), 1, sym_expression, - STATE(2596), 1, + STATE(2586), 1, + sym_slice, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(1399), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47278,7 +47521,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47295,64 +47538,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23910] = 25, - ACTIONS(781), 1, + [23704] = 25, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1346), 1, anon_sym_COLON, - ACTIONS(1403), 1, + ACTIONS(1404), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1866), 1, sym_expression, - STATE(2581), 1, + STATE(2586), 1, sym_slice, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47360,7 +47604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47377,64 +47621,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24017] = 25, - ACTIONS(781), 1, + [23812] = 25, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1346), 1, anon_sym_COLON, - ACTIONS(1405), 1, + ACTIONS(1406), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1866), 1, sym_expression, - STATE(2581), 1, + STATE(2586), 1, sym_slice, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47442,7 +47687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47459,63 +47704,148 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24124] = 24, - ACTIONS(291), 1, + [23920] = 25, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(774), 1, + anon_sym_LBRACK, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(784), 1, + sym_string_start, + ACTIONS(992), 1, + anon_sym_not, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(837), 1, - anon_sym_STAR_STAR, - ACTIONS(1025), 1, - anon_sym_not, - STATE(962), 1, + ACTIONS(1346), 1, + anon_sym_COLON, + ACTIONS(1408), 1, + anon_sym_RBRACK, + STATE(979), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1131), 1, sym_string, - STATE(1416), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(1866), 1, sym_expression, - STATE(2653), 1, + STATE(2586), 1, + sym_slice, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - STATE(2580), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(270), 3, + ACTIONS(776), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(764), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1760), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1424), 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, + [24028] = 25, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(774), 1, + anon_sym_LBRACK, + ACTIONS(778), 1, + anon_sym_LBRACE, + ACTIONS(784), 1, + sym_string_start, + ACTIONS(992), 1, + anon_sym_not, + ACTIONS(994), 1, + anon_sym_lambda, + ACTIONS(996), 1, + anon_sym_await, + ACTIONS(1256), 1, + sym_identifier, + ACTIONS(1322), 1, + anon_sym_STAR, + ACTIONS(1346), 1, + anon_sym_COLON, + ACTIONS(1410), 1, + anon_sym_RBRACK, + STATE(979), 1, + sym_primary_expression, + STATE(1131), 1, + sym_string, + STATE(1431), 1, + sym_list_splat_pattern, + STATE(1866), 1, + sym_expression, + STATE(2586), 1, + sym_slice, + STATE(2600), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(780), 2, + sym_ellipsis, + sym_float, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47523,7 +47853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47540,66 +47870,72 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24229] = 19, - ACTIONS(291), 1, + [24136] = 24, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(83), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(374), 1, + sym_identifier, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(652), 1, - anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(644), 1, anon_sym_LBRACK, - ACTIONS(662), 1, - anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1124), 1, + ACTIONS(1326), 1, + anon_sym_STAR, + ACTIONS(1412), 1, + anon_sym_from, + STATE(942), 1, sym_primary_expression, - STATE(1416), 1, + STATE(966), 1, + sym_string, + STATE(1112), 1, sym_list_splat_pattern, + STATE(1822), 1, + sym_expression, + STATE(2643), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(302), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(296), 3, + ACTIONS(1284), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(379), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(384), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(1407), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(304), 5, + ACTIONS(79), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(257), 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(1348), 16, + STATE(1661), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47616,64 +47952,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24324] = 25, - ACTIONS(781), 1, + [24242] = 25, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1346), 1, anon_sym_COLON, - ACTIONS(1409), 1, + ACTIONS(1414), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1866), 1, sym_expression, - STATE(2581), 1, + STATE(2586), 1, sym_slice, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47681,7 +48018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47698,64 +48035,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24431] = 25, - ACTIONS(781), 1, + [24350] = 25, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1346), 1, anon_sym_COLON, - ACTIONS(1411), 1, + ACTIONS(1416), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1866), 1, sym_expression, - STATE(2581), 1, + STATE(2586), 1, sym_slice, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47763,7 +48101,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47780,64 +48118,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24538] = 25, - ACTIONS(781), 1, + [24458] = 25, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1346), 1, anon_sym_COLON, - ACTIONS(1413), 1, + ACTIONS(1418), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1866), 1, sym_expression, - STATE(2581), 1, + STATE(2586), 1, sym_slice, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, - sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + sym_float, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47845,7 +48184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47862,64 +48201,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24645] = 25, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [24566] = 24, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(985), 1, - anon_sym_not, - ACTIONS(987), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(399), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_COLON, - ACTIONS(1415), 1, - anon_sym_RBRACK, - STATE(976), 1, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(866), 1, + anon_sym_STAR_STAR, + ACTIONS(1032), 1, + anon_sym_not, + STATE(962), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1032), 1, sym_string, - STATE(1436), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(2110), 1, sym_expression, - STATE(2581), 1, - sym_slice, - STATE(2596), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + STATE(2587), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47927,7 +48266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47944,62 +48283,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24752] = 24, - ACTIONS(291), 1, + [24672] = 25, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(774), 1, + anon_sym_LBRACK, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(784), 1, + sym_string_start, + ACTIONS(992), 1, + anon_sym_not, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1417), 1, + ACTIONS(1346), 1, anon_sym_COLON, - ACTIONS(1419), 1, - anon_sym_STAR2, - STATE(962), 1, + ACTIONS(1420), 1, + anon_sym_RBRACK, + STATE(979), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1131), 1, sym_string, - STATE(1416), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1857), 1, + STATE(1866), 1, sym_expression, - STATE(2653), 1, + STATE(2586), 1, + sym_slice, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48007,7 +48349,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48024,55 +48366,57 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24856] = 19, - ACTIONS(291), 1, + [24780] = 19, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(661), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(662), 1, + ACTIONS(669), 1, anon_sym_await, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1124), 1, + STATE(1126), 1, sym_primary_expression, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, + ACTIONS(264), 2, anon_sym_DOT, anon_sym_SLASH, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(1407), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(650), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(657), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(663), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 5, + ACTIONS(309), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(257), 9, + ACTIONS(262), 9, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, @@ -48082,7 +48426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48099,55 +48443,57 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24950] = 19, - ACTIONS(291), 1, + [24876] = 19, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(661), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(662), 1, + ACTIONS(669), 1, anon_sym_await, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1124), 1, + STATE(1126), 1, sym_primary_expression, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, + ACTIONS(264), 2, anon_sym_DOT, anon_sym_SLASH, - ACTIONS(300), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(657), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(663), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 5, + ACTIONS(1422), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(309), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(257), 9, + ACTIONS(262), 9, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, @@ -48157,7 +48503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48174,61 +48520,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25044] = 23, - ACTIONS(67), 1, + [24972] = 24, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(774), 1, + anon_sym_LBRACK, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(784), 1, + sym_string_start, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(367), 1, - sym_identifier, - ACTIONS(390), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1256), 1, + sym_identifier, + ACTIONS(1322), 1, anon_sym_STAR, - STATE(859), 1, + ACTIONS(1346), 1, + anon_sym_COLON, + STATE(979), 1, sym_primary_expression, - STATE(961), 1, + STATE(1131), 1, sym_string, - STATE(1077), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1881), 1, + STATE(1795), 1, sym_expression, - STATE(2625), 1, + STATE(2352), 1, + sym_slice, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(1421), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48236,7 +48584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48253,61 +48601,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25146] = 23, - ACTIONS(67), 1, + [25077] = 23, + ACTIONS(698), 1, + anon_sym_LPAREN, + ACTIONS(706), 1, + anon_sym_LBRACK, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(367), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(390), 1, + ACTIONS(870), 1, + anon_sym_not, + ACTIONS(876), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1286), 1, anon_sym_STAR, - STATE(859), 1, + ACTIONS(1292), 1, + anon_sym_lambda, + STATE(959), 1, sym_primary_expression, - STATE(961), 1, + STATE(972), 1, sym_string, - STATE(1077), 1, + STATE(1275), 1, sym_list_splat_pattern, - STATE(1881), 1, + STATE(1791), 1, sym_expression, - STATE(2625), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(1423), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + STATE(2038), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(708), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(860), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(864), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(696), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1775), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48315,7 +48664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48332,62 +48681,142 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25248] = 24, - ACTIONS(291), 1, + [25180] = 23, + ACTIONS(698), 1, + anon_sym_LPAREN, + ACTIONS(706), 1, + anon_sym_LBRACK, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(870), 1, anon_sym_not, - ACTIONS(1425), 1, - anon_sym_LPAREN, - ACTIONS(1427), 1, + ACTIONS(876), 1, + anon_sym_await, + ACTIONS(1286), 1, anon_sym_STAR, - STATE(962), 1, + ACTIONS(1292), 1, + anon_sym_lambda, + STATE(959), 1, sym_primary_expression, - STATE(1017), 1, + STATE(972), 1, sym_string, - STATE(1416), 1, + STATE(1275), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(1794), 1, sym_expression, - STATE(2350), 1, - sym_with_item, - STATE(2617), 1, - sym_with_clause, - STATE(2653), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + STATE(2047), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(708), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(860), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(864), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(696), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1775), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + 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, + [25283] = 23, + ACTIONS(698), 1, + anon_sym_LPAREN, + ACTIONS(706), 1, + anon_sym_LBRACK, + ACTIONS(710), 1, + anon_sym_LBRACE, + ACTIONS(716), 1, + sym_string_start, + ACTIONS(854), 1, + sym_identifier, + ACTIONS(870), 1, + anon_sym_not, + ACTIONS(876), 1, + anon_sym_await, + ACTIONS(1286), 1, + anon_sym_STAR, + ACTIONS(1292), 1, + anon_sym_lambda, + STATE(959), 1, + sym_primary_expression, + STATE(972), 1, + sym_string, + STATE(1275), 1, + sym_list_splat_pattern, + STATE(1829), 1, + sym_expression, + STATE(2683), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(712), 2, + sym_ellipsis, + sym_float, + STATE(2041), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(708), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(860), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(864), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(696), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1775), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48395,7 +48824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48412,56 +48841,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25352] = 20, - ACTIONS(284), 1, - anon_sym_in, - ACTIONS(291), 1, + [25386] = 19, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_COMMA, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(661), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(662), 1, + ACTIONS(669), 1, anon_sym_await, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1124), 1, + STATE(1126), 1, sym_primary_expression, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, + ACTIONS(264), 2, anon_sym_DOT, anon_sym_SLASH, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(296), 3, + ACTIONS(650), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(657), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(663), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 5, + ACTIONS(309), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(257), 9, + ACTIONS(262), 9, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, @@ -48471,7 +48900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48488,62 +48917,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25448] = 24, - ACTIONS(691), 1, + [25481] = 23, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(824), 1, anon_sym_not, - ACTIONS(1063), 1, - anon_sym_lambda, - ACTIONS(1065), 1, + ACTIONS(830), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1172), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1276), 1, anon_sym_STAR, - ACTIONS(1429), 1, - anon_sym_RPAREN, - STATE(964), 1, + ACTIONS(1278), 1, + anon_sym_lambda, + STATE(960), 1, sym_primary_expression, - STATE(993), 1, + STATE(974), 1, sym_string, - STATE(1384), 1, + STATE(1208), 1, sym_list_splat_pattern, - STATE(1892), 1, + STATE(1833), 1, sym_expression, - STATE(2494), 1, - sym_with_item, - STATE(2647), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + STATE(1968), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(812), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(816), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48551,7 +48980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48568,62 +48997,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25552] = 24, - ACTIONS(291), 1, + [25584] = 23, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(774), 1, + anon_sym_LBRACK, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(784), 1, + sym_string_start, + ACTIONS(992), 1, + anon_sym_not, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1431), 1, - anon_sym_COLON, - STATE(962), 1, + STATE(979), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1131), 1, sym_string, - STATE(1416), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(1916), 1, sym_expression, - STATE(2514), 1, - sym_with_item, - STATE(2653), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(1424), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48631,7 +49060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48648,61 +49077,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25656] = 23, - ACTIONS(691), 1, + [25687] = 24, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(1065), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1322), 1, anon_sym_STAR, - STATE(964), 1, + ACTIONS(1346), 1, + anon_sym_COLON, + STATE(979), 1, sym_primary_expression, - STATE(993), 1, + STATE(1131), 1, sym_string, - STATE(1384), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1896), 1, + STATE(1866), 1, sym_expression, - STATE(2647), 1, + STATE(2586), 1, + sym_slice, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(1273), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(701), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48710,7 +49141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48727,61 +49158,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25758] = 23, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, + [25792] = 23, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(709), 1, - sym_string_start, - ACTIONS(1061), 1, + ACTIONS(71), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(1065), 1, - anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(83), 1, + sym_string_start, + ACTIONS(374), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(644), 1, + anon_sym_LBRACK, + ACTIONS(1326), 1, anon_sym_STAR, - STATE(964), 1, + STATE(942), 1, sym_primary_expression, - STATE(993), 1, + STATE(966), 1, sym_string, - STATE(1384), 1, + STATE(1112), 1, sym_list_splat_pattern, - STATE(1896), 1, + STATE(1862), 1, sym_expression, - STATE(2647), 1, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(1281), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(701), 3, + ACTIONS(1426), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(379), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(384), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48789,7 +49221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48806,61 +49238,139 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25860] = 23, - ACTIONS(67), 1, + [25895] = 20, + ACTIONS(289), 1, + anon_sym_in, + ACTIONS(296), 1, anon_sym_LBRACE, + ACTIONS(305), 1, + anon_sym_COMMA, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_STAR, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(669), 1, + anon_sym_await, + STATE(1032), 1, + sym_string, + STATE(1126), 1, + sym_primary_expression, + STATE(1361), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(264), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(307), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(657), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(663), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(309), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(262), 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(1422), 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, + [25992] = 23, ACTIONS(69), 1, - anon_sym_not, + anon_sym_LBRACE, ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(83), 1, sym_string_start, - ACTIONS(367), 1, + ACTIONS(374), 1, sym_identifier, - ACTIONS(390), 1, + ACTIONS(397), 1, anon_sym_await, - ACTIONS(629), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(644), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1326), 1, anon_sym_STAR, - STATE(859), 1, + STATE(942), 1, sym_primary_expression, - STATE(961), 1, + STATE(966), 1, sym_string, - STATE(1077), 1, + STATE(1112), 1, sym_list_splat_pattern, - STATE(1805), 1, + STATE(1862), 1, sym_expression, - STATE(2625), 1, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(1433), 2, + ACTIONS(1428), 2, sym__newline, anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(379), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(384), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48868,7 +49378,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48885,65 +49395,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25962] = 19, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(648), 1, + [26095] = 23, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(652), 1, - anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(662), 1, + ACTIONS(800), 1, + anon_sym_LBRACE, + ACTIONS(806), 1, + sym_string_start, + ACTIONS(824), 1, + anon_sym_not, + ACTIONS(830), 1, anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1124), 1, + ACTIONS(1172), 1, + sym_identifier, + ACTIONS(1276), 1, + anon_sym_STAR, + ACTIONS(1278), 1, + anon_sym_lambda, + STATE(960), 1, sym_primary_expression, - STATE(1416), 1, + STATE(974), 1, + sym_string, + STATE(1208), 1, sym_list_splat_pattern, + STATE(1823), 1, + sym_expression, + STATE(2772), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(302), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(643), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(656), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(296), 3, + STATE(2087), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(812), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(816), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 5, + ACTIONS(786), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(257), 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(1348), 16, + STATE(1700), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48960,65 +49475,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26056] = 19, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(648), 1, + [26198] = 24, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(652), 1, - anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(662), 1, + ACTIONS(756), 1, + anon_sym_LBRACE, + ACTIONS(762), 1, + sym_string_start, + ACTIONS(1076), 1, + anon_sym_not, + ACTIONS(1078), 1, + anon_sym_lambda, + ACTIONS(1080), 1, anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1124), 1, + ACTIONS(1266), 1, + sym_identifier, + ACTIONS(1344), 1, + anon_sym_STAR, + ACTIONS(1430), 1, + anon_sym_RPAREN, + STATE(964), 1, sym_primary_expression, - STATE(1416), 1, + STATE(1043), 1, + sym_string, + STATE(1325), 1, sym_list_splat_pattern, + STATE(1900), 1, + sym_expression, + STATE(2505), 1, + sym_with_item, + STATE(2669), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(300), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(302), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(296), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(1066), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1070), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 5, + ACTIONS(742), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(257), 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(1348), 16, + STATE(1731), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49035,61 +49556,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26150] = 23, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [26303] = 23, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(985), 1, + ACTIONS(71), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(83), 1, + sym_string_start, + ACTIONS(374), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(644), 1, + anon_sym_LBRACK, + ACTIONS(1326), 1, anon_sym_STAR, - STATE(976), 1, + STATE(942), 1, sym_primary_expression, - STATE(1068), 1, + STATE(966), 1, sym_string, - STATE(1436), 1, + STATE(1112), 1, sym_list_splat_pattern, - STATE(1991), 1, + STATE(1822), 1, sym_expression, - STATE(2596), 1, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(1273), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(791), 3, + ACTIONS(1432), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(379), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(384), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49097,7 +49619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49114,61 +49636,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26252] = 23, - ACTIONS(781), 1, + [26406] = 23, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(824), 1, anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(830), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1172), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1276), 1, anon_sym_STAR, - STATE(976), 1, + ACTIONS(1278), 1, + anon_sym_lambda, + STATE(960), 1, sym_primary_expression, - STATE(1068), 1, + STATE(974), 1, sym_string, - STATE(1436), 1, + STATE(1208), 1, sym_list_splat_pattern, - STATE(1991), 1, + STATE(1793), 1, sym_expression, - STATE(2596), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(1281), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(791), 3, + STATE(2107), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(812), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(816), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49176,7 +49699,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49193,61 +49716,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26354] = 23, - ACTIONS(781), 1, + [26509] = 23, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1094), 1, + anon_sym_await, + ACTIONS(1250), 1, anon_sym_STAR, - STATE(976), 1, + ACTIONS(1254), 1, + anon_sym_lambda, + STATE(963), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1035), 1, sym_string, - STATE(1436), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(1970), 1, + STATE(1813), 1, sym_expression, - STATE(2596), 1, + STATE(2681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(1399), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(791), 3, + STATE(2048), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(1090), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1092), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49255,7 +49779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49272,61 +49796,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26456] = 23, - ACTIONS(757), 1, + [26612] = 23, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(863), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1129), 1, + ACTIONS(994), 1, + anon_sym_lambda, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1269), 1, + ACTIONS(1256), 1, + sym_identifier, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1271), 1, - anon_sym_lambda, - STATE(959), 1, + STATE(979), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1131), 1, sym_string, - STATE(1337), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1827), 1, + STATE(1990), 1, sym_expression, - STATE(2670), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, - anon_sym_match, - anon_sym_type, - STATE(1889), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(769), 3, + ACTIONS(1434), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49334,7 +49859,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49351,62 +49876,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26558] = 24, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, + [26715] = 23, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(709), 1, - sym_string_start, - ACTIONS(1061), 1, + ACTIONS(71), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(1065), 1, - anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(83), 1, + sym_string_start, + ACTIONS(374), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(644), 1, + anon_sym_LBRACK, + ACTIONS(1326), 1, anon_sym_STAR, - ACTIONS(1435), 1, - anon_sym_RPAREN, - STATE(964), 1, + STATE(942), 1, sym_primary_expression, - STATE(993), 1, + STATE(966), 1, sym_string, - STATE(1384), 1, + STATE(1112), 1, sym_list_splat_pattern, - STATE(1892), 1, + STATE(1822), 1, sym_expression, - STATE(2494), 1, - sym_with_item, - STATE(2647), 1, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(1436), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(379), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(384), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49414,7 +49939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49431,61 +49956,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26662] = 23, - ACTIONS(713), 1, + [26818] = 23, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(824), 1, anon_sym_not, - ACTIONS(823), 1, + ACTIONS(830), 1, anon_sym_await, - ACTIONS(1149), 1, + ACTIONS(1172), 1, sym_identifier, - ACTIONS(1257), 1, + ACTIONS(1276), 1, anon_sym_STAR, - ACTIONS(1263), 1, + ACTIONS(1278), 1, anon_sym_lambda, - STATE(869), 1, + STATE(960), 1, sym_primary_expression, - STATE(969), 1, + STATE(974), 1, sym_string, - STATE(1268), 1, + STATE(1208), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1833), 1, sym_expression, - STATE(2762), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, - anon_sym_match, - anon_sym_type, - STATE(1984), 2, + STATE(2088), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(723), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(812), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(816), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49493,7 +50019,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49510,61 +50036,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26764] = 23, - ACTIONS(67), 1, + [26921] = 24, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(774), 1, + anon_sym_LBRACK, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(784), 1, + sym_string_start, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(367), 1, - sym_identifier, - ACTIONS(390), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1256), 1, + sym_identifier, + ACTIONS(1322), 1, anon_sym_STAR, - STATE(859), 1, + ACTIONS(1346), 1, + anon_sym_COLON, + STATE(979), 1, sym_primary_expression, - STATE(961), 1, + STATE(1131), 1, sym_string, - STATE(1077), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1792), 1, + STATE(1796), 1, sym_expression, - STATE(2625), 1, + STATE(2323), 1, + sym_slice, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(1437), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49572,7 +50100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49589,61 +50117,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26866] = 23, - ACTIONS(67), 1, - anon_sym_LBRACE, + [27026] = 23, ACTIONS(69), 1, - anon_sym_not, + anon_sym_LBRACE, ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(83), 1, sym_string_start, - ACTIONS(367), 1, + ACTIONS(374), 1, sym_identifier, - ACTIONS(390), 1, + ACTIONS(397), 1, anon_sym_await, - ACTIONS(629), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(644), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1326), 1, anon_sym_STAR, - STATE(859), 1, + STATE(942), 1, sym_primary_expression, - STATE(961), 1, + STATE(966), 1, sym_string, - STATE(1077), 1, + STATE(1112), 1, sym_list_splat_pattern, - STATE(1805), 1, + STATE(1862), 1, sym_expression, - STATE(2625), 1, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(1439), 2, + ACTIONS(1438), 2, sym__newline, anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(379), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(384), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49651,7 +50180,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49668,61 +50197,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26968] = 23, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACK, - ACTIONS(725), 1, + [27129] = 23, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(731), 1, - sym_string_start, - ACTIONS(817), 1, + ACTIONS(71), 1, anon_sym_not, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(1149), 1, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(83), 1, + sym_string_start, + ACTIONS(374), 1, sym_identifier, - ACTIONS(1257), 1, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(644), 1, + anon_sym_LBRACK, + ACTIONS(1326), 1, anon_sym_STAR, - ACTIONS(1263), 1, - anon_sym_lambda, - STATE(869), 1, + STATE(942), 1, sym_primary_expression, - STATE(969), 1, + STATE(966), 1, sym_string, - STATE(1268), 1, + STATE(1112), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1862), 1, sym_expression, - STATE(2762), 1, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, - anon_sym_match, - anon_sym_type, - STATE(1909), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(723), 3, + ACTIONS(1440), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(379), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(384), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49730,7 +50260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49747,61 +50277,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27070] = 23, - ACTIONS(781), 1, + [27232] = 23, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1094), 1, + anon_sym_await, + ACTIONS(1250), 1, anon_sym_STAR, - STATE(976), 1, + ACTIONS(1254), 1, + anon_sym_lambda, + STATE(963), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1035), 1, sym_string, - STATE(1436), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1831), 1, sym_expression, - STATE(2596), 1, + STATE(2681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(1441), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(791), 3, + STATE(1992), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(1090), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1092), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49809,7 +50340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49826,61 +50357,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27172] = 23, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACK, - ACTIONS(725), 1, + [27335] = 24, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(731), 1, - sym_string_start, - ACTIONS(817), 1, - anon_sym_not, - ACTIONS(823), 1, + ACTIONS(303), 1, + anon_sym_lambda, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(1149), 1, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(399), 1, sym_identifier, - ACTIONS(1257), 1, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(1032), 1, + anon_sym_not, + ACTIONS(1442), 1, anon_sym_STAR, - ACTIONS(1263), 1, - anon_sym_lambda, - STATE(869), 1, + ACTIONS(1444), 1, + anon_sym_COLON, + STATE(962), 1, sym_primary_expression, - STATE(969), 1, + STATE(1032), 1, sym_string, - STATE(1268), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1793), 1, + STATE(1985), 1, sym_expression, - STATE(2762), 1, + STATE(2516), 1, + sym_with_item, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - STATE(2008), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(723), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49888,7 +50421,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49905,61 +50438,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27274] = 23, - ACTIONS(757), 1, + [27440] = 23, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(863), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1129), 1, + ACTIONS(994), 1, + anon_sym_lambda, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1269), 1, + ACTIONS(1256), 1, + sym_identifier, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1271), 1, - anon_sym_lambda, - STATE(959), 1, + STATE(979), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1131), 1, sym_string, - STATE(1337), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1827), 1, + STATE(1997), 1, sym_expression, - STATE(2670), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, - anon_sym_match, - anon_sym_type, - STATE(1901), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(769), 3, + ACTIONS(1264), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49967,7 +50501,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49984,61 +50518,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27376] = 23, - ACTIONS(713), 1, + [27543] = 23, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(823), 1, + ACTIONS(994), 1, + anon_sym_lambda, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1149), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1257), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1263), 1, - anon_sym_lambda, - STATE(869), 1, + STATE(979), 1, sym_primary_expression, - STATE(969), 1, + STATE(1131), 1, sym_string, - STATE(1268), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1794), 1, + STATE(1932), 1, sym_expression, - STATE(2762), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, - anon_sym_match, - anon_sym_type, - STATE(2086), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(723), 3, + ACTIONS(1370), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50046,7 +50581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50063,61 +50598,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27478] = 23, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACK, - ACTIONS(725), 1, + [27646] = 24, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(731), 1, - sym_string_start, - ACTIONS(817), 1, - anon_sym_not, - ACTIONS(823), 1, + ACTIONS(303), 1, + anon_sym_lambda, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(1149), 1, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(399), 1, sym_identifier, - ACTIONS(1257), 1, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(1032), 1, + anon_sym_not, + ACTIONS(1442), 1, anon_sym_STAR, - ACTIONS(1263), 1, - anon_sym_lambda, - STATE(869), 1, + ACTIONS(1446), 1, + anon_sym_LPAREN, + STATE(962), 1, sym_primary_expression, - STATE(969), 1, + STATE(1032), 1, sym_string, - STATE(1268), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1985), 1, sym_expression, - STATE(2762), 1, + STATE(2251), 1, + sym_with_item, + STATE(2735), 1, + sym_with_clause, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - STATE(2011), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(723), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50125,7 +50662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50142,70 +50679,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27580] = 24, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [27751] = 19, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(985), 1, - anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - ACTIONS(1241), 1, - sym_identifier, - ACTIONS(1329), 1, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_COLON, - STATE(976), 1, - sym_primary_expression, - STATE(1068), 1, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(669), 1, + anon_sym_await, + STATE(1032), 1, sym_string, - STATE(1436), 1, + STATE(1126), 1, + sym_primary_expression, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1795), 1, - sym_expression, - STATE(2315), 1, - sym_slice, - STATE(2596), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(264), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(305), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(657), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(663), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(309), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1768), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1439), 16, + ACTIONS(262), 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(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50222,61 +50755,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27684] = 23, - ACTIONS(735), 1, - anon_sym_LPAREN, - ACTIONS(743), 1, - anon_sym_LBRACK, - ACTIONS(747), 1, + [27846] = 24, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(303), 1, + anon_sym_lambda, + ACTIONS(311), 1, + anon_sym_await, + ACTIONS(313), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(841), 1, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1442), 1, anon_sym_STAR, - ACTIONS(1255), 1, - anon_sym_lambda, - STATE(935), 1, + ACTIONS(1448), 1, + anon_sym_COLON, + STATE(962), 1, sym_primary_expression, - STATE(973), 1, + STATE(1032), 1, sym_string, - STATE(1231), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1985), 1, sym_expression, - STATE(2675), 1, + STATE(2516), 1, + sym_with_item, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - STATE(1906), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(745), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50284,7 +50819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50301,61 +50836,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27786] = 23, - ACTIONS(735), 1, + [27951] = 23, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(825), 1, - sym_identifier, - ACTIONS(841), 1, + ACTIONS(824), 1, anon_sym_not, - ACTIONS(847), 1, + ACTIONS(830), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1172), 1, + sym_identifier, + ACTIONS(1276), 1, anon_sym_STAR, - ACTIONS(1255), 1, + ACTIONS(1278), 1, anon_sym_lambda, - STATE(935), 1, + STATE(960), 1, sym_primary_expression, - STATE(973), 1, + STATE(974), 1, sym_string, - STATE(1231), 1, + STATE(1208), 1, sym_list_splat_pattern, - STATE(1813), 1, + STATE(1833), 1, sym_expression, - STATE(2675), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, - anon_sym_match, - anon_sym_type, - STATE(2028), 2, + STATE(2000), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(745), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(812), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(816), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50363,7 +50899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50380,61 +50916,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27888] = 23, - ACTIONS(735), 1, + [28054] = 23, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(825), 1, - sym_identifier, - ACTIONS(841), 1, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(847), 1, + ACTIONS(1078), 1, + anon_sym_lambda, + ACTIONS(1080), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1266), 1, + sym_identifier, + ACTIONS(1344), 1, anon_sym_STAR, - ACTIONS(1255), 1, - anon_sym_lambda, - STATE(935), 1, + STATE(964), 1, sym_primary_expression, - STATE(973), 1, + STATE(1043), 1, sym_string, - STATE(1231), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1814), 1, + STATE(1936), 1, sym_expression, - STATE(2675), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, - anon_sym_match, - anon_sym_type, - STATE(2035), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(745), 3, + ACTIONS(1284), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(1066), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1070), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50442,7 +50979,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50459,61 +50996,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27990] = 23, - ACTIONS(735), 1, + [28157] = 23, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(825), 1, - sym_identifier, - ACTIONS(841), 1, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(847), 1, + ACTIONS(1086), 1, + sym_identifier, + ACTIONS(1094), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1250), 1, anon_sym_STAR, - ACTIONS(1255), 1, + ACTIONS(1254), 1, anon_sym_lambda, - STATE(935), 1, + STATE(963), 1, sym_primary_expression, - STATE(973), 1, + STATE(1035), 1, sym_string, - STATE(1231), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1831), 1, sym_expression, - STATE(2675), 1, + STATE(2681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, - anon_sym_match, - anon_sym_type, - STATE(2029), 2, + STATE(2053), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(745), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(1090), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1092), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50521,7 +51059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50538,69 +51076,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28092] = 23, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [28260] = 19, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(985), 1, - anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - ACTIONS(1241), 1, - sym_identifier, - ACTIONS(1329), 1, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, anon_sym_STAR, - STATE(976), 1, - sym_primary_expression, - STATE(1068), 1, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(669), 1, + anon_sym_await, + STATE(1032), 1, sym_string, - STATE(1436), 1, + STATE(1126), 1, + sym_primary_expression, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1954), 1, - sym_expression, - STATE(2596), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(264), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(1443), 2, + ACTIONS(1422), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(791), 3, + anon_sym_COLON, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(657), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(663), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(309), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1768), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1439), 16, + ACTIONS(262), 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(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50617,70 +51152,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28194] = 24, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [28355] = 19, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(985), 1, - anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - ACTIONS(1241), 1, - sym_identifier, - ACTIONS(1329), 1, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_COLON, - STATE(976), 1, - sym_primary_expression, - STATE(1068), 1, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(669), 1, + anon_sym_await, + STATE(1032), 1, sym_string, - STATE(1436), 1, + STATE(1126), 1, + sym_primary_expression, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1876), 1, - sym_expression, - STATE(2581), 1, - sym_slice, - STATE(2596), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(264), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(305), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(657), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(663), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(309), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1768), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1439), 16, + ACTIONS(262), 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(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50697,61 +51228,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28298] = 23, - ACTIONS(757), 1, + [28450] = 23, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(863), 1, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(1121), 1, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1094), 1, anon_sym_await, - ACTIONS(1269), 1, + ACTIONS(1250), 1, anon_sym_STAR, - ACTIONS(1271), 1, + ACTIONS(1254), 1, anon_sym_lambda, - STATE(959), 1, + STATE(963), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1035), 1, sym_string, - STATE(1337), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(1800), 1, + STATE(1827), 1, sym_expression, - STATE(2670), 1, + STATE(2681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, - anon_sym_match, - anon_sym_type, - STATE(2066), 2, + STATE(2018), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(769), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1090), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1092), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50759,7 +51291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50776,61 +51308,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28400] = 23, - ACTIONS(67), 1, + [28553] = 23, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(774), 1, + anon_sym_LBRACK, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(784), 1, + sym_string_start, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(367), 1, - sym_identifier, - ACTIONS(390), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1256), 1, + sym_identifier, + ACTIONS(1322), 1, anon_sym_STAR, - STATE(859), 1, + STATE(979), 1, sym_primary_expression, - STATE(961), 1, + STATE(1131), 1, sym_string, - STATE(1077), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1881), 1, + STATE(1997), 1, sym_expression, - STATE(2625), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(1445), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(1284), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50838,7 +51371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50855,61 +51388,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28502] = 23, - ACTIONS(67), 1, + [28656] = 24, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(311), 1, + anon_sym_await, + ACTIONS(313), 1, sym_string_start, - ACTIONS(367), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(390), 1, - anon_sym_await, - ACTIONS(629), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(661), 1, anon_sym_STAR, - STATE(859), 1, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(1032), 1, + anon_sym_not, + ACTIONS(1450), 1, + anon_sym_COLON, + ACTIONS(1452), 1, + anon_sym_STAR2, + STATE(962), 1, sym_primary_expression, - STATE(961), 1, + STATE(1032), 1, sym_string, - STATE(1077), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1881), 1, + STATE(1882), 1, sym_expression, - STATE(2625), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(1447), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50917,7 +51452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50934,61 +51469,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28604] = 23, - ACTIONS(757), 1, + [28761] = 24, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(863), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1129), 1, + ACTIONS(994), 1, + anon_sym_lambda, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1269), 1, + ACTIONS(1256), 1, + sym_identifier, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1271), 1, - anon_sym_lambda, - STATE(959), 1, + ACTIONS(1346), 1, + anon_sym_COLON, + STATE(979), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1131), 1, sym_string, - STATE(1337), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1808), 1, + STATE(1835), 1, sym_expression, - STATE(2670), 1, + STATE(2405), 1, + sym_slice, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, - anon_sym_match, - anon_sym_type, - STATE(2010), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(769), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50996,7 +51533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51013,62 +51550,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28706] = 24, - ACTIONS(291), 1, + [28866] = 23, + ACTIONS(698), 1, + anon_sym_LPAREN, + ACTIONS(706), 1, + anon_sym_LBRACK, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(870), 1, anon_sym_not, - ACTIONS(1425), 1, - anon_sym_LPAREN, - ACTIONS(1427), 1, + ACTIONS(876), 1, + anon_sym_await, + ACTIONS(1286), 1, anon_sym_STAR, - STATE(962), 1, + ACTIONS(1292), 1, + anon_sym_lambda, + STATE(959), 1, sym_primary_expression, - STATE(1017), 1, + STATE(972), 1, sym_string, - STATE(1416), 1, + STATE(1275), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(1829), 1, sym_expression, - STATE(2350), 1, - sym_with_item, - STATE(2605), 1, - sym_with_clause, - STATE(2653), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + STATE(1944), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(708), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(860), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(864), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(696), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1775), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51076,7 +51613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51093,62 +51630,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28810] = 24, - ACTIONS(291), 1, + [28969] = 24, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(661), 1, + anon_sym_STAR, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(1449), 1, + ACTIONS(1454), 1, anon_sym_COLON, + ACTIONS(1456), 1, + anon_sym_STAR2, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(1852), 1, sym_expression, - STATE(2514), 1, - sym_with_item, - STATE(2653), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(272), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51156,7 +51694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51173,221 +51711,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28914] = 23, - ACTIONS(757), 1, + [29074] = 24, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(863), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1129), 1, - anon_sym_await, - ACTIONS(1269), 1, - anon_sym_STAR, - ACTIONS(1271), 1, + ACTIONS(994), 1, anon_sym_lambda, - STATE(959), 1, - sym_primary_expression, - STATE(1012), 1, - sym_string, - STATE(1337), 1, - sym_list_splat_pattern, - STATE(1827), 1, - sym_expression, - STATE(2670), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(773), 2, - sym_ellipsis, - sym_float, - ACTIONS(1127), 2, - anon_sym_match, - anon_sym_type, - STATE(2069), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(769), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1125), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(755), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1828), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1334), 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, - [29016] = 24, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, - anon_sym_LBRACE, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(985), 1, - anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1346), 1, anon_sym_COLON, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1799), 1, + STATE(1821), 1, sym_expression, - STATE(2406), 1, + STATE(2265), 1, sym_slice, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(779), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1768), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1439), 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, - [29120] = 24, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(652), 1, - anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1451), 1, - anon_sym_COLON, - ACTIONS(1453), 1, - anon_sym_STAR2, - STATE(962), 1, - sym_primary_expression, - STATE(1017), 1, - sym_string, - STATE(1416), 1, - sym_list_splat_pattern, - STATE(1872), 1, - sym_expression, - STATE(2653), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(982), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(270), 3, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51395,7 +51775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51412,62 +51792,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29224] = 24, - ACTIONS(781), 1, + [29179] = 24, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1346), 1, anon_sym_COLON, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1806), 1, + STATE(1790), 1, sym_expression, - STATE(2263), 1, + STATE(2311), 1, sym_slice, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51475,7 +51856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51492,62 +51873,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29328] = 24, - ACTIONS(781), 1, + [29284] = 23, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1094), 1, + anon_sym_await, + ACTIONS(1250), 1, anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_COLON, - STATE(976), 1, + ACTIONS(1254), 1, + anon_sym_lambda, + STATE(963), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1035), 1, sym_string, - STATE(1436), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(1812), 1, + STATE(1831), 1, sym_expression, - STATE(2305), 1, - sym_slice, - STATE(2596), 1, + STATE(2681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + STATE(1946), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(1090), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1092), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51555,7 +51936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51572,62 +51953,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29432] = 24, - ACTIONS(781), 1, + [29387] = 24, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1346), 1, anon_sym_COLON, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1797), 1, sym_expression, - STATE(2348), 1, + STATE(2374), 1, sym_slice, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51635,7 +52017,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51652,62 +52034,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29536] = 24, - ACTIONS(781), 1, + [29492] = 24, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1346), 1, anon_sym_COLON, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1816), 1, + STATE(1804), 1, sym_expression, - STATE(2375), 1, + STATE(2395), 1, sym_slice, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51715,7 +52098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51732,62 +52115,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29640] = 24, - ACTIONS(781), 1, + [29597] = 24, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1346), 1, anon_sym_COLON, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1821), 1, + STATE(1812), 1, sym_expression, - STATE(2396), 1, + STATE(2419), 1, sym_slice, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51795,7 +52179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51812,62 +52196,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29744] = 24, - ACTIONS(781), 1, + [29702] = 24, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1346), 1, anon_sym_COLON, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1823), 1, + STATE(1814), 1, sym_expression, - STATE(2418), 1, + STATE(2428), 1, sym_slice, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51875,7 +52260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51892,62 +52277,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29848] = 24, - ACTIONS(781), 1, + [29807] = 24, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1346), 1, anon_sym_COLON, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1787), 1, + STATE(1815), 1, sym_expression, - STATE(2428), 1, + STATE(2435), 1, sym_slice, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51955,7 +52341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51972,62 +52358,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29952] = 24, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [29912] = 23, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(985), 1, + ACTIONS(71), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(83), 1, + sym_string_start, + ACTIONS(374), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(644), 1, + anon_sym_LBRACK, + ACTIONS(1326), 1, anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_COLON, - STATE(976), 1, + STATE(942), 1, sym_primary_expression, - STATE(1068), 1, + STATE(966), 1, sym_string, - STATE(1436), 1, + STATE(1112), 1, sym_list_splat_pattern, - STATE(1825), 1, + STATE(1824), 1, sym_expression, - STATE(2435), 1, - sym_slice, - STATE(2596), 1, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(1458), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(379), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(384), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52035,7 +52421,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52052,62 +52438,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30056] = 24, - ACTIONS(291), 1, + [30015] = 24, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1425), 1, - anon_sym_LPAREN, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, + ACTIONS(1446), 1, + anon_sym_LPAREN, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(1985), 1, sym_expression, - STATE(2350), 1, + STATE(2251), 1, sym_with_item, - STATE(2653), 1, - sym__named_expression_lhs, - STATE(2667), 1, + STATE(2671), 1, sym_with_clause, + STATE(2751), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(272), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52115,7 +52502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52132,62 +52519,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30160] = 24, - ACTIONS(291), 1, + [30120] = 24, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1425), 1, - anon_sym_LPAREN, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, + ACTIONS(1446), 1, + anon_sym_LPAREN, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(1985), 1, sym_expression, - STATE(2350), 1, + STATE(2251), 1, sym_with_item, - STATE(2653), 1, - sym__named_expression_lhs, - STATE(2674), 1, + STATE(2678), 1, sym_with_clause, + STATE(2751), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(272), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52195,7 +52583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52212,61 +52600,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30264] = 23, - ACTIONS(735), 1, + [30225] = 24, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(825), 1, - sym_identifier, - ACTIONS(841), 1, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(847), 1, + ACTIONS(1078), 1, + anon_sym_lambda, + ACTIONS(1080), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1266), 1, + sym_identifier, + ACTIONS(1344), 1, anon_sym_STAR, - ACTIONS(1255), 1, - anon_sym_lambda, - STATE(935), 1, + ACTIONS(1460), 1, + anon_sym_RPAREN, + STATE(964), 1, sym_primary_expression, - STATE(973), 1, + STATE(1043), 1, sym_string, - STATE(1231), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1900), 1, sym_expression, - STATE(2675), 1, + STATE(2505), 1, + sym_with_item, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, - anon_sym_match, - anon_sym_type, - STATE(1912), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(745), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(1066), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1070), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52274,7 +52664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52291,125 +52681,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30366] = 10, - ACTIONS(264), 1, - anon_sym_COMMA, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(1455), 1, - sym_identifier, - ACTIONS(1457), 1, - sym_string_start, - STATE(2245), 1, - sym_string, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(284), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(257), 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(300), 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(259), 22, - anon_sym_as, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT, - anon_sym_GT, - [30441] = 23, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, + [30330] = 24, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(709), 1, - sym_string_start, - ACTIONS(1061), 1, - anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(1065), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(399), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(1032), 1, + anon_sym_not, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(964), 1, + ACTIONS(1446), 1, + anon_sym_LPAREN, + STATE(962), 1, sym_primary_expression, - STATE(993), 1, + STATE(1032), 1, sym_string, - STATE(1384), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1892), 1, + STATE(1985), 1, sym_expression, - STATE(2494), 1, + STATE(2251), 1, sym_with_item, - STATE(2647), 1, + STATE(2728), 1, + sym_with_clause, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52417,7 +52745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52434,60 +52762,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30542] = 23, - ACTIONS(291), 1, + [30435] = 23, + ACTIONS(698), 1, + anon_sym_LPAREN, + ACTIONS(706), 1, + anon_sym_LBRACK, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(870), 1, anon_sym_not, - ACTIONS(1281), 1, - anon_sym_COLON, - ACTIONS(1427), 1, + ACTIONS(876), 1, + anon_sym_await, + ACTIONS(1286), 1, anon_sym_STAR, - STATE(962), 1, + ACTIONS(1292), 1, + anon_sym_lambda, + STATE(959), 1, sym_primary_expression, - STATE(1017), 1, + STATE(972), 1, sym_string, - STATE(1416), 1, + STATE(1275), 1, sym_list_splat_pattern, - STATE(1928), 1, + STATE(1829), 1, sym_expression, - STATE(2653), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + STATE(1949), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(708), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(860), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(864), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(696), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1775), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52495,7 +52825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52512,60 +52842,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30643] = 23, - ACTIONS(291), 1, + [30538] = 23, + ACTIONS(744), 1, + anon_sym_LPAREN, + ACTIONS(752), 1, + anon_sym_LBRACK, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(762), 1, + sym_string_start, + ACTIONS(1076), 1, + anon_sym_not, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(1080), 1, anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, + ACTIONS(1266), 1, sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1344), 1, anon_sym_STAR, - ACTIONS(1459), 1, - anon_sym_COLON, - STATE(962), 1, + STATE(964), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1043), 1, sym_string, - STATE(1416), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1899), 1, + STATE(1936), 1, sym_expression, - STATE(2653), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(1264), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(1066), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1070), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52573,7 +52905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52590,126 +52922,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30744] = 11, - ACTIONS(264), 1, - anon_sym_COMMA, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(274), 1, - anon_sym_COLON, - ACTIONS(284), 1, - anon_sym_EQ, - ACTIONS(1455), 1, - sym_identifier, - ACTIONS(1457), 1, - sym_string_start, - STATE(2245), 1, - sym_string, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(257), 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(300), 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(259), 22, - anon_sym_as, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT, - anon_sym_GT, - [30821] = 23, - ACTIONS(291), 1, + [30641] = 23, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, - ACTIONS(1461), 1, + ACTIONS(1462), 1, anon_sym_COLON, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1874), 1, + STATE(1940), 1, sym_expression, - STATE(2653), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(272), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52717,7 +52984,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52734,60 +53001,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30922] = 23, - ACTIONS(291), 1, + [30743] = 23, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, - ACTIONS(1463), 1, + ACTIONS(1464), 1, anon_sym_COLON, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1840), 1, + STATE(1849), 1, sym_expression, - STATE(2653), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(272), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52795,7 +53063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52812,60 +53080,127 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31023] = 23, - ACTIONS(291), 1, + [30845] = 10, + ACTIONS(269), 1, + anon_sym_COMMA, + ACTIONS(279), 1, + anon_sym_COLON_EQ, + ACTIONS(1466), 1, + anon_sym_import, + ACTIONS(1468), 1, + anon_sym_from, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(289), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(2553), 2, + sym_import_statement, + sym_import_from_statement, + ACTIONS(305), 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(264), 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(262), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [30921] = 23, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(1465), 1, + ACTIONS(1284), 1, anon_sym_COLON, + ACTIONS(1442), 1, + anon_sym_STAR, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1899), 1, + STATE(1963), 1, sym_expression, - STATE(2653), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(272), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52873,7 +53208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52890,60 +53225,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31124] = 23, - ACTIONS(291), 1, + [31023] = 23, + ACTIONS(744), 1, + anon_sym_LPAREN, + ACTIONS(752), 1, + anon_sym_LBRACK, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(762), 1, + sym_string_start, + ACTIONS(1076), 1, + anon_sym_not, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(1080), 1, anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, + ACTIONS(1266), 1, sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1344), 1, anon_sym_STAR, - ACTIONS(1467), 1, - anon_sym_COLON, - STATE(962), 1, + STATE(964), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1043), 1, sym_string, - STATE(1416), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1899), 1, + STATE(1900), 1, sym_expression, - STATE(2653), 1, + STATE(2505), 1, + sym_with_item, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(1066), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1070), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52951,7 +53287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52968,60 +53304,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31225] = 23, - ACTIONS(291), 1, + [31125] = 23, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, + ACTIONS(1470), 1, + anon_sym_COLON, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(1940), 1, sym_expression, - STATE(2514), 1, - sym_with_item, - STATE(2653), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(272), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53029,7 +53366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53046,125 +53383,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31326] = 10, - ACTIONS(264), 1, - anon_sym_COMMA, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(1469), 1, - anon_sym_for, - ACTIONS(1471), 1, - anon_sym_with, - ACTIONS(1473), 1, - anon_sym_def, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(284), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(300), 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(259), 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(257), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [31401] = 23, - ACTIONS(291), 1, + [31227] = 23, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, + ACTIONS(1472), 1, + anon_sym_COLON, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1842), 1, + STATE(1940), 1, sym_expression, - STATE(2638), 1, - sym_expression_list, - STATE(2653), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(272), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53172,7 +53445,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53189,60 +53462,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31502] = 23, - ACTIONS(291), 1, + [31329] = 23, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1273), 1, - anon_sym_COLON, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1928), 1, + STATE(1842), 1, sym_expression, - STATE(2653), 1, + STATE(2742), 1, + sym_expression_list, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(272), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53250,7 +53524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53267,60 +53541,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31603] = 23, - ACTIONS(291), 1, + [31431] = 23, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, - ACTIONS(1475), 1, + ACTIONS(1474), 1, anon_sym_COLON, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1899), 1, + STATE(1940), 1, sym_expression, - STATE(2653), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(272), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53328,7 +53603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53345,60 +53620,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31704] = 23, - ACTIONS(291), 1, + [31533] = 23, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1851), 1, + STATE(1985), 1, sym_expression, - STATE(2595), 1, - sym_expression_list, - STATE(2653), 1, + STATE(2516), 1, + sym_with_item, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(272), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53406,7 +53682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53423,24 +53699,26 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31805] = 10, - ACTIONS(264), 1, + [31635] = 11, + ACTIONS(269), 1, anon_sym_COMMA, - ACTIONS(272), 1, + ACTIONS(279), 1, anon_sym_COLON_EQ, - ACTIONS(1477), 1, - anon_sym_for, - ACTIONS(1479), 1, - anon_sym_with, - ACTIONS(1481), 1, - anon_sym_def, + ACTIONS(281), 1, + anon_sym_COLON, + ACTIONS(289), 1, + anon_sym_EQ, + ACTIONS(1466), 1, + anon_sym_import, + ACTIONS(1468), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(284), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(300), 13, + STATE(2553), 2, + sym_import_statement, + sym_import_from_statement, + ACTIONS(305), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -53454,7 +53732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(259), 15, + ACTIONS(264), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -53470,7 +53748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 17, + ACTIONS(262), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -53488,60 +53766,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [31880] = 23, - ACTIONS(291), 1, + [31713] = 23, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1869), 1, + STATE(1850), 1, sym_expression, - STATE(2653), 1, - sym__named_expression_lhs, - STATE(2682), 1, + STATE(2686), 1, sym_expression_list, + STATE(2751), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(272), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53549,7 +53828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53566,60 +53845,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31981] = 23, - ACTIONS(291), 1, + [31815] = 23, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1870), 1, + STATE(1851), 1, sym_expression, - STATE(2653), 1, - sym__named_expression_lhs, - STATE(2691), 1, + STATE(2695), 1, sym_expression_list, + STATE(2751), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(272), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53627,7 +53907,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53644,60 +53924,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32082] = 23, - ACTIONS(67), 1, - anon_sym_LBRACE, + [31917] = 23, ACTIONS(69), 1, - anon_sym_not, + anon_sym_LBRACE, ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(83), 1, sym_string_start, - ACTIONS(367), 1, + ACTIONS(374), 1, sym_identifier, - ACTIONS(390), 1, + ACTIONS(397), 1, anon_sym_await, - ACTIONS(629), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(644), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1326), 1, anon_sym_STAR, - STATE(859), 1, + STATE(942), 1, sym_primary_expression, - STATE(961), 1, + STATE(966), 1, sym_string, - STATE(1077), 1, + STATE(1112), 1, sym_list_splat_pattern, - STATE(1820), 1, + STATE(1810), 1, sym_expression, - STATE(2506), 1, + STATE(2515), 1, sym_expression_list, - STATE(2625), 1, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(65), 3, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(379), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(384), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53705,7 +53986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53722,58 +54003,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32183] = 22, - ACTIONS(666), 1, - anon_sym_LPAREN, - ACTIONS(674), 1, - anon_sym_LBRACK, - ACTIONS(678), 1, + [32019] = 23, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(684), 1, - sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, - anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(1085), 1, - sym_identifier, - ACTIONS(1095), 1, + ACTIONS(311), 1, anon_sym_await, - STATE(942), 1, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(399), 1, + sym_identifier, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(1032), 1, + anon_sym_not, + ACTIONS(1442), 1, + anon_sym_STAR, + ACTIONS(1476), 1, + anon_sym_COLON, + STATE(962), 1, sym_primary_expression, - STATE(981), 1, + STATE(1032), 1, sym_string, - STATE(1147), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1854), 1, sym_expression, - STATE(2764), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1093), 2, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1091), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53781,7 +54065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53798,121 +54082,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32281] = 9, - ACTIONS(1487), 1, - anon_sym_else, - ACTIONS(1489), 1, - anon_sym_except, - ACTIONS(1491), 1, - anon_sym_finally, - STATE(713), 1, - sym_else_clause, - STATE(808), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(482), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1485), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [32121] = 23, + ACTIONS(296), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1483), 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(303), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(311), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [32353] = 22, - ACTIONS(757), 1, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(399), 1, + sym_identifier, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(771), 1, - anon_sym_LBRACE, - ACTIONS(777), 1, - sym_string_start, - ACTIONS(863), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(865), 1, - anon_sym_lambda, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1129), 1, - anon_sym_await, - ACTIONS(1269), 1, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(959), 1, + STATE(962), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1032), 1, sym_string, - STATE(1337), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1826), 1, + STATE(1876), 1, sym_expression, - STATE(2670), 1, + STATE(2737), 1, + sym_expression_list, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(769), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53920,7 +54144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53937,121 +54161,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32451] = 9, - ACTIONS(1487), 1, - anon_sym_else, - ACTIONS(1489), 1, - anon_sym_except, - ACTIONS(1491), 1, - anon_sym_finally, - STATE(702), 1, - sym_else_clause, - STATE(750), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(610), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1495), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [32223] = 23, + ACTIONS(296), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1493), 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(303), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(311), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [32523] = 22, - ACTIONS(757), 1, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(399), 1, + sym_identifier, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(771), 1, - anon_sym_LBRACE, - ACTIONS(777), 1, - sym_string_start, - ACTIONS(863), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(865), 1, - anon_sym_lambda, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1129), 1, - anon_sym_await, - ACTIONS(1269), 1, + ACTIONS(1264), 1, + anon_sym_COLON, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(959), 1, + STATE(962), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1032), 1, sym_string, - STATE(1337), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1839), 1, + STATE(1963), 1, sym_expression, - STATE(2670), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(769), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54059,7 +54223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54076,58 +54240,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32621] = 22, - ACTIONS(67), 1, - anon_sym_LBRACE, + [32325] = 22, ACTIONS(69), 1, - anon_sym_not, + anon_sym_LBRACE, ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(83), 1, sym_string_start, - ACTIONS(367), 1, + ACTIONS(374), 1, sym_identifier, - ACTIONS(390), 1, + ACTIONS(397), 1, anon_sym_await, - ACTIONS(629), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(644), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1326), 1, anon_sym_STAR, - STATE(859), 1, + STATE(942), 1, sym_primary_expression, - STATE(961), 1, + STATE(966), 1, sym_string, - STATE(1077), 1, + STATE(1112), 1, sym_list_splat_pattern, - STATE(1818), 1, + STATE(1664), 1, sym_expression, - STATE(2625), 1, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(65), 3, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(379), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(384), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54135,7 +54300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54152,58 +54317,123 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32719] = 22, - ACTIONS(67), 1, + [32424] = 9, + ACTIONS(1482), 1, + anon_sym_else, + ACTIONS(1484), 1, + anon_sym_except, + ACTIONS(1486), 1, + anon_sym_finally, + STATE(700), 1, + sym_else_clause, + STATE(736), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(510), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1478), 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, - ACTIONS(69), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1480), 33, + anon_sym_import, + anon_sym_from, + anon_sym_lazy, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(367), 1, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(390), 1, anon_sym_await, - ACTIONS(629), 1, + sym_true, + sym_false, + sym_none, + [32497] = 22, + ACTIONS(676), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(688), 1, + anon_sym_LBRACE, + ACTIONS(694), 1, + sym_string_start, + ACTIONS(1012), 1, anon_sym_STAR, - STATE(859), 1, + ACTIONS(1018), 1, + anon_sym_not, + ACTIONS(1020), 1, + anon_sym_lambda, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1044), 1, + anon_sym_await, + STATE(958), 1, sym_primary_expression, - STATE(961), 1, + STATE(969), 1, sym_string, - STATE(1077), 1, + STATE(1147), 1, sym_list_splat_pattern, - STATE(2098), 1, + STATE(1769), 1, sym_expression, - STATE(2625), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(690), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(65), 3, + ACTIONS(686), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(1040), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1042), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(674), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1770), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54211,7 +54441,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1205), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54228,58 +54458,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32817] = 22, - ACTIONS(67), 1, - anon_sym_LBRACE, + [32596] = 22, ACTIONS(69), 1, - anon_sym_not, + anon_sym_LBRACE, ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(83), 1, sym_string_start, - ACTIONS(367), 1, + ACTIONS(374), 1, sym_identifier, - ACTIONS(390), 1, + ACTIONS(397), 1, anon_sym_await, - ACTIONS(629), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(644), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1326), 1, anon_sym_STAR, - STATE(859), 1, + STATE(942), 1, sym_primary_expression, - STATE(961), 1, + STATE(966), 1, sym_string, - STATE(1077), 1, + STATE(1112), 1, sym_list_splat_pattern, - STATE(1891), 1, + STATE(1973), 1, sym_expression, - STATE(2625), 1, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(65), 3, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(379), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(384), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54287,7 +54518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54304,58 +54535,123 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32915] = 22, - ACTIONS(735), 1, + [32695] = 9, + ACTIONS(1492), 1, + anon_sym_else, + ACTIONS(1494), 1, + anon_sym_except, + ACTIONS(1496), 1, + anon_sym_finally, + STATE(704), 1, + sym_else_clause, + STATE(816), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(485), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1490), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(743), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(747), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(753), 1, - sym_string_start, - ACTIONS(825), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1488), 33, + anon_sym_import, + anon_sym_from, + anon_sym_lazy, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + 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(841), 1, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32768] = 22, + ACTIONS(720), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, + anon_sym_LBRACK, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(848), 1, anon_sym_lambda, - ACTIONS(847), 1, + ACTIONS(1086), 1, + sym_identifier, + ACTIONS(1094), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1250), 1, anon_sym_STAR, - STATE(935), 1, + STATE(963), 1, sym_primary_expression, - STATE(973), 1, + STATE(1035), 1, sym_string, - STATE(1231), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(1831), 1, + STATE(1808), 1, sym_expression, - STATE(2675), 1, + STATE(2681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(745), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(1090), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1092), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54363,7 +54659,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54380,61 +54676,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33013] = 23, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [32867] = 22, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(985), 1, + ACTIONS(71), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(1329), 1, - anon_sym_STAR, - ACTIONS(1497), 1, + ACTIONS(83), 1, + sym_string_start, + ACTIONS(374), 1, sym_identifier, - ACTIONS(1503), 1, + ACTIONS(397), 1, anon_sym_await, - STATE(992), 1, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(644), 1, + anon_sym_LBRACK, + ACTIONS(1326), 1, + anon_sym_STAR, + STATE(942), 1, sym_primary_expression, - STATE(1068), 1, + STATE(966), 1, sym_string, - STATE(1436), 1, + STATE(1112), 1, sym_list_splat_pattern, - STATE(1948), 1, + STATE(1662), 1, sym_expression, - STATE(2596), 1, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(1501), 2, - anon_sym_match, - anon_sym_type, - STATE(1214), 2, - sym_attribute, - sym_subscript, - ACTIONS(791), 3, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1499), 3, + ACTIONS(379), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(384), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54442,9 +54736,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 14, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -54457,26 +54753,91 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33113] = 9, - ACTIONS(1509), 1, + [32966] = 10, + ACTIONS(269), 1, + anon_sym_COMMA, + ACTIONS(279), 1, + anon_sym_COLON_EQ, + ACTIONS(1498), 1, + anon_sym_for, + ACTIONS(1500), 1, + anon_sym_with, + ACTIONS(1502), 1, + anon_sym_def, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(289), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(305), 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(264), 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(262), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [33041] = 9, + ACTIONS(1492), 1, anon_sym_else, - ACTIONS(1511), 1, + ACTIONS(1494), 1, anon_sym_except, - ACTIONS(1513), 1, + ACTIONS(1496), 1, anon_sym_finally, - STATE(699), 1, + STATE(693), 1, sym_else_clause, - STATE(741), 1, + STATE(735), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(607), 2, + STATE(613), 2, sym_except_clause, aux_sym_try_statement_repeat1, - ACTIONS(1505), 12, + ACTIONS(1506), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -54487,9 +54848,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1507), 32, + ACTIONS(1504), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -54520,26 +54882,26 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [33185] = 9, - ACTIONS(1509), 1, + [33114] = 9, + ACTIONS(1492), 1, anon_sym_else, - ACTIONS(1511), 1, + ACTIONS(1494), 1, anon_sym_except, - ACTIONS(1513), 1, + ACTIONS(1496), 1, anon_sym_finally, - STATE(700), 1, + STATE(698), 1, sym_else_clause, - STATE(747), 1, + STATE(737), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(552), 2, + STATE(490), 2, sym_except_clause, aux_sym_try_statement_repeat1, - ACTIONS(1485), 12, + ACTIONS(1478), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -54550,9 +54912,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1483), 32, + ACTIONS(1480), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -54583,58 +54946,124 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [33257] = 22, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, + [33187] = 10, + ACTIONS(269), 1, + anon_sym_COMMA, + ACTIONS(279), 1, + anon_sym_COLON_EQ, + ACTIONS(1508), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(1510), 1, + sym_string_start, + STATE(2318), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(289), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(262), 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(305), 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(264), 22, + anon_sym_as, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT, + anon_sym_GT, + [33262] = 22, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(848), 1, + anon_sym_lambda, + ACTIONS(1086), 1, + sym_identifier, + ACTIONS(1094), 1, + anon_sym_await, + ACTIONS(1250), 1, anon_sym_STAR, - STATE(962), 1, + STATE(963), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1035), 1, sym_string, - STATE(1416), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(2112), 1, + STATE(1828), 1, sym_expression, - STATE(2653), 1, + STATE(2681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(1090), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1092), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54642,7 +55071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54659,58 +55088,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33355] = 22, - ACTIONS(291), 1, + [33361] = 22, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1747), 1, + STATE(2111), 1, sym_expression, - STATE(2653), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(272), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54718,7 +55148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54735,58 +55165,123 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33453] = 22, - ACTIONS(291), 1, + [33460] = 9, + ACTIONS(1492), 1, + anon_sym_else, + ACTIONS(1494), 1, + anon_sym_except, + ACTIONS(1496), 1, + anon_sym_finally, + STATE(715), 1, + sym_else_clause, + STATE(725), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(613), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1514), 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(298), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1512), 33, + anon_sym_import, + anon_sym_from, + anon_sym_lazy, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, anon_sym_lambda, - ACTIONS(306), 1, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(308), 1, + sym_true, + sym_false, + sym_none, + [33533] = 22, + ACTIONS(69), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(83), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(374), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(644), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1326), 1, anon_sym_STAR, - STATE(962), 1, + STATE(942), 1, sym_primary_expression, - STATE(1017), 1, + STATE(966), 1, sym_string, - STATE(1416), 1, + STATE(1112), 1, sym_list_splat_pattern, - STATE(1748), 1, + STATE(1806), 1, sym_expression, - STATE(2653), 1, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(384), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54794,7 +55289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54811,58 +55306,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33551] = 22, - ACTIONS(291), 1, + [33632] = 22, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(83), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(374), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(644), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1326), 1, anon_sym_STAR, - STATE(962), 1, + STATE(942), 1, sym_primary_expression, - STATE(1017), 1, + STATE(966), 1, sym_string, - STATE(1416), 1, + STATE(1112), 1, sym_list_splat_pattern, - STATE(1728), 1, + STATE(1672), 1, sym_expression, - STATE(2653), 1, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(384), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54870,7 +55366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54887,58 +55383,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33649] = 22, - ACTIONS(291), 1, + [33731] = 22, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1735), 1, + STATE(2101), 1, sym_expression, - STATE(2653), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(272), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54946,7 +55443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54963,58 +55460,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33747] = 22, - ACTIONS(291), 1, + [33830] = 22, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(83), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(374), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(644), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1326), 1, anon_sym_STAR, - STATE(962), 1, + STATE(942), 1, sym_primary_expression, - STATE(1017), 1, + STATE(966), 1, sym_string, - STATE(1416), 1, + STATE(1112), 1, sym_list_splat_pattern, - STATE(1736), 1, + STATE(1674), 1, sym_expression, - STATE(2653), 1, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(384), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55022,7 +55520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55039,58 +55537,213 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33845] = 22, - ACTIONS(291), 1, + [33929] = 22, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(83), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(374), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(644), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1326), 1, anon_sym_STAR, - STATE(962), 1, + STATE(942), 1, sym_primary_expression, - STATE(1017), 1, + STATE(966), 1, sym_string, - STATE(1416), 1, + STATE(1112), 1, sym_list_splat_pattern, - STATE(1928), 1, + STATE(1660), 1, sym_expression, - STATE(2653), 1, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(77), 2, + sym_ellipsis, + sym_float, + ACTIONS(67), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(384), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(79), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1661), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1088), 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, + [34028] = 22, + ACTIONS(744), 1, + anon_sym_LPAREN, + ACTIONS(752), 1, + anon_sym_LBRACK, + ACTIONS(756), 1, + anon_sym_LBRACE, + ACTIONS(762), 1, + sym_string_start, + ACTIONS(1076), 1, + anon_sym_not, + ACTIONS(1078), 1, + anon_sym_lambda, + ACTIONS(1080), 1, + anon_sym_await, + ACTIONS(1266), 1, + sym_identifier, + ACTIONS(1344), 1, + anon_sym_STAR, + STATE(964), 1, + sym_primary_expression, + STATE(1043), 1, + sym_string, + STATE(1325), 1, + sym_list_splat_pattern, + STATE(1924), 1, + sym_expression, + STATE(2669), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(754), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1066), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1070), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(742), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1731), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1349), 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, + [34127] = 22, + ACTIONS(744), 1, + anon_sym_LPAREN, + ACTIONS(752), 1, + anon_sym_LBRACK, + ACTIONS(756), 1, + anon_sym_LBRACE, + ACTIONS(762), 1, + sym_string_start, + ACTIONS(1076), 1, + anon_sym_not, + ACTIONS(1078), 1, + anon_sym_lambda, + ACTIONS(1080), 1, + anon_sym_await, + ACTIONS(1266), 1, + sym_identifier, + ACTIONS(1344), 1, + anon_sym_STAR, + STATE(964), 1, + sym_primary_expression, + STATE(1043), 1, + sym_string, + STATE(1325), 1, + sym_list_splat_pattern, + STATE(1925), 1, + sym_expression, + STATE(2669), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(758), 2, + sym_ellipsis, + sym_float, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(1066), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1070), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55098,7 +55751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55115,58 +55768,136 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33943] = 22, - ACTIONS(291), 1, + [34226] = 22, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(83), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(374), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(644), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1326), 1, anon_sym_STAR, - STATE(962), 1, + STATE(942), 1, sym_primary_expression, - STATE(1017), 1, + STATE(966), 1, sym_string, - STATE(1416), 1, + STATE(1112), 1, sym_list_splat_pattern, - STATE(1951), 1, + STATE(1676), 1, sym_expression, - STATE(2653), 1, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(67), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(384), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(79), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1661), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1088), 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, + [34325] = 22, + ACTIONS(69), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(83), 1, + sym_string_start, + ACTIONS(374), 1, + sym_identifier, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(644), 1, + anon_sym_LBRACK, + ACTIONS(1326), 1, + anon_sym_STAR, + STATE(942), 1, + sym_primary_expression, + STATE(966), 1, + sym_string, + STATE(1112), 1, + sym_list_splat_pattern, + STATE(1862), 1, + sym_expression, + STATE(2643), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(77), 2, + sym_ellipsis, + sym_float, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(384), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55174,7 +55905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55191,58 +55922,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34041] = 22, - ACTIONS(291), 1, + [34424] = 22, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1731), 1, + STATE(2023), 1, sym_expression, - STATE(2653), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(272), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55250,7 +55982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55267,58 +55999,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34139] = 22, - ACTIONS(291), 1, + [34523] = 22, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1734), 1, + STATE(1940), 1, sym_expression, - STATE(2653), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(272), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55326,7 +56059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55343,58 +56076,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34237] = 22, - ACTIONS(67), 1, + [34622] = 22, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(311), 1, + anon_sym_await, + ACTIONS(313), 1, sym_string_start, - ACTIONS(367), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(390), 1, - anon_sym_await, - ACTIONS(629), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1032), 1, + anon_sym_not, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(859), 1, + STATE(962), 1, sym_primary_expression, - STATE(961), 1, + STATE(1032), 1, sym_string, - STATE(1077), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1660), 1, + STATE(1746), 1, sym_expression, - STATE(2625), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55402,7 +56136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55419,58 +56153,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34335] = 22, - ACTIONS(67), 1, + [34721] = 22, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(311), 1, + anon_sym_await, + ACTIONS(313), 1, sym_string_start, - ACTIONS(367), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(390), 1, - anon_sym_await, - ACTIONS(629), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1032), 1, + anon_sym_not, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(859), 1, + STATE(962), 1, sym_primary_expression, - STATE(961), 1, + STATE(1032), 1, sym_string, - STATE(1077), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1659), 1, + STATE(1747), 1, sym_expression, - STATE(2625), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55478,7 +56213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55495,58 +56230,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34433] = 22, - ACTIONS(67), 1, + [34820] = 22, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(311), 1, + anon_sym_await, + ACTIONS(313), 1, sym_string_start, - ACTIONS(367), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(390), 1, - anon_sym_await, - ACTIONS(629), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1032), 1, + anon_sym_not, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(859), 1, + STATE(962), 1, sym_primary_expression, - STATE(961), 1, + STATE(1032), 1, sym_string, - STATE(1077), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1664), 1, + STATE(1748), 1, sym_expression, - STATE(2625), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55554,7 +56290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55571,58 +56307,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34531] = 22, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACK, - ACTIONS(725), 1, + [34919] = 22, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(731), 1, - sym_string_start, - ACTIONS(817), 1, - anon_sym_not, - ACTIONS(819), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(823), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(1149), 1, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(399), 1, sym_identifier, - ACTIONS(1257), 1, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(1032), 1, + anon_sym_not, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(869), 1, + STATE(962), 1, sym_primary_expression, - STATE(969), 1, + STATE(1032), 1, sym_string, - STATE(1268), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1715), 1, + STATE(1749), 1, sym_expression, - STATE(2762), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55630,7 +56367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55647,58 +56384,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34629] = 22, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACK, - ACTIONS(725), 1, + [35018] = 22, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(731), 1, - sym_string_start, - ACTIONS(817), 1, - anon_sym_not, - ACTIONS(819), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(823), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(1149), 1, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(399), 1, sym_identifier, - ACTIONS(1257), 1, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(1032), 1, + anon_sym_not, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(869), 1, + STATE(962), 1, sym_primary_expression, - STATE(969), 1, + STATE(1032), 1, sym_string, - STATE(1268), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1717), 1, + STATE(1750), 1, sym_expression, - STATE(2762), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55706,7 +56444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55723,58 +56461,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34727] = 22, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, + [35117] = 22, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(709), 1, - sym_string_start, - ACTIONS(1061), 1, - anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(1065), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(399), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(1032), 1, + anon_sym_not, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(964), 1, + STATE(962), 1, sym_primary_expression, - STATE(993), 1, + STATE(1032), 1, sym_string, - STATE(1384), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1955), 1, + STATE(1963), 1, sym_expression, - STATE(2647), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55782,7 +56521,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55799,58 +56538,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34825] = 22, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACK, - ACTIONS(725), 1, + [35216] = 22, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(731), 1, - sym_string_start, - ACTIONS(817), 1, - anon_sym_not, - ACTIONS(819), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(823), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(1149), 1, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(399), 1, sym_identifier, - ACTIONS(1257), 1, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(1032), 1, + anon_sym_not, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(869), 1, + STATE(962), 1, sym_primary_expression, - STATE(969), 1, + STATE(1032), 1, sym_string, - STATE(1268), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1720), 1, + STATE(1733), 1, sym_expression, - STATE(2762), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55858,7 +56598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55875,58 +56615,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34923] = 22, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACK, - ACTIONS(725), 1, + [35315] = 22, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(731), 1, - sym_string_start, - ACTIONS(817), 1, - anon_sym_not, - ACTIONS(819), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(823), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(1149), 1, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(399), 1, sym_identifier, - ACTIONS(1257), 1, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(1032), 1, + anon_sym_not, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(869), 1, + STATE(962), 1, sym_primary_expression, - STATE(969), 1, + STATE(1032), 1, sym_string, - STATE(1268), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1721), 1, + STATE(1736), 1, sym_expression, - STATE(2762), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55934,7 +56675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55951,58 +56692,123 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35021] = 22, - ACTIONS(713), 1, + [35414] = 9, + ACTIONS(1482), 1, + anon_sym_else, + ACTIONS(1484), 1, + anon_sym_except, + ACTIONS(1486), 1, + anon_sym_finally, + STATE(694), 1, + sym_else_clause, + STATE(783), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(614), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1514), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(721), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(725), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(731), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1512), 33, + anon_sym_import, + anon_sym_from, + anon_sym_lazy, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + 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, + [35487] = 22, + ACTIONS(788), 1, + anon_sym_LPAREN, + ACTIONS(796), 1, + anon_sym_LBRACK, + ACTIONS(800), 1, + anon_sym_LBRACE, + ACTIONS(806), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(824), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(826), 1, anon_sym_lambda, - ACTIONS(823), 1, + ACTIONS(830), 1, anon_sym_await, - ACTIONS(1149), 1, + ACTIONS(1172), 1, sym_identifier, - ACTIONS(1257), 1, + ACTIONS(1276), 1, anon_sym_STAR, - STATE(869), 1, + STATE(960), 1, sym_primary_expression, - STATE(969), 1, + STATE(974), 1, sym_string, - STATE(1268), 1, + STATE(1208), 1, sym_list_splat_pattern, - STATE(1723), 1, + STATE(1721), 1, sym_expression, - STATE(2762), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(723), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(812), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(816), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56010,7 +56816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56027,58 +56833,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35119] = 22, - ACTIONS(691), 1, + [35586] = 22, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(824), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(826), 1, anon_sym_lambda, - ACTIONS(1065), 1, + ACTIONS(830), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1172), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1276), 1, anon_sym_STAR, - STATE(964), 1, + STATE(960), 1, sym_primary_expression, - STATE(993), 1, + STATE(974), 1, sym_string, - STATE(1384), 1, + STATE(1208), 1, sym_list_splat_pattern, - STATE(1957), 1, + STATE(1723), 1, sym_expression, - STATE(2647), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(812), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(816), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56086,7 +56893,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56103,58 +56910,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35217] = 22, - ACTIONS(713), 1, + [35685] = 22, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(824), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(826), 1, anon_sym_lambda, - ACTIONS(823), 1, + ACTIONS(830), 1, anon_sym_await, - ACTIONS(1149), 1, + ACTIONS(1172), 1, sym_identifier, - ACTIONS(1257), 1, + ACTIONS(1276), 1, anon_sym_STAR, - STATE(869), 1, + STATE(960), 1, sym_primary_expression, - STATE(969), 1, + STATE(974), 1, sym_string, - STATE(1268), 1, + STATE(1208), 1, sym_list_splat_pattern, - STATE(1727), 1, + STATE(1725), 1, sym_expression, - STATE(2762), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(723), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(812), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(816), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56162,7 +56970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56179,58 +56987,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35315] = 22, - ACTIONS(713), 1, + [35784] = 22, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(824), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(826), 1, anon_sym_lambda, - ACTIONS(823), 1, + ACTIONS(830), 1, anon_sym_await, - ACTIONS(1149), 1, + ACTIONS(1172), 1, sym_identifier, - ACTIONS(1257), 1, + ACTIONS(1276), 1, anon_sym_STAR, - STATE(869), 1, + STATE(960), 1, sym_primary_expression, - STATE(969), 1, + STATE(974), 1, sym_string, - STATE(1268), 1, + STATE(1208), 1, sym_list_splat_pattern, - STATE(1695), 1, + STATE(1726), 1, sym_expression, - STATE(2762), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(723), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(812), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(816), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56238,7 +57047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56255,58 +57064,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35413] = 22, - ACTIONS(666), 1, + [35883] = 22, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(824), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(826), 1, anon_sym_lambda, - ACTIONS(1085), 1, - sym_identifier, - ACTIONS(1095), 1, + ACTIONS(830), 1, anon_sym_await, - STATE(942), 1, + ACTIONS(1172), 1, + sym_identifier, + ACTIONS(1276), 1, + anon_sym_STAR, + STATE(960), 1, sym_primary_expression, - STATE(981), 1, + STATE(974), 1, sym_string, - STATE(1147), 1, + STATE(1208), 1, sym_list_splat_pattern, - STATE(1930), 1, + STATE(1728), 1, sym_expression, - STATE(2764), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(1093), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(676), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1091), 3, + ACTIONS(812), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(816), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56314,7 +57124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56331,58 +57141,137 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35511] = 22, - ACTIONS(735), 1, + [35982] = 23, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(825), 1, - sym_identifier, - ACTIONS(841), 1, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1344), 1, anon_sym_STAR, - STATE(935), 1, + ACTIONS(1516), 1, + sym_identifier, + ACTIONS(1522), 1, + anon_sym_await, + STATE(1011), 1, sym_primary_expression, - STATE(973), 1, + STATE(1043), 1, sym_string, - STATE(1231), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1766), 1, + STATE(1891), 1, sym_expression, - STATE(2675), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, + STATE(1388), 2, + sym_attribute, + sym_subscript, + ACTIONS(754), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1518), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(1520), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(742), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1731), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1349), 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, + [36083] = 22, + ACTIONS(788), 1, + anon_sym_LPAREN, + ACTIONS(796), 1, + anon_sym_LBRACK, + ACTIONS(800), 1, + anon_sym_LBRACE, + ACTIONS(806), 1, + sym_string_start, + ACTIONS(824), 1, + anon_sym_not, + ACTIONS(826), 1, + anon_sym_lambda, + ACTIONS(830), 1, + anon_sym_await, + ACTIONS(1172), 1, + sym_identifier, + ACTIONS(1276), 1, + anon_sym_STAR, + STATE(960), 1, + sym_primary_expression, + STATE(974), 1, + sym_string, + STATE(1208), 1, + sym_list_splat_pattern, + STATE(1719), 1, + sym_expression, + STATE(2772), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(802), 2, + sym_ellipsis, + sym_float, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(812), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(816), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56390,7 +57279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56407,58 +57296,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35609] = 22, - ACTIONS(735), 1, + [36182] = 22, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(825), 1, - sym_identifier, - ACTIONS(841), 1, + ACTIONS(824), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(826), 1, anon_sym_lambda, - ACTIONS(847), 1, + ACTIONS(830), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1172), 1, + sym_identifier, + ACTIONS(1276), 1, anon_sym_STAR, - STATE(935), 1, + STATE(960), 1, sym_primary_expression, - STATE(973), 1, + STATE(974), 1, sym_string, - STATE(1231), 1, + STATE(1208), 1, sym_list_splat_pattern, - STATE(1759), 1, + STATE(1678), 1, sym_expression, - STATE(2675), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(745), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(812), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(816), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56466,7 +57356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56483,58 +57373,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35707] = 22, - ACTIONS(735), 1, + [36281] = 22, + ACTIONS(698), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(706), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(841), 1, + ACTIONS(870), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(872), 1, anon_sym_lambda, - ACTIONS(847), 1, + ACTIONS(876), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1286), 1, anon_sym_STAR, - STATE(935), 1, + STATE(959), 1, sym_primary_expression, - STATE(973), 1, + STATE(972), 1, sym_string, - STATE(1231), 1, + STATE(1275), 1, sym_list_splat_pattern, - STATE(1770), 1, + STATE(1754), 1, sym_expression, - STATE(2675), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(745), 3, + ACTIONS(708), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(860), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(864), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(696), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1775), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56542,7 +57433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56559,58 +57450,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35805] = 22, - ACTIONS(735), 1, + [36380] = 22, + ACTIONS(698), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(706), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(841), 1, + ACTIONS(870), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(872), 1, anon_sym_lambda, - ACTIONS(847), 1, + ACTIONS(876), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1286), 1, anon_sym_STAR, - STATE(935), 1, + STATE(959), 1, sym_primary_expression, - STATE(973), 1, + STATE(972), 1, sym_string, - STATE(1231), 1, + STATE(1275), 1, sym_list_splat_pattern, - STATE(1772), 1, + STATE(1758), 1, sym_expression, - STATE(2675), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(745), 3, + ACTIONS(708), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(860), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(864), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(696), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1775), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56618,7 +57510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56635,58 +57527,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35903] = 22, - ACTIONS(735), 1, + [36479] = 22, + ACTIONS(698), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(706), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(841), 1, + ACTIONS(870), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(872), 1, anon_sym_lambda, - ACTIONS(847), 1, + ACTIONS(876), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1286), 1, anon_sym_STAR, - STATE(935), 1, + STATE(959), 1, sym_primary_expression, - STATE(973), 1, + STATE(972), 1, sym_string, - STATE(1231), 1, + STATE(1275), 1, sym_list_splat_pattern, - STATE(1769), 1, + STATE(1768), 1, sym_expression, - STATE(2675), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(745), 3, + ACTIONS(708), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(860), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(864), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(696), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1775), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56694,7 +57587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56711,58 +57604,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36001] = 22, - ACTIONS(735), 1, + [36578] = 22, + ACTIONS(698), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(706), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(841), 1, + ACTIONS(870), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(872), 1, anon_sym_lambda, - ACTIONS(847), 1, + ACTIONS(876), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1286), 1, anon_sym_STAR, - STATE(935), 1, + STATE(959), 1, sym_primary_expression, - STATE(973), 1, + STATE(972), 1, sym_string, - STATE(1231), 1, + STATE(1275), 1, sym_list_splat_pattern, - STATE(1758), 1, + STATE(1776), 1, sym_expression, - STATE(2675), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(745), 3, + ACTIONS(708), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(860), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(864), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(696), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1775), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56770,7 +57664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56787,58 +57681,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36099] = 22, - ACTIONS(735), 1, + [36677] = 22, + ACTIONS(698), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(706), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(841), 1, + ACTIONS(870), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(872), 1, anon_sym_lambda, - ACTIONS(847), 1, + ACTIONS(876), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1286), 1, anon_sym_STAR, - STATE(935), 1, + STATE(959), 1, sym_primary_expression, - STATE(973), 1, + STATE(972), 1, sym_string, - STATE(1231), 1, + STATE(1275), 1, sym_list_splat_pattern, - STATE(1771), 1, + STATE(1779), 1, sym_expression, - STATE(2675), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(745), 3, + ACTIONS(708), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(860), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(864), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(696), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1775), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56846,7 +57741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56863,58 +57758,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36197] = 22, - ACTIONS(67), 1, + [36776] = 22, + ACTIONS(698), 1, + anon_sym_LPAREN, + ACTIONS(706), 1, + anon_sym_LBRACK, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(367), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(390), 1, + ACTIONS(870), 1, + anon_sym_not, + ACTIONS(872), 1, + anon_sym_lambda, + ACTIONS(876), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1286), 1, anon_sym_STAR, - STATE(859), 1, + STATE(959), 1, sym_primary_expression, - STATE(961), 1, + STATE(972), 1, sym_string, - STATE(1077), 1, + STATE(1275), 1, sym_list_splat_pattern, - STATE(1881), 1, + STATE(1782), 1, sym_expression, - STATE(2625), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(65), 3, + ACTIONS(708), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(860), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(864), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(696), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1775), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56922,7 +57818,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56939,58 +57835,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36295] = 22, - ACTIONS(291), 1, + [36875] = 22, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(83), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(374), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(644), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1326), 1, anon_sym_STAR, - STATE(962), 1, + STATE(942), 1, sym_primary_expression, - STATE(1017), 1, + STATE(966), 1, sym_string, - STATE(1416), 1, + STATE(1112), 1, sym_list_splat_pattern, - STATE(2104), 1, + STATE(2019), 1, sym_expression, - STATE(2653), 1, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(384), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56998,7 +57895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57015,58 +57912,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36393] = 22, - ACTIONS(666), 1, + [36974] = 22, + ACTIONS(698), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(706), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(854), 1, + sym_identifier, + ACTIONS(870), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(872), 1, anon_sym_lambda, - ACTIONS(1085), 1, - sym_identifier, - ACTIONS(1095), 1, + ACTIONS(876), 1, anon_sym_await, - STATE(942), 1, + ACTIONS(1286), 1, + anon_sym_STAR, + STATE(959), 1, sym_primary_expression, - STATE(981), 1, + STATE(972), 1, sym_string, - STATE(1147), 1, + STATE(1275), 1, sym_list_splat_pattern, - STATE(1755), 1, + STATE(1765), 1, sym_expression, - STATE(2764), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - ACTIONS(1093), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(676), 3, + ACTIONS(708), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1091), 3, + ACTIONS(860), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(864), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(696), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1775), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57074,7 +57972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57091,58 +57989,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36491] = 22, - ACTIONS(666), 1, - anon_sym_LPAREN, - ACTIONS(674), 1, - anon_sym_LBRACK, - ACTIONS(678), 1, + [37073] = 22, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(684), 1, - sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, - anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(1085), 1, - sym_identifier, - ACTIONS(1095), 1, + ACTIONS(311), 1, anon_sym_await, - STATE(942), 1, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(399), 1, + sym_identifier, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(1032), 1, + anon_sym_not, + ACTIONS(1442), 1, + anon_sym_STAR, + STATE(962), 1, sym_primary_expression, - STATE(981), 1, + STATE(1032), 1, sym_string, - STATE(1147), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1764), 1, + STATE(1987), 1, sym_expression, - STATE(2764), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1093), 2, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1091), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57150,7 +58049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57167,58 +58066,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36589] = 22, - ACTIONS(666), 1, + [37172] = 22, + ACTIONS(676), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(688), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(694), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1012), 1, anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(1018), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1020), 1, anon_sym_lambda, - ACTIONS(1085), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(1044), 1, anon_sym_await, - STATE(942), 1, + STATE(958), 1, sym_primary_expression, - STATE(981), 1, + STATE(969), 1, sym_string, STATE(1147), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1757), 1, sym_expression, - STATE(2764), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(690), 2, sym_ellipsis, sym_float, - ACTIONS(1093), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(676), 3, + ACTIONS(686), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1091), 3, + ACTIONS(1040), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1042), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(674), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1770), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57226,7 +58126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1205), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57243,58 +58143,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36687] = 22, - ACTIONS(666), 1, + [37271] = 22, + ACTIONS(676), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(688), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(694), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1012), 1, anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(1018), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1020), 1, anon_sym_lambda, - ACTIONS(1085), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(1044), 1, anon_sym_await, - STATE(942), 1, + STATE(958), 1, sym_primary_expression, - STATE(981), 1, + STATE(969), 1, sym_string, STATE(1147), 1, sym_list_splat_pattern, - STATE(1782), 1, + STATE(1761), 1, sym_expression, - STATE(2764), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(690), 2, sym_ellipsis, sym_float, - ACTIONS(1093), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(676), 3, + ACTIONS(686), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1091), 3, + ACTIONS(1040), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1042), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(674), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1770), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57302,7 +58203,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1205), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57319,58 +58220,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36785] = 22, - ACTIONS(666), 1, + [37370] = 22, + ACTIONS(676), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(688), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(694), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1012), 1, anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(1018), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1020), 1, anon_sym_lambda, - ACTIONS(1085), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(1044), 1, anon_sym_await, - STATE(942), 1, + STATE(958), 1, sym_primary_expression, - STATE(981), 1, + STATE(969), 1, sym_string, STATE(1147), 1, sym_list_splat_pattern, - STATE(1774), 1, + STATE(1762), 1, sym_expression, - STATE(2764), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(690), 2, sym_ellipsis, sym_float, - ACTIONS(1093), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(676), 3, + ACTIONS(686), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1091), 3, + ACTIONS(1040), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1042), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(674), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1770), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57378,7 +58280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1205), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57395,58 +58297,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36883] = 22, - ACTIONS(666), 1, + [37469] = 22, + ACTIONS(676), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(688), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(694), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1012), 1, anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(1018), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1020), 1, anon_sym_lambda, - ACTIONS(1085), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(1044), 1, anon_sym_await, - STATE(942), 1, + STATE(958), 1, sym_primary_expression, - STATE(981), 1, + STATE(969), 1, sym_string, STATE(1147), 1, sym_list_splat_pattern, - STATE(1776), 1, + STATE(1764), 1, sym_expression, - STATE(2764), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(690), 2, sym_ellipsis, sym_float, - ACTIONS(1093), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(676), 3, + ACTIONS(686), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1091), 3, + ACTIONS(1040), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1042), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(674), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1770), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57454,7 +58357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1205), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57471,58 +58374,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36981] = 22, - ACTIONS(691), 1, + [37568] = 22, + ACTIONS(676), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(688), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(694), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1012), 1, + anon_sym_STAR, + ACTIONS(1018), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1020), 1, anon_sym_lambda, - ACTIONS(1065), 1, - anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1315), 1, - anon_sym_STAR, - STATE(964), 1, + ACTIONS(1044), 1, + anon_sym_await, + STATE(958), 1, sym_primary_expression, - STATE(993), 1, + STATE(969), 1, sym_string, - STATE(1384), 1, + STATE(1147), 1, sym_list_splat_pattern, - STATE(1746), 1, + STATE(1767), 1, sym_expression, - STATE(2647), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(690), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(686), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(1040), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1042), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(674), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1770), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57530,7 +58434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1205), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57547,58 +58451,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37079] = 22, - ACTIONS(691), 1, + [37667] = 22, + ACTIONS(676), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(688), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(694), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1012), 1, + anon_sym_STAR, + ACTIONS(1018), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1020), 1, anon_sym_lambda, - ACTIONS(1065), 1, - anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1315), 1, - anon_sym_STAR, - STATE(964), 1, + ACTIONS(1044), 1, + anon_sym_await, + STATE(958), 1, sym_primary_expression, - STATE(993), 1, + STATE(969), 1, sym_string, - STATE(1384), 1, + STATE(1147), 1, sym_list_splat_pattern, - STATE(1732), 1, + STATE(1784), 1, sym_expression, - STATE(2647), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(690), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(686), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(1040), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1042), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(674), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1770), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57606,7 +58511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1205), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57623,58 +58528,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37177] = 22, - ACTIONS(691), 1, + [37766] = 22, + ACTIONS(676), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(688), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(694), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1012), 1, + anon_sym_STAR, + ACTIONS(1018), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1020), 1, anon_sym_lambda, - ACTIONS(1065), 1, - anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1315), 1, - anon_sym_STAR, - STATE(964), 1, + ACTIONS(1044), 1, + anon_sym_await, + STATE(958), 1, sym_primary_expression, - STATE(993), 1, + STATE(969), 1, sym_string, - STATE(1384), 1, + STATE(1147), 1, sym_list_splat_pattern, - STATE(1737), 1, + STATE(1763), 1, sym_expression, - STATE(2647), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(690), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(686), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(1040), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1042), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(674), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1770), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57682,7 +58588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1205), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57699,58 +58605,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37275] = 22, - ACTIONS(691), 1, + [37865] = 22, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(1065), 1, + ACTIONS(1080), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1266), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1344), 1, anon_sym_STAR, STATE(964), 1, sym_primary_expression, - STATE(993), 1, + STATE(1043), 1, sym_string, - STATE(1384), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1739), 1, + STATE(1752), 1, sym_expression, - STATE(2647), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(1066), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1070), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57758,7 +58665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57775,58 +58682,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37373] = 22, - ACTIONS(691), 1, + [37964] = 22, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(1065), 1, + ACTIONS(1080), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1266), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1344), 1, anon_sym_STAR, STATE(964), 1, sym_primary_expression, - STATE(993), 1, + STATE(1043), 1, sym_string, - STATE(1384), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1741), 1, + STATE(1732), 1, sym_expression, - STATE(2647), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(1066), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1070), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57834,7 +58742,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57851,58 +58759,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37471] = 22, - ACTIONS(691), 1, + [38063] = 22, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(1065), 1, + ACTIONS(1080), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1266), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1344), 1, anon_sym_STAR, STATE(964), 1, sym_primary_expression, - STATE(993), 1, + STATE(1043), 1, sym_string, - STATE(1384), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1742), 1, + STATE(1735), 1, sym_expression, - STATE(2647), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(1066), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1070), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57910,7 +58819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57927,58 +58836,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37569] = 22, - ACTIONS(691), 1, + [38162] = 22, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(1065), 1, + ACTIONS(1080), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1266), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1344), 1, anon_sym_STAR, STATE(964), 1, sym_primary_expression, - STATE(993), 1, + STATE(1043), 1, sym_string, - STATE(1384), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1733), 1, + STATE(1738), 1, sym_expression, - STATE(2647), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(1066), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1070), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57986,7 +58896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58003,58 +58913,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37667] = 22, - ACTIONS(781), 1, + [38261] = 22, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(1080), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1266), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1344), 1, anon_sym_STAR, - STATE(976), 1, + STATE(964), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1043), 1, sym_string, - STATE(1436), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1752), 1, + STATE(1739), 1, sym_expression, - STATE(2596), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(1066), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1070), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58062,7 +58973,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58079,58 +58990,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37765] = 22, - ACTIONS(781), 1, + [38360] = 22, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(1080), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1266), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1344), 1, anon_sym_STAR, - STATE(976), 1, + STATE(964), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1043), 1, sym_string, - STATE(1436), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1756), 1, + STATE(1742), 1, sym_expression, - STATE(2596), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(1066), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1070), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58138,7 +59050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58155,58 +59067,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37863] = 22, - ACTIONS(781), 1, + [38459] = 22, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(1080), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1266), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1344), 1, anon_sym_STAR, - STATE(976), 1, + STATE(964), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1043), 1, sym_string, - STATE(1436), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1760), 1, + STATE(1745), 1, sym_expression, - STATE(2596), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(1066), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1070), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58214,7 +59127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58231,58 +59144,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37961] = 22, - ACTIONS(781), 1, + [38558] = 22, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1762), 1, + STATE(1788), 1, sym_expression, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58290,7 +59204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58307,58 +59221,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38059] = 22, - ACTIONS(781), 1, + [38657] = 22, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1786), 1, + STATE(1771), 1, sym_expression, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58366,7 +59281,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58383,58 +59298,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38157] = 22, - ACTIONS(781), 1, + [38756] = 22, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1775), 1, + STATE(1772), 1, sym_expression, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58442,7 +59358,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58459,58 +59375,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38255] = 22, - ACTIONS(781), 1, + [38855] = 22, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1779), 1, + STATE(1773), 1, sym_expression, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58518,7 +59435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58535,58 +59452,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38353] = 22, - ACTIONS(757), 1, + [38954] = 22, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(863), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1129), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1269), 1, + ACTIONS(1256), 1, + sym_identifier, + ACTIONS(1322), 1, anon_sym_STAR, - STATE(959), 1, + STATE(979), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1131), 1, sym_string, - STATE(1337), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1833), 1, + STATE(1774), 1, sym_expression, - STATE(2670), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(769), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58594,7 +59512,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58611,58 +59529,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38451] = 22, - ACTIONS(67), 1, + [39053] = 22, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(774), 1, + anon_sym_LBRACK, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(784), 1, + sym_string_start, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(367), 1, - sym_identifier, - ACTIONS(390), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1256), 1, + sym_identifier, + ACTIONS(1322), 1, anon_sym_STAR, - STATE(859), 1, + STATE(979), 1, sym_primary_expression, - STATE(961), 1, + STATE(1131), 1, sym_string, - STATE(1077), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1666), 1, + STATE(1781), 1, sym_expression, - STATE(2625), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(65), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58670,7 +59589,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58687,61 +59606,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38549] = 23, - ACTIONS(781), 1, + [39152] = 22, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(1329), 1, - anon_sym_STAR, - ACTIONS(1503), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1515), 1, + ACTIONS(1256), 1, sym_identifier, - STATE(992), 1, + ACTIONS(1322), 1, + anon_sym_STAR, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1948), 1, + STATE(1785), 1, sym_expression, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(1501), 2, - anon_sym_match, - anon_sym_type, - STATE(1214), 2, - sym_attribute, - sym_subscript, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1499), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58749,9 +59666,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 14, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -58764,58 +59683,126 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38649] = 22, - ACTIONS(67), 1, + [39251] = 9, + ACTIONS(1482), 1, + anon_sym_else, + ACTIONS(1484), 1, + anon_sym_except, + ACTIONS(1486), 1, + anon_sym_finally, + STATE(695), 1, + sym_else_clause, + STATE(732), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(614), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1506), 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, - ACTIONS(69), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1504), 33, + anon_sym_import, + anon_sym_from, + anon_sym_lazy, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(367), 1, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(390), 1, anon_sym_await, - ACTIONS(629), 1, + sym_true, + sym_false, + sym_none, + [39324] = 23, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(778), 1, + anon_sym_LBRACE, + ACTIONS(784), 1, + sym_string_start, + ACTIONS(992), 1, + anon_sym_not, + ACTIONS(994), 1, + anon_sym_lambda, + ACTIONS(1322), 1, anon_sym_STAR, - STATE(859), 1, + ACTIONS(1524), 1, + sym_identifier, + ACTIONS(1530), 1, + anon_sym_await, + STATE(1000), 1, sym_primary_expression, - STATE(961), 1, + STATE(1131), 1, sym_string, - STATE(1077), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1910), 1, + STATE(1930), 1, sym_expression, - STATE(2625), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(65), 3, + STATE(1269), 2, + sym_attribute, + sym_subscript, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(1526), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1528), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58823,11 +59810,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1424), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -58840,58 +59825,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38747] = 22, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, + [39425] = 22, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(709), 1, - sym_string_start, - ACTIONS(1061), 1, + ACTIONS(71), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(1065), 1, - anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(83), 1, + sym_string_start, + ACTIONS(374), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(644), 1, + anon_sym_LBRACK, + ACTIONS(1326), 1, anon_sym_STAR, - STATE(964), 1, + STATE(942), 1, sym_primary_expression, - STATE(993), 1, + STATE(966), 1, sym_string, - STATE(1384), 1, + STATE(1112), 1, sym_list_splat_pattern, - STATE(1922), 1, + STATE(1822), 1, sym_expression, - STATE(2647), 1, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(379), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(384), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58899,7 +59885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58916,58 +59902,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38845] = 22, - ACTIONS(67), 1, + [39524] = 22, + ACTIONS(744), 1, + anon_sym_LPAREN, + ACTIONS(752), 1, + anon_sym_LBRACK, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(762), 1, + sym_string_start, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(367), 1, - sym_identifier, - ACTIONS(390), 1, + ACTIONS(1080), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1266), 1, + sym_identifier, + ACTIONS(1344), 1, anon_sym_STAR, - STATE(859), 1, + STATE(964), 1, sym_primary_expression, - STATE(961), 1, + STATE(1043), 1, sym_string, - STATE(1077), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1674), 1, + STATE(1965), 1, sym_expression, - STATE(2625), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(65), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(1066), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1070), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58975,7 +59962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58992,58 +59979,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38943] = 22, - ACTIONS(666), 1, + [39623] = 22, + ACTIONS(676), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(688), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(694), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1012), 1, anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(1018), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1020), 1, anon_sym_lambda, - ACTIONS(1085), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(1044), 1, anon_sym_await, - STATE(942), 1, + STATE(958), 1, sym_primary_expression, - STATE(981), 1, + STATE(969), 1, sym_string, STATE(1147), 1, sym_list_splat_pattern, - STATE(1943), 1, + STATE(1910), 1, sym_expression, - STATE(2764), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(690), 2, sym_ellipsis, sym_float, - ACTIONS(1093), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(676), 3, + ACTIONS(686), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1091), 3, + ACTIONS(1040), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1042), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(674), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1770), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59051,7 +60039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1205), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59068,58 +60056,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39041] = 22, - ACTIONS(691), 1, + [39722] = 22, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(1065), 1, + ACTIONS(1080), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1266), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1344), 1, anon_sym_STAR, STATE(964), 1, sym_primary_expression, - STATE(993), 1, + STATE(1043), 1, sym_string, - STATE(1384), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1997), 1, + STATE(1913), 1, sym_expression, - STATE(2647), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(1066), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1070), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59127,7 +60116,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59144,58 +60133,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39139] = 22, - ACTIONS(713), 1, + [39821] = 22, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(824), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(826), 1, anon_sym_lambda, - ACTIONS(823), 1, + ACTIONS(830), 1, anon_sym_await, - ACTIONS(1149), 1, + ACTIONS(1172), 1, sym_identifier, - ACTIONS(1257), 1, + ACTIONS(1276), 1, anon_sym_STAR, - STATE(869), 1, + STATE(960), 1, sym_primary_expression, - STATE(969), 1, + STATE(974), 1, sym_string, - STATE(1268), 1, + STATE(1208), 1, sym_list_splat_pattern, - STATE(1873), 1, + STATE(1855), 1, sym_expression, - STATE(2762), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(723), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(812), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(816), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59203,7 +60193,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59220,121 +60210,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39237] = 9, - ACTIONS(1509), 1, - anon_sym_else, - ACTIONS(1511), 1, - anon_sym_except, - ACTIONS(1513), 1, - anon_sym_finally, - STATE(707), 1, - sym_else_clause, - STATE(782), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(607), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1495), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [39920] = 22, + ACTIONS(69), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1493), 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, + ACTIONS(71), 1, anon_sym_not, + ACTIONS(73), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(83), 1, + sym_string_start, + ACTIONS(374), 1, sym_identifier, + ACTIONS(397), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [39309] = 22, - ACTIONS(757), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(644), 1, anon_sym_LBRACK, - ACTIONS(771), 1, - anon_sym_LBRACE, - ACTIONS(777), 1, - sym_string_start, - ACTIONS(863), 1, - anon_sym_not, - ACTIONS(865), 1, - anon_sym_lambda, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1129), 1, - anon_sym_await, - ACTIONS(1269), 1, + ACTIONS(1326), 1, anon_sym_STAR, - STATE(959), 1, + STATE(942), 1, sym_primary_expression, - STATE(1012), 1, + STATE(966), 1, sym_string, - STATE(1337), 1, + STATE(1112), 1, sym_list_splat_pattern, - STATE(1797), 1, + STATE(1938), 1, sym_expression, - STATE(2670), 1, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(769), 3, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(379), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(384), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59342,7 +60270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59359,58 +60287,188 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39407] = 22, - ACTIONS(691), 1, + [40019] = 10, + ACTIONS(269), 1, + anon_sym_COMMA, + ACTIONS(279), 1, + anon_sym_COLON_EQ, + ACTIONS(1532), 1, + anon_sym_for, + ACTIONS(1534), 1, + anon_sym_with, + ACTIONS(1536), 1, + anon_sym_def, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(289), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(305), 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(264), 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(262), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(699), 1, + anon_sym_as, + anon_sym_if, + anon_sym_in, anon_sym_LBRACK, - ACTIONS(703), 1, - anon_sym_LBRACE, - ACTIONS(709), 1, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [40094] = 9, + ACTIONS(1482), 1, + anon_sym_else, + ACTIONS(1484), 1, + anon_sym_except, + ACTIONS(1486), 1, + anon_sym_finally, + STATE(706), 1, + sym_else_clause, + STATE(841), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(549), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1490), 12, sym_string_start, - ACTIONS(1061), 1, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1488), 33, + anon_sym_import, + anon_sym_from, + anon_sym_lazy, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + 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(1063), 1, anon_sym_lambda, - ACTIONS(1065), 1, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(1287), 1, + sym_true, + sym_false, + sym_none, + [40167] = 22, + ACTIONS(296), 1, + anon_sym_LBRACE, + ACTIONS(303), 1, + anon_sym_lambda, + ACTIONS(311), 1, + anon_sym_await, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(399), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(1032), 1, + anon_sym_not, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(964), 1, + STATE(962), 1, sym_primary_expression, - STATE(993), 1, + STATE(1032), 1, sym_string, - STATE(1384), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1953), 1, + STATE(1906), 1, sym_expression, - STATE(2647), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59418,7 +60476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59435,58 +60493,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39505] = 22, - ACTIONS(67), 1, + [40266] = 22, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(311), 1, + anon_sym_await, + ACTIONS(313), 1, sym_string_start, - ACTIONS(367), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(390), 1, - anon_sym_await, - ACTIONS(629), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1032), 1, + anon_sym_not, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(859), 1, + STATE(962), 1, sym_primary_expression, - STATE(961), 1, + STATE(1032), 1, sym_string, - STATE(1077), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1661), 1, + STATE(1907), 1, sym_expression, - STATE(2625), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59494,7 +60553,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59511,58 +60570,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39603] = 22, - ACTIONS(291), 1, + [40365] = 22, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(83), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(374), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(644), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1326), 1, anon_sym_STAR, - STATE(962), 1, + STATE(942), 1, sym_primary_expression, - STATE(1017), 1, + STATE(966), 1, sym_string, - STATE(1416), 1, + STATE(1112), 1, sym_list_splat_pattern, - STATE(2005), 1, + STATE(1878), 1, sym_expression, - STATE(2653), 1, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(384), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59570,7 +60630,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59587,58 +60647,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39701] = 22, - ACTIONS(67), 1, - anon_sym_LBRACE, + [40464] = 22, ACTIONS(69), 1, - anon_sym_not, + anon_sym_LBRACE, ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(83), 1, sym_string_start, - ACTIONS(367), 1, + ACTIONS(374), 1, sym_identifier, - ACTIONS(390), 1, + ACTIONS(397), 1, anon_sym_await, - ACTIONS(629), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(644), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1326), 1, anon_sym_STAR, - STATE(859), 1, + STATE(942), 1, sym_primary_expression, - STATE(961), 1, + STATE(966), 1, sym_string, - STATE(1077), 1, + STATE(1112), 1, sym_list_splat_pattern, - STATE(1662), 1, + STATE(1816), 1, sym_expression, - STATE(2625), 1, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(65), 3, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(379), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(384), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59646,7 +60707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59663,58 +60724,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39799] = 22, - ACTIONS(291), 1, + [40563] = 22, + ACTIONS(744), 1, + anon_sym_LPAREN, + ACTIONS(752), 1, + anon_sym_LBRACK, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(762), 1, + sym_string_start, + ACTIONS(1076), 1, + anon_sym_not, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(1080), 1, anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, + ACTIONS(1266), 1, sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1344), 1, anon_sym_STAR, - STATE(962), 1, + STATE(964), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1043), 1, sym_string, - STATE(1416), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1967), 1, sym_expression, - STATE(2653), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(1066), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1070), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59722,7 +60784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59739,58 +60801,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39897] = 22, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(767), 1, - anon_sym_LBRACK, - ACTIONS(771), 1, + [40662] = 22, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(777), 1, - sym_string_start, - ACTIONS(863), 1, + ACTIONS(71), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(1121), 1, + ACTIONS(83), 1, + sym_string_start, + ACTIONS(374), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(397), 1, anon_sym_await, - ACTIONS(1269), 1, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(644), 1, + anon_sym_LBRACK, + ACTIONS(1326), 1, anon_sym_STAR, - STATE(959), 1, + STATE(942), 1, sym_primary_expression, - STATE(1012), 1, + STATE(966), 1, sym_string, - STATE(1337), 1, + STATE(1112), 1, sym_list_splat_pattern, - STATE(1801), 1, + STATE(1988), 1, sym_expression, - STATE(2670), 1, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(769), 3, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(379), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(384), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59798,7 +60861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59815,58 +60878,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39995] = 22, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, + [40761] = 22, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(709), 1, - sym_string_start, - ACTIONS(1061), 1, - anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(1065), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(399), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(1032), 1, + anon_sym_not, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(964), 1, + STATE(962), 1, sym_primary_expression, - STATE(993), 1, + STATE(1032), 1, sym_string, - STATE(1384), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1981), 1, + STATE(2050), 1, sym_expression, - STATE(2647), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59874,7 +60938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59891,58 +60955,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40093] = 22, - ACTIONS(67), 1, + [40860] = 22, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(774), 1, + anon_sym_LBRACK, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(784), 1, + sym_string_start, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(367), 1, - sym_identifier, - ACTIONS(390), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1256), 1, + sym_identifier, + ACTIONS(1322), 1, anon_sym_STAR, - STATE(859), 1, + STATE(979), 1, sym_primary_expression, - STATE(961), 1, + STATE(1131), 1, sym_string, - STATE(1077), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1663), 1, + STATE(1923), 1, sym_expression, - STATE(2625), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(65), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59950,7 +61015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59967,58 +61032,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40191] = 22, - ACTIONS(757), 1, + [40959] = 22, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(863), 1, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1080), 1, anon_sym_await, - ACTIONS(1269), 1, + ACTIONS(1266), 1, + sym_identifier, + ACTIONS(1344), 1, anon_sym_STAR, - STATE(959), 1, + STATE(964), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1043), 1, sym_string, - STATE(1337), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1802), 1, + STATE(1936), 1, sym_expression, - STATE(2670), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(769), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1066), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1070), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60026,7 +61092,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60043,58 +61109,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40289] = 22, - ACTIONS(757), 1, + [41058] = 22, + ACTIONS(698), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(706), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(863), 1, + ACTIONS(854), 1, + sym_identifier, + ACTIONS(870), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(872), 1, anon_sym_lambda, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1129), 1, + ACTIONS(876), 1, anon_sym_await, - ACTIONS(1269), 1, + ACTIONS(1286), 1, anon_sym_STAR, STATE(959), 1, sym_primary_expression, - STATE(1012), 1, + STATE(972), 1, sym_string, - STATE(1337), 1, + STATE(1275), 1, sym_list_splat_pattern, - STATE(1803), 1, + STATE(1834), 1, sym_expression, - STATE(2670), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(769), 3, + ACTIONS(708), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(860), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(864), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(696), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1775), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60102,7 +61169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60119,58 +61186,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40387] = 22, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(767), 1, - anon_sym_LBRACK, - ACTIONS(771), 1, + [41157] = 22, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(777), 1, - sym_string_start, - ACTIONS(863), 1, - anon_sym_not, - ACTIONS(865), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1129), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(1269), 1, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(399), 1, + sym_identifier, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(1032), 1, + anon_sym_not, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(959), 1, + STATE(962), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1032), 1, sym_string, - STATE(1337), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1804), 1, + STATE(1743), 1, sym_expression, - STATE(2670), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(769), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60178,7 +61246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60195,58 +61263,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40485] = 22, - ACTIONS(781), 1, + [41256] = 23, + ACTIONS(676), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(688), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(694), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(1012), 1, + anon_sym_STAR, + ACTIONS(1018), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(1020), 1, anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(1329), 1, - anon_sym_STAR, - STATE(976), 1, - sym_primary_expression, - STATE(1068), 1, + ACTIONS(1544), 1, + anon_sym_await, + STATE(969), 1, sym_string, - STATE(1436), 1, + STATE(1038), 1, + sym_primary_expression, + STATE(1147), 1, sym_list_splat_pattern, - STATE(1972), 1, + STATE(1920), 1, sym_expression, - STATE(2596), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(690), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + STATE(1207), 2, + sym_attribute, + sym_subscript, + ACTIONS(686), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(1540), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1542), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(674), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1770), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60254,11 +61326,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1205), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -60271,58 +61341,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40583] = 22, - ACTIONS(691), 1, + [41357] = 22, + ACTIONS(698), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(706), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(854), 1, + sym_identifier, + ACTIONS(870), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(872), 1, anon_sym_lambda, - ACTIONS(1065), 1, + ACTIONS(876), 1, anon_sym_await, - ACTIONS(1287), 1, - sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1286), 1, anon_sym_STAR, - STATE(964), 1, + STATE(959), 1, sym_primary_expression, - STATE(993), 1, + STATE(972), 1, sym_string, - STATE(1384), 1, + STATE(1275), 1, sym_list_splat_pattern, - STATE(1896), 1, + STATE(1873), 1, sym_expression, - STATE(2647), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(708), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(860), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(864), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(696), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1775), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60330,7 +61401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60347,211 +61418,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40681] = 22, - ACTIONS(291), 1, + [41456] = 22, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, - sym_string, - STATE(1416), 1, - sym_list_splat_pattern, - STATE(1744), 1, - sym_expression, - STATE(2653), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(304), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1750), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1348), 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, - [40779] = 23, - ACTIONS(666), 1, - anon_sym_LPAREN, - ACTIONS(674), 1, - anon_sym_LBRACK, - ACTIONS(678), 1, - anon_sym_LBRACE, - ACTIONS(684), 1, - sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, - anon_sym_not, - ACTIONS(1017), 1, - anon_sym_lambda, - ACTIONS(1517), 1, - sym_identifier, - ACTIONS(1523), 1, - anon_sym_await, - STATE(981), 1, + STATE(1032), 1, sym_string, - STATE(1004), 1, - sym_primary_expression, - STATE(1147), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1965), 1, + STATE(1897), 1, sym_expression, - STATE(2764), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1521), 2, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - STATE(1267), 2, - sym_attribute, - sym_subscript, - ACTIONS(676), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1519), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, - sym_integer, - 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(1265), 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, - [40879] = 22, - ACTIONS(735), 1, - anon_sym_LPAREN, - ACTIONS(743), 1, - anon_sym_LBRACK, - ACTIONS(747), 1, - anon_sym_LBRACE, - ACTIONS(753), 1, - sym_string_start, - ACTIONS(825), 1, - sym_identifier, - ACTIONS(841), 1, - anon_sym_not, - ACTIONS(843), 1, - anon_sym_lambda, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1249), 1, - anon_sym_STAR, - STATE(935), 1, - sym_primary_expression, - STATE(973), 1, - sym_string, - STATE(1231), 1, - sym_list_splat_pattern, - STATE(1837), 1, - sym_expression, - STATE(2675), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(749), 2, - sym_ellipsis, - sym_float, - ACTIONS(835), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(745), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60559,7 +61478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60576,58 +61495,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40977] = 22, - ACTIONS(291), 1, + [41555] = 22, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1934), 1, + STATE(1937), 1, sym_expression, - STATE(2653), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(272), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60635,7 +61555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60652,58 +61572,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41075] = 22, - ACTIONS(291), 1, + [41654] = 22, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(83), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(374), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(397), 1, + anon_sym_await, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(644), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1326), 1, anon_sym_STAR, - STATE(962), 1, + STATE(942), 1, sym_primary_expression, - STATE(1017), 1, + STATE(966), 1, sym_string, - STATE(1416), 1, + STATE(1112), 1, sym_list_splat_pattern, - STATE(1935), 1, + STATE(1670), 1, sym_expression, - STATE(2653), 1, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(384), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60711,7 +61632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60728,58 +61649,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41173] = 22, - ACTIONS(666), 1, + [41753] = 22, + ACTIONS(676), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(688), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(694), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1012), 1, anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(1018), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1020), 1, anon_sym_lambda, - ACTIONS(1085), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(1044), 1, anon_sym_await, - STATE(942), 1, + STATE(958), 1, sym_primary_expression, - STATE(981), 1, + STATE(969), 1, sym_string, STATE(1147), 1, sym_list_splat_pattern, - STATE(1763), 1, + STATE(1766), 1, sym_expression, - STATE(2764), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(690), 2, sym_ellipsis, sym_float, - ACTIONS(1093), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(676), 3, + ACTIONS(686), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1091), 3, + ACTIONS(1040), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1042), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(674), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1770), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60787,7 +61709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1205), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60804,58 +61726,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41271] = 22, - ACTIONS(781), 1, + [41852] = 22, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1991), 1, + STATE(1997), 1, sym_expression, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60863,7 +61786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60880,58 +61803,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41369] = 22, - ACTIONS(713), 1, + [41951] = 22, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(824), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(826), 1, anon_sym_lambda, - ACTIONS(823), 1, + ACTIONS(830), 1, anon_sym_await, - ACTIONS(1149), 1, + ACTIONS(1172), 1, sym_identifier, - ACTIONS(1257), 1, + ACTIONS(1276), 1, anon_sym_STAR, - STATE(869), 1, + STATE(960), 1, sym_primary_expression, - STATE(969), 1, + STATE(974), 1, sym_string, - STATE(1268), 1, + STATE(1208), 1, sym_list_splat_pattern, - STATE(1705), 1, + STATE(1710), 1, sym_expression, - STATE(2762), 1, + STATE(2772), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(723), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(812), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(816), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(786), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1700), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60939,7 +61863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60956,61 +61880,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41467] = 23, - ACTIONS(691), 1, + [42050] = 23, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(1315), 1, + ACTIONS(1344), 1, anon_sym_STAR, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1531), 1, + ACTIONS(1522), 1, anon_sym_await, + ACTIONS(1546), 1, + sym_identifier, STATE(964), 1, sym_primary_expression, - STATE(993), 1, + STATE(1043), 1, sym_string, - STATE(1384), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1961), 1, + STATE(1891), 1, sym_expression, - STATE(2647), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(1529), 2, - anon_sym_match, - anon_sym_type, - STATE(1484), 2, + STATE(1483), 2, sym_attribute, sym_subscript, - ACTIONS(701), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1527), 3, + ACTIONS(1548), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1550), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61018,7 +61943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 14, + STATE(1349), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -61033,58 +61958,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41567] = 22, - ACTIONS(291), 1, + [42151] = 22, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(2013), 1, + STATE(2029), 1, sym_expression, - STATE(2653), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(272), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61092,7 +62018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61109,58 +62035,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41665] = 22, - ACTIONS(735), 1, + [42250] = 22, + ACTIONS(698), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(706), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(854), 1, sym_identifier, - ACTIONS(841), 1, + ACTIONS(870), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(872), 1, anon_sym_lambda, - ACTIONS(847), 1, + ACTIONS(876), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1286), 1, anon_sym_STAR, - STATE(935), 1, + STATE(959), 1, sym_primary_expression, - STATE(973), 1, + STATE(972), 1, sym_string, - STATE(1231), 1, + STATE(1275), 1, sym_list_splat_pattern, - STATE(1754), 1, + STATE(1755), 1, sym_expression, - STATE(2675), 1, + STATE(2683), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(745), 3, + ACTIONS(708), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(860), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(864), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(696), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1775), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61168,7 +62095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61185,61 +62112,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41763] = 23, - ACTIONS(781), 1, + [42349] = 23, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(1503), 1, + ACTIONS(1530), 1, anon_sym_await, - ACTIONS(1533), 1, + ACTIONS(1552), 1, sym_identifier, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1948), 1, + STATE(1930), 1, sym_expression, - STATE(2596), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(1537), 2, - anon_sym_match, - anon_sym_type, - STATE(1485), 2, + STATE(1481), 2, sym_attribute, sym_subscript, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1535), 3, + ACTIONS(1554), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1556), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61247,7 +62175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 14, + STATE(1424), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -61262,58 +62190,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41863] = 22, - ACTIONS(666), 1, + [42450] = 22, + ACTIONS(676), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(688), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(694), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1012), 1, anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(1018), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1020), 1, anon_sym_lambda, - ACTIONS(1085), 1, + ACTIONS(1034), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(1044), 1, anon_sym_await, - STATE(942), 1, + STATE(958), 1, sym_primary_expression, - STATE(981), 1, + STATE(969), 1, sym_string, STATE(1147), 1, sym_list_splat_pattern, STATE(1777), 1, sym_expression, - STATE(2764), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(690), 2, sym_ellipsis, sym_float, - ACTIONS(1093), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(676), 3, + ACTIONS(686), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1091), 3, + ACTIONS(1040), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1042), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(674), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1770), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61321,7 +62250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1205), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61338,61 +62267,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41961] = 23, - ACTIONS(666), 1, + [42549] = 23, + ACTIONS(676), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(688), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(694), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1012), 1, anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(1018), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1020), 1, anon_sym_lambda, - ACTIONS(1523), 1, + ACTIONS(1544), 1, anon_sym_await, - ACTIONS(1539), 1, + ACTIONS(1558), 1, sym_identifier, - STATE(942), 1, + STATE(958), 1, sym_primary_expression, - STATE(981), 1, + STATE(969), 1, sym_string, STATE(1147), 1, sym_list_splat_pattern, - STATE(1965), 1, + STATE(1920), 1, sym_expression, - STATE(2764), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(690), 2, sym_ellipsis, sym_float, - ACTIONS(1543), 2, - anon_sym_match, - anon_sym_type, STATE(1486), 2, sym_attribute, sym_subscript, - ACTIONS(676), 3, + ACTIONS(686), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1541), 3, + ACTIONS(1560), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1562), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(674), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1770), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61400,7 +62330,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 14, + STATE(1205), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -61415,58 +62345,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42061] = 22, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + [42650] = 22, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(848), 1, + anon_sym_lambda, + ACTIONS(1086), 1, + sym_identifier, + ACTIONS(1094), 1, + anon_sym_await, + ACTIONS(1250), 1, anon_sym_STAR, - STATE(962), 1, + STATE(963), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1035), 1, sym_string, - STATE(1416), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(1894), 1, + STATE(1845), 1, sym_expression, - STATE(2653), 1, + STATE(2681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(1090), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1092), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61474,7 +62405,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61491,58 +62422,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42159] = 22, - ACTIONS(67), 1, + [42749] = 22, + ACTIONS(744), 1, + anon_sym_LPAREN, + ACTIONS(752), 1, + anon_sym_LBRACK, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(762), 1, + sym_string_start, + ACTIONS(1076), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(367), 1, - sym_identifier, - ACTIONS(390), 1, + ACTIONS(1080), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1266), 1, + sym_identifier, + ACTIONS(1344), 1, anon_sym_STAR, - STATE(859), 1, + STATE(964), 1, sym_primary_expression, - STATE(961), 1, + STATE(1043), 1, sym_string, - STATE(1077), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(1841), 1, + STATE(1741), 1, sym_expression, - STATE(2625), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(65), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(1066), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1070), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61550,7 +62482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61567,58 +62499,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42257] = 22, - ACTIONS(67), 1, + [42848] = 23, + ACTIONS(766), 1, + anon_sym_LPAREN, + ACTIONS(774), 1, + anon_sym_LBRACK, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(784), 1, + sym_string_start, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(367), 1, - sym_identifier, - ACTIONS(390), 1, - anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1322), 1, anon_sym_STAR, - STATE(859), 1, + ACTIONS(1530), 1, + anon_sym_await, + ACTIONS(1564), 1, + sym_identifier, + STATE(1000), 1, sym_primary_expression, - STATE(961), 1, + STATE(1131), 1, sym_string, - STATE(1077), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1805), 1, + STATE(1930), 1, sym_expression, - STATE(2625), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(65), 3, + STATE(1269), 2, + sym_attribute, + sym_subscript, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(1526), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1528), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61626,11 +62562,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1424), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -61643,58 +62577,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42355] = 22, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + [42949] = 22, + ACTIONS(676), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(688), 1, + anon_sym_LBRACE, + ACTIONS(694), 1, + sym_string_start, + ACTIONS(1012), 1, anon_sym_STAR, - STATE(962), 1, + ACTIONS(1018), 1, + anon_sym_not, + ACTIONS(1020), 1, + anon_sym_lambda, + ACTIONS(1034), 1, + sym_identifier, + ACTIONS(1044), 1, + anon_sym_await, + STATE(958), 1, sym_primary_expression, - STATE(1017), 1, + STATE(969), 1, sym_string, - STATE(1416), 1, + STATE(1147), 1, sym_list_splat_pattern, - STATE(2073), 1, + STATE(1964), 1, sym_expression, STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(690), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(686), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(1040), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1042), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(674), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1770), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61702,7 +62637,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1205), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61719,58 +62654,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42453] = 22, - ACTIONS(691), 1, + [43048] = 22, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(992), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(994), 1, anon_sym_lambda, - ACTIONS(1065), 1, + ACTIONS(996), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1256), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1322), 1, anon_sym_STAR, - STATE(964), 1, + STATE(979), 1, sym_primary_expression, - STATE(993), 1, + STATE(1131), 1, sym_string, - STATE(1384), 1, + STATE(1431), 1, sym_list_splat_pattern, - STATE(1730), 1, + STATE(1756), 1, sym_expression, - STATE(2647), 1, + STATE(2600), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(982), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(986), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(764), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1760), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61778,7 +62714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61795,58 +62731,125 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42551] = 22, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + [43147] = 11, + ACTIONS(269), 1, + anon_sym_COMMA, + ACTIONS(279), 1, + anon_sym_COLON_EQ, + ACTIONS(281), 1, + anon_sym_COLON, + ACTIONS(289), 1, + anon_sym_EQ, + ACTIONS(1508), 1, + sym_identifier, + ACTIONS(1510), 1, + sym_string_start, + STATE(2318), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(262), 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(305), 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(264), 22, + anon_sym_as, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT, + anon_sym_GT, + [43224] = 22, + ACTIONS(69), 1, + anon_sym_LBRACE, ACTIONS(71), 1, + anon_sym_not, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(83), 1, sym_string_start, - ACTIONS(367), 1, + ACTIONS(374), 1, sym_identifier, - ACTIONS(390), 1, + ACTIONS(397), 1, anon_sym_await, - ACTIONS(629), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(644), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1326), 1, anon_sym_STAR, - STATE(859), 1, + STATE(942), 1, sym_primary_expression, - STATE(961), 1, + STATE(966), 1, sym_string, - STATE(1077), 1, + STATE(1112), 1, sym_list_splat_pattern, - STATE(1897), 1, + STATE(1665), 1, sym_expression, - STATE(2625), 1, + STATE(2643), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(65), 3, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(379), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(384), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(79), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1661), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61854,7 +62857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61871,58 +62874,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42649] = 22, - ACTIONS(666), 1, - anon_sym_LPAREN, - ACTIONS(674), 1, - anon_sym_LBRACK, - ACTIONS(678), 1, + [43323] = 22, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(684), 1, - sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, - anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(1085), 1, - sym_identifier, - ACTIONS(1095), 1, + ACTIONS(311), 1, anon_sym_await, - STATE(942), 1, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(399), 1, + sym_identifier, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(1032), 1, + anon_sym_not, + ACTIONS(1442), 1, + anon_sym_STAR, + STATE(962), 1, sym_primary_expression, - STATE(981), 1, + STATE(1032), 1, sym_string, - STATE(1147), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1780), 1, + STATE(2014), 1, sym_expression, - STATE(2764), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1093), 2, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1091), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61930,7 +62934,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61947,184 +62951,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42747] = 9, - ACTIONS(1487), 1, - anon_sym_else, - ACTIONS(1489), 1, - anon_sym_except, - ACTIONS(1491), 1, - anon_sym_finally, - STATE(716), 1, - sym_else_clause, - STATE(836), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(603), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1547), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [43422] = 22, + ACTIONS(296), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1545), 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(303), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(311), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [42819] = 9, - ACTIONS(1509), 1, - anon_sym_else, - ACTIONS(1511), 1, - anon_sym_except, - ACTIONS(1513), 1, - anon_sym_finally, - STATE(694), 1, - sym_else_clause, - STATE(746), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(489), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1547), 12, + ACTIONS(313), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1545), 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, + ACTIONS(399), 1, sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [42891] = 22, - ACTIONS(781), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(793), 1, - anon_sym_LBRACE, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(985), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - ACTIONS(1241), 1, - sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(976), 1, + STATE(962), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1032), 1, sym_string, - STATE(1436), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1773), 1, + STATE(2003), 1, sym_expression, - STATE(2596), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62132,7 +63011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62149,61 +63028,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42989] = 23, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, + [43521] = 22, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(709), 1, - sym_string_start, - ACTIONS(1061), 1, - anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(1315), 1, - anon_sym_STAR, - ACTIONS(1531), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(1549), 1, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(399), 1, sym_identifier, - STATE(991), 1, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(1032), 1, + anon_sym_not, + ACTIONS(1442), 1, + anon_sym_STAR, + STATE(962), 1, sym_primary_expression, - STATE(993), 1, + STATE(1032), 1, sym_string, - STATE(1384), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1961), 1, + STATE(2030), 1, sym_expression, - STATE(2647), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1553), 2, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - STATE(1379), 2, - sym_attribute, - sym_subscript, - ACTIONS(701), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1551), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62211,9 +63088,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 14, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -62226,58 +63105,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43089] = 22, - ACTIONS(67), 1, + [43620] = 22, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(311), 1, + anon_sym_await, + ACTIONS(313), 1, sym_string_start, - ACTIONS(367), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(390), 1, - anon_sym_await, - ACTIONS(629), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1032), 1, + anon_sym_not, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(859), 1, + STATE(962), 1, sym_primary_expression, - STATE(961), 1, + STATE(1032), 1, sym_string, - STATE(1077), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1824), 1, + STATE(2051), 1, sym_expression, - STATE(2625), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62285,7 +63165,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62302,58 +63182,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43187] = 22, - ACTIONS(291), 1, + [43719] = 22, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(2053), 1, + STATE(2061), 1, sym_expression, - STATE(2653), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(272), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62361,7 +63242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62378,58 +63259,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43285] = 22, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(767), 1, - anon_sym_LBRACK, - ACTIONS(771), 1, + [43818] = 22, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(777), 1, - sym_string_start, - ACTIONS(863), 1, - anon_sym_not, - ACTIONS(865), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1129), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(1269), 1, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(399), 1, + sym_identifier, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(1032), 1, + anon_sym_not, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(959), 1, + STATE(962), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1032), 1, sym_string, - STATE(1337), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1822), 1, + STATE(2064), 1, sym_expression, - STATE(2670), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(272), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(769), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62437,7 +63319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62454,58 +63336,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43383] = 22, - ACTIONS(291), 1, + [43917] = 22, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(2058), 1, + STATE(2072), 1, sym_expression, - STATE(2653), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(272), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62513,7 +63396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62530,58 +63413,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43481] = 22, - ACTIONS(291), 1, + [44016] = 22, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(2022), 1, + STATE(2084), 1, sym_expression, - STATE(2653), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(272), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62589,7 +63473,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62606,58 +63490,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43579] = 22, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + [44115] = 22, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(848), 1, + anon_sym_lambda, + ACTIONS(1086), 1, + sym_identifier, + ACTIONS(1094), 1, + anon_sym_await, + ACTIONS(1250), 1, anon_sym_STAR, - STATE(962), 1, + STATE(963), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1035), 1, sym_string, - STATE(1416), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(2038), 1, + STATE(1800), 1, sym_expression, - STATE(2653), 1, + STATE(2681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(1090), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1092), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62665,7 +63550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62682,58 +63567,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43677] = 22, - ACTIONS(291), 1, + [44214] = 22, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(2050), 1, + STATE(2085), 1, sym_expression, - STATE(2653), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(272), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62741,7 +63627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62758,58 +63644,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43775] = 22, - ACTIONS(291), 1, + [44313] = 22, + ACTIONS(744), 1, + anon_sym_LPAREN, + ACTIONS(752), 1, + anon_sym_LBRACK, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(762), 1, + sym_string_start, + ACTIONS(1076), 1, + anon_sym_not, + ACTIONS(1078), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(1080), 1, anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, + ACTIONS(1266), 1, sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1344), 1, anon_sym_STAR, - STATE(962), 1, + STATE(964), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1043), 1, sym_string, - STATE(1416), 1, + STATE(1325), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(1972), 1, sym_expression, - STATE(2653), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(1066), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1070), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(742), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1731), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62817,7 +63704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62834,58 +63721,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43873] = 22, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + [44412] = 22, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(848), 1, + anon_sym_lambda, + ACTIONS(1086), 1, + sym_identifier, + ACTIONS(1094), 1, + anon_sym_await, + ACTIONS(1250), 1, anon_sym_STAR, - STATE(962), 1, + STATE(963), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1035), 1, sym_string, - STATE(1416), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(2065), 1, + STATE(1811), 1, sym_expression, - STATE(2653), 1, + STATE(2681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(1090), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1092), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62893,7 +63781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62910,58 +63798,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43971] = 22, - ACTIONS(291), 1, + [44511] = 22, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(303), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(311), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(399), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1032), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, STATE(962), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(2078), 1, + STATE(2091), 1, sym_expression, - STATE(2653), 1, + STATE(2751), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(272), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(277), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1730), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62969,7 +63858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62986,58 +63875,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44069] = 22, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + [44610] = 22, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(848), 1, + anon_sym_lambda, + ACTIONS(1086), 1, + sym_identifier, + ACTIONS(1094), 1, + anon_sym_await, + ACTIONS(1250), 1, anon_sym_STAR, - STATE(962), 1, + STATE(963), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1035), 1, sym_string, - STATE(1416), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(2079), 1, + STATE(1817), 1, sym_expression, - STATE(2653), 1, + STATE(2681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(1090), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1092), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63045,7 +63935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63062,121 +63952,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44167] = 9, - ACTIONS(1487), 1, - anon_sym_else, - ACTIONS(1489), 1, - anon_sym_except, - ACTIONS(1491), 1, - anon_sym_finally, - STATE(703), 1, - sym_else_clause, - STATE(764), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(610), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1505), 12, - sym__dedent, - sym_string_start, + [44709] = 22, + ACTIONS(720), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(730), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(734), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1507), 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, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(846), 1, anon_sym_not, + ACTIONS(848), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(1086), 1, sym_identifier, + ACTIONS(1094), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [44239] = 22, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1250), 1, anon_sym_STAR, - STATE(962), 1, + STATE(963), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1035), 1, sym_string, - STATE(1416), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(2089), 1, + STATE(1820), 1, sym_expression, - STATE(2653), 1, + STATE(2681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(1090), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1092), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63184,7 +64012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63201,58 +64029,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44337] = 22, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + [44808] = 22, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(846), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(848), 1, + anon_sym_lambda, + ACTIONS(1086), 1, + sym_identifier, + ACTIONS(1094), 1, + anon_sym_await, + ACTIONS(1250), 1, anon_sym_STAR, - STATE(962), 1, + STATE(963), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1035), 1, sym_string, - STATE(1416), 1, + STATE(1370), 1, sym_list_splat_pattern, - STATE(1899), 1, + STATE(1826), 1, sym_expression, - STATE(2653), 1, + STATE(2681), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(1090), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1092), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(718), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1832), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63260,7 +64089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63277,256 +64106,98 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44435] = 10, - ACTIONS(1557), 1, - anon_sym_COMMA, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, - ACTIONS(1564), 1, - anon_sym_COLON, - ACTIONS(1567), 1, - anon_sym_EQ, - ACTIONS(1569), 1, - anon_sym_LBRACK, - STATE(2096), 1, - sym_type_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1571), 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(1560), 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(1555), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + [44907] = 22, + ACTIONS(720), 1, anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, + ACTIONS(730), 1, + anon_sym_LBRACK, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(846), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [44508] = 5, - ACTIONS(1577), 1, - anon_sym_except, + ACTIONS(848), 1, + anon_sym_lambda, + ACTIONS(1086), 1, + sym_identifier, + ACTIONS(1094), 1, + anon_sym_await, + ACTIONS(1250), 1, + anon_sym_STAR, + STATE(963), 1, + sym_primary_expression, + STATE(1035), 1, + sym_string, + STATE(1370), 1, + sym_list_splat_pattern, + STATE(1803), 1, + sym_expression, + STATE(2681), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(607), 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, + ACTIONS(736), 2, + sym_ellipsis, + sym_float, + ACTIONS(732), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1575), 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, + ACTIONS(1090), 3, + anon_sym_lazy, anon_sym_match, + anon_sym_type, + ACTIONS(1092), 3, + anon_sym_print, 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, + ACTIONS(718), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [44570] = 8, - ACTIONS(264), 1, - anon_sym_COMMA, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(274), 1, - anon_sym_COLON, - ACTIONS(284), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(300), 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(259), 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(257), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [44638] = 8, - ACTIONS(264), 1, - anon_sym_COMMA, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(274), 1, - anon_sym_COLON, - ACTIONS(284), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(300), 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(259), 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(257), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [44706] = 5, - ACTIONS(1580), 1, - anon_sym_except, + STATE(1832), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1377), 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, + [45006] = 8, + ACTIONS(1492), 1, + anon_sym_else, + ACTIONS(1570), 1, + anon_sym_elif, + STATE(615), 1, + aux_sym_if_statement_repeat1, + STATE(701), 1, + sym_elif_clause, + STATE(845), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(610), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1573), 12, + ACTIONS(1568), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -63539,9 +64210,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1575), 34, + ACTIONS(1566), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -63551,13 +64223,11 @@ 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, @@ -63574,21 +64244,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44768] = 8, - ACTIONS(1509), 1, + [45075] = 8, + ACTIONS(1482), 1, anon_sym_else, - ACTIONS(1587), 1, + ACTIONS(1576), 1, anon_sym_elif, - STATE(628), 1, + STATE(619), 1, aux_sym_if_statement_repeat1, - STATE(695), 1, + STATE(717), 1, sym_elif_clause, STATE(794), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1583), 12, + ACTIONS(1572), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -63601,9 +64271,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1585), 32, + ACTIONS(1574), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -63634,23 +64305,23 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44836] = 8, - ACTIONS(1487), 1, + [45144] = 8, + ACTIONS(1482), 1, anon_sym_else, - ACTIONS(1593), 1, + ACTIONS(1576), 1, anon_sym_elif, - STATE(637), 1, + STATE(619), 1, aux_sym_if_statement_repeat1, - STATE(710), 1, + STATE(717), 1, sym_elif_clause, - STATE(790), 1, + STATE(768), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1591), 12, - sym__dedent, + ACTIONS(1578), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -63661,9 +64332,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1589), 32, + ACTIONS(1580), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -63694,21 +64366,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44904] = 8, - ACTIONS(1509), 1, + [45213] = 8, + ACTIONS(1482), 1, anon_sym_else, - ACTIONS(1587), 1, + ACTIONS(1576), 1, anon_sym_elif, - STATE(614), 1, + STATE(609), 1, aux_sym_if_statement_repeat1, - STATE(695), 1, + STATE(717), 1, sym_elif_clause, - STATE(776), 1, + STATE(769), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1595), 12, + ACTIONS(1582), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -63721,9 +64393,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1597), 32, + ACTIONS(1584), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -63754,23 +64427,23 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44972] = 8, - ACTIONS(1509), 1, + [45282] = 8, + ACTIONS(1492), 1, anon_sym_else, - ACTIONS(1587), 1, + ACTIONS(1570), 1, anon_sym_elif, - STATE(628), 1, + STATE(622), 1, aux_sym_if_statement_repeat1, - STATE(695), 1, + STATE(701), 1, sym_elif_clause, - STATE(765), 1, + STATE(767), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1591), 12, + ACTIONS(1572), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -63781,9 +64454,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1589), 32, + ACTIONS(1574), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -63814,23 +64488,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45040] = 8, - ACTIONS(1509), 1, - anon_sym_else, - ACTIONS(1587), 1, - anon_sym_elif, - STATE(611), 1, - aux_sym_if_statement_repeat1, - STATE(695), 1, - sym_elif_clause, - STATE(766), 1, - sym_else_clause, + [45351] = 5, + ACTIONS(1590), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 12, + STATE(613), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1588), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -63841,9 +64510,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1601), 32, + ACTIONS(1586), 35, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -63853,11 +64523,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, @@ -63874,200 +64546,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45108] = 7, - ACTIONS(1557), 1, - anon_sym_COMMA, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1567), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(1571), 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(1560), 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(1555), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [45174] = 7, - ACTIONS(264), 1, - anon_sym_COMMA, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(284), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(300), 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(259), 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(257), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [45240] = 7, - ACTIONS(264), 1, - anon_sym_COMMA, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(284), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(300), 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(259), 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(257), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [45306] = 8, - ACTIONS(1487), 1, - anon_sym_else, + [45414] = 5, ACTIONS(1593), 1, - anon_sym_elif, - STATE(637), 1, - aux_sym_if_statement_repeat1, - STATE(710), 1, - sym_elif_clause, - STATE(770), 1, - sym_else_clause, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1583), 12, - sym__dedent, + STATE(614), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1588), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -64078,9 +64568,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1585), 32, + ACTIONS(1586), 35, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -64090,11 +64581,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, @@ -64111,21 +64604,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45374] = 8, - ACTIONS(1487), 1, + [45477] = 8, + ACTIONS(1492), 1, anon_sym_else, - ACTIONS(1593), 1, + ACTIONS(1570), 1, anon_sym_elif, - STATE(619), 1, + STATE(622), 1, aux_sym_if_statement_repeat1, - STATE(710), 1, + STATE(701), 1, sym_elif_clause, - STATE(814), 1, + STATE(750), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 12, + ACTIONS(1578), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -64138,9 +64631,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1601), 32, + ACTIONS(1580), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -64171,23 +64665,86 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45442] = 8, - ACTIONS(1487), 1, + [45546] = 10, + ACTIONS(1598), 1, + anon_sym_COMMA, + ACTIONS(1603), 1, + anon_sym_COLON_EQ, + ACTIONS(1605), 1, + anon_sym_COLON, + ACTIONS(1608), 1, + anon_sym_EQ, + ACTIONS(1610), 1, + anon_sym_LBRACK, + STATE(2004), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1612), 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(1601), 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(1596), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [45619] = 8, + ACTIONS(1482), 1, anon_sym_else, - ACTIONS(1593), 1, + ACTIONS(1576), 1, anon_sym_elif, - STATE(612), 1, + STATE(610), 1, aux_sym_if_statement_repeat1, - STATE(710), 1, + STATE(717), 1, sym_elif_clause, - STATE(810), 1, + STATE(822), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1595), 12, - sym__dedent, + ACTIONS(1568), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -64198,9 +64755,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1597), 32, + ACTIONS(1566), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -64231,11 +64789,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45510] = 3, + [45688] = 8, + ACTIONS(1492), 1, + anon_sym_else, + ACTIONS(1570), 1, + anon_sym_elif, + STATE(612), 1, + aux_sym_if_statement_repeat1, + STATE(701), 1, + sym_elif_clause, + STATE(752), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 12, + ACTIONS(1582), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -64248,9 +64816,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1603), 36, + ACTIONS(1584), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -64260,15 +64829,11 @@ 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, @@ -64285,11 +64850,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45567] = 3, + [45757] = 6, + ACTIONS(1618), 1, + anon_sym_elif, + STATE(619), 1, + aux_sym_if_statement_repeat1, + STATE(717), 1, + sym_elif_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 12, + ACTIONS(1614), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -64302,9 +64873,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1609), 36, + ACTIONS(1616), 34, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -64314,15 +64886,12 @@ 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, @@ -64339,239 +64908,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45624] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1613), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [45681] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1617), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1615), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [45738] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1617), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1615), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [45795] = 7, - ACTIONS(1631), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1621), 2, - anon_sym_DOT, - anon_sym_COLON, - ACTIONS(1623), 2, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1629), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1626), 12, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1619), 28, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [45860] = 6, - ACTIONS(1637), 1, - anon_sym_elif, - STATE(628), 1, - aux_sym_if_statement_repeat1, - STATE(695), 1, - sym_elif_clause, + [45821] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1633), 12, + ACTIONS(1623), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -64582,9 +64925,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1635), 33, + ACTIONS(1621), 37, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -64594,12 +64938,15 @@ 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, @@ -64616,181 +64963,74 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45923] = 6, - ACTIONS(1567), 1, - anon_sym_EQ, - ACTIONS(1642), 1, - anon_sym_COMMA, + [45879] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 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(1645), 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(1640), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(1627), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [45986] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1649), 16, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1647), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [46043] = 6, - ACTIONS(1653), 1, - anon_sym_COMMA, - ACTIONS(1660), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1658), 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(1656), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_LBRACE, 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(1651), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1625), 37, + anon_sym_import, + anon_sym_from, + anon_sym_lazy, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, + 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, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [46106] = 3, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45937] = 6, + ACTIONS(1629), 1, + anon_sym_elif, + STATE(622), 1, + aux_sym_if_statement_repeat1, + STATE(701), 1, + sym_elif_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1662), 12, + ACTIONS(1614), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -64801,9 +65041,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1664), 36, + ACTIONS(1616), 34, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -64813,15 +65054,12 @@ 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, @@ -64838,13 +65076,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46163] = 3, + [46001] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1662), 12, - sym__dedent, + ACTIONS(1632), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -64855,9 +65093,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1664), 36, + ACTIONS(1634), 37, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -64892,15 +65131,35 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46220] = 3, + [46059] = 7, + ACTIONS(269), 1, + anon_sym_COMMA, + ACTIONS(279), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 16, + ACTIONS(289), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(305), 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(264), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -64913,15 +65172,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 32, + ACTIONS(262), 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, @@ -64933,6 +65190,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, + [46125] = 7, + ACTIONS(1598), 1, + anon_sym_COMMA, + ACTIONS(1603), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1608), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1612), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64946,15 +65215,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46277] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1672), 16, + ACTIONS(1601), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -64967,15 +65231,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 32, + ACTIONS(1596), 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, @@ -64987,6 +65249,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, + [46191] = 7, + ACTIONS(269), 1, + anon_sym_COMMA, + ACTIONS(279), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(289), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(305), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -65000,15 +65274,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46334] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1672), 16, + ACTIONS(264), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -65021,15 +65290,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 32, + ACTIONS(262), 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, @@ -65041,32 +65308,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [46391] = 6, - ACTIONS(1674), 1, - anon_sym_elif, - STATE(637), 1, - aux_sym_if_statement_repeat1, - STATE(710), 1, - sym_elif_clause, + [46257] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1633), 12, - sym__dedent, + ACTIONS(1636), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -65077,9 +65325,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1635), 33, + ACTIONS(1638), 37, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -65089,12 +65338,15 @@ 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, @@ -65111,11 +65363,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46454] = 3, + [46315] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 12, + ACTIONS(1623), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -65128,9 +65380,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1603), 36, + ACTIONS(1621), 37, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -65165,13 +65418,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46511] = 3, + [46373] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 12, - sym__dedent, + ACTIONS(1627), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -65182,9 +65435,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1677), 36, + ACTIONS(1625), 37, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -65219,243 +65473,129 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46568] = 6, - ACTIONS(1683), 1, - anon_sym_COMMA, - ACTIONS(1690), 1, - anon_sym_EQ, + [46431] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1688), 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(1686), 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(1681), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(1642), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [46631] = 6, - ACTIONS(1567), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1642), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1571), 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(1645), 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(1640), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [46694] = 6, - ACTIONS(1567), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1557), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1571), 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(1560), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_LBRACE, 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(1555), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1640), 37, + anon_sym_import, + anon_sym_from, + anon_sym_lazy, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, + 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, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [46757] = 5, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [46489] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(650), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(686), 3, - anon_sym_DOT, + ACTIONS(1632), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(645), 13, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(643), 29, - sym__newline, - anon_sym_SEMI, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1634), 37, + anon_sym_import, + anon_sym_from, + anon_sym_lazy, + anon_sym_print, + anon_sym_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_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, + [46547] = 8, + ACTIONS(269), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + ACTIONS(279), 1, + anon_sym_COLON_EQ, + ACTIONS(281), 1, anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [46818] = 6, - ACTIONS(1690), 1, + ACTIONS(289), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1688), 13, + ACTIONS(305), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -65469,7 +65609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1686), 15, + ACTIONS(264), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -65485,7 +65625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 17, + ACTIONS(262), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -65503,16 +65643,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46881] = 6, - ACTIONS(1660), 1, + [46615] = 8, + ACTIONS(269), 1, + anon_sym_COMMA, + ACTIONS(279), 1, + anon_sym_COLON_EQ, + ACTIONS(281), 1, + anon_sym_COLON, + ACTIONS(289), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1658), 13, + ACTIONS(305), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -65526,7 +65669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1656), 15, + ACTIONS(264), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -65542,7 +65685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 17, + ACTIONS(262), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -65560,11 +65703,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46944] = 3, + [46683] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 12, + ACTIONS(1636), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -65577,9 +65720,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1609), 36, + ACTIONS(1638), 37, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -65614,67 +65758,66 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47001] = 5, + [46741] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1623), 3, - anon_sym_DOT, + ACTIONS(1642), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1629), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1626), 13, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1619), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1640), 37, + anon_sym_import, + anon_sym_from, + anon_sym_lazy, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_in, + 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, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [47062] = 3, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [46799] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1692), 12, + ACTIONS(1644), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -65687,9 +65830,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1694), 36, + ACTIONS(1646), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -65699,7 +65843,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, @@ -65724,11 +65867,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47119] = 3, + [46856] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 12, + ACTIONS(1648), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -65741,9 +65884,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1677), 36, + ACTIONS(1650), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -65753,7 +65897,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, @@ -65778,16 +65921,73 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47176] = 6, - ACTIONS(1557), 1, + [46913] = 6, + ACTIONS(1659), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1654), 2, anon_sym_COMMA, - ACTIONS(1567), 1, + anon_sym_COLON, + ACTIONS(1661), 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(1657), 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(1652), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [46976] = 6, + ACTIONS(1670), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 14, + ACTIONS(1665), 2, + anon_sym_COMMA, anon_sym_COLON, + ACTIONS(1672), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -65801,7 +66001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1560), 15, + ACTIONS(1668), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -65817,7 +66017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 17, + ACTIONS(1663), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -65835,73 +66035,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [47239] = 3, + [47039] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1692), 12, - sym__dedent, + ACTIONS(1676), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1674), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [47096] = 21, + ACTIONS(296), 1, + anon_sym_LBRACE, + ACTIONS(313), 1, sym_string_start, + ACTIONS(1678), 1, + sym_identifier, + ACTIONS(1680), 1, anon_sym_LPAREN, + ACTIONS(1684), 1, anon_sym_STAR, + ACTIONS(1688), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1690), 1, + anon_sym_await, + STATE(1032), 1, + sym_string, + STATE(1577), 1, + sym_list_splat_pattern, + STATE(1593), 1, + sym_primary_expression, + STATE(2100), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(307), 2, + sym_ellipsis, + sym_float, + STATE(1578), 2, + sym_attribute, + sym_subscript, + STATE(2057), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(301), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1694), 36, - 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, + ACTIONS(1682), 3, + anon_sym_lazy, anon_sym_match, + anon_sym_type, + ACTIONS(1686), 3, + anon_sym_print, 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, + ACTIONS(309), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [47296] = 5, + ACTIONS(978), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1422), 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, + [47189] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(650), 3, + ACTIONS(659), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 3, + ACTIONS(671), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(645), 13, + ACTIONS(652), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -65915,7 +66187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 29, + ACTIONS(650), 29, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -65945,119 +66217,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [47357] = 3, + [47250] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(1694), 16, anon_sym_STAR, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1698), 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_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(1692), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, 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_COLON, + 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, - [47413] = 3, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [47307] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1700), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(1698), 16, anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1696), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [47364] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1698), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1702), 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_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(1696), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, 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_COLON, + 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, - [47469] = 3, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [47421] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1704), 12, + ACTIONS(1702), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66068,9 +66396,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1706), 35, + ACTIONS(1700), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -66104,64 +66433,67 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47525] = 3, + [47478] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1710), 12, - sym__dedent, - sym_string_start, + ACTIONS(659), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(671), 3, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_STAR, anon_sym_LBRACK, + ACTIONS(652), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1708), 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_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(650), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, 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_COLON, + anon_sym_in, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [47581] = 3, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [47539] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1714), 12, + ACTIONS(1706), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -66174,9 +66506,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1712), 35, + ACTIONS(1704), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -66210,13 +66543,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47637] = 3, + [47596] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1700), 12, - sym__dedent, + ACTIONS(1708), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66227,9 +66560,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1702), 35, + ACTIONS(1710), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -66263,13 +66597,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47693] = 3, + [47653] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1704), 12, - sym__dedent, + ACTIONS(1712), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66280,9 +66614,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1706), 35, + ACTIONS(1714), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -66316,66 +66651,67 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47749] = 3, + [47710] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1718), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, + ACTIONS(1694), 16, anon_sym_STAR, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1716), 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_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(1692), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, 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_COLON, + 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, - [47805] = 3, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [47767] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 12, + ACTIONS(1718), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66386,9 +66722,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1722), 35, + ACTIONS(1716), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -66422,11 +66759,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47861] = 3, + [47824] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1726), 12, + ACTIONS(1648), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -66439,9 +66776,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1724), 35, + ACTIONS(1650), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -66475,11 +66813,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47917] = 3, + [47881] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1730), 12, + ACTIONS(1722), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -66492,9 +66830,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1728), 35, + ACTIONS(1720), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -66528,11 +66867,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47973] = 3, + [47938] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1734), 12, + ACTIONS(1726), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -66545,9 +66884,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1732), 35, + ACTIONS(1724), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -66581,170 +66921,308 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48029] = 3, + [47995] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1738), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, + ACTIONS(1730), 16, anon_sym_STAR, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1736), 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_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(1728), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, 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_COLON, + 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, - [48085] = 3, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [48052] = 6, + ACTIONS(1608), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1718), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(1734), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1612), 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(1737), 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(1732), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [48115] = 6, + ACTIONS(1665), 1, + anon_sym_COMMA, + ACTIONS(1670), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1672), 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(1668), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1716), 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_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(1663), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, 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_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, - [48141] = 3, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [48178] = 6, + ACTIONS(1608), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1730), 12, + ACTIONS(1598), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1612), 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(1601), 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(1596), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [48241] = 21, + ACTIONS(296), 1, + anon_sym_LBRACE, + ACTIONS(313), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(1678), 1, + sym_identifier, + ACTIONS(1680), 1, anon_sym_LPAREN, + ACTIONS(1684), 1, anon_sym_STAR, + ACTIONS(1688), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1690), 1, + anon_sym_await, + STATE(1032), 1, + sym_string, + STATE(1577), 1, + sym_list_splat_pattern, + STATE(1593), 1, + sym_primary_expression, + STATE(2100), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(307), 2, + sym_ellipsis, + sym_float, + STATE(1578), 2, + sym_attribute, + sym_subscript, + STATE(2057), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(301), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1728), 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, + ACTIONS(1682), 3, + anon_sym_lazy, anon_sym_match, + anon_sym_type, + ACTIONS(1686), 3, + anon_sym_print, 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, + ACTIONS(309), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [48197] = 3, + ACTIONS(964), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1422), 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, + [48334] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1734), 12, + ACTIONS(1739), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -66757,9 +67235,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1732), 35, + ACTIONS(1741), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -66793,11 +67272,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48253] = 3, + [48391] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1740), 12, + ACTIONS(1743), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -66810,9 +67289,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1742), 35, + ACTIONS(1745), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -66846,11 +67326,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48309] = 3, + [48448] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1710), 12, + ACTIONS(1747), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -66863,9 +67343,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1708), 35, + ACTIONS(1749), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -66899,11 +67380,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48365] = 3, + [48505] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1744), 12, + ACTIONS(1751), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -66916,9 +67397,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1746), 35, + ACTIONS(1753), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -66952,11 +67434,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48421] = 3, + [48562] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1748), 12, + ACTIONS(1751), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -66969,9 +67451,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1750), 35, + ACTIONS(1753), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -67005,11 +67488,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48477] = 3, + [48619] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 12, + ACTIONS(1757), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -67022,9 +67505,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1698), 35, + ACTIONS(1755), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -67058,11 +67542,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48533] = 3, + [48676] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1752), 12, + ACTIONS(1759), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -67075,9 +67559,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1754), 35, + ACTIONS(1761), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -67111,11 +67596,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48589] = 3, + [48733] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1714), 12, + ACTIONS(1763), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -67128,9 +67613,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1712), 35, + ACTIONS(1765), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -67164,223 +67650,68 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48645] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1758), 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(1756), 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, - [48701] = 3, + [48790] = 6, + ACTIONS(1608), 1, + anon_sym_EQ, + ACTIONS(1734), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1744), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, + ACTIONS(1612), 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(1737), 15, anon_sym_STAR, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1746), 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, - [48757] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1748), 12, - sym__dedent, - sym_string_start, + 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(1732), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, 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(1750), 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_as, 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, - [48813] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1744), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_in, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1746), 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, - [48869] = 3, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [48853] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1726), 12, + ACTIONS(1763), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -67393,9 +67724,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1724), 35, + ACTIONS(1765), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -67429,11 +67761,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48925] = 3, + [48910] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 12, + ACTIONS(1708), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -67446,9 +67778,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1722), 35, + ACTIONS(1710), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -67482,13 +67815,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48981] = 3, + [48967] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1748), 12, - sym__dedent, + ACTIONS(1726), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67499,9 +67832,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1750), 35, + ACTIONS(1724), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -67535,84 +67869,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49037] = 21, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(1760), 1, - sym_identifier, - ACTIONS(1762), 1, - anon_sym_LPAREN, - ACTIONS(1764), 1, - anon_sym_STAR, - ACTIONS(1770), 1, - anon_sym_LBRACK, - ACTIONS(1772), 1, - anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1575), 1, - sym_list_splat_pattern, - STATE(1628), 1, - sym_primary_expression, - STATE(2097), 1, - sym_pattern, + [49024] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(1768), 2, - anon_sym_match, - anon_sym_type, - STATE(1574), 2, - sym_attribute, - sym_subscript, - STATE(2044), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1766), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(957), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1348), 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, - [49129] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1752), 12, - sym__dedent, + ACTIONS(1757), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67623,9 +67886,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1754), 35, + ACTIONS(1755), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -67659,84 +67923,127 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49185] = 21, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(1760), 1, - sym_identifier, - ACTIONS(1762), 1, + [49081] = 7, + ACTIONS(1779), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1769), 2, + anon_sym_DOT, + anon_sym_COLON, + ACTIONS(1771), 2, anon_sym_LPAREN, - ACTIONS(1764), 1, - anon_sym_STAR, - ACTIONS(1770), 1, anon_sym_LBRACK, - ACTIONS(1772), 1, - anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1575), 1, - sym_list_splat_pattern, - STATE(1628), 1, - sym_primary_expression, - STATE(2097), 1, - sym_pattern, + ACTIONS(1777), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1774), 12, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1767), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [49146] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(1768), 2, - anon_sym_match, - anon_sym_type, - STATE(1574), 2, - sym_attribute, - sym_subscript, - STATE(2044), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(296), 3, + ACTIONS(1771), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1777), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1774), 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_TILDE, - ACTIONS(1766), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(971), 4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1767), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1348), 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, - [49277] = 3, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [49207] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1738), 12, + ACTIONS(1712), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67747,9 +68054,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1736), 35, + ACTIONS(1714), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -67783,11 +68091,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49333] = 3, + [49264] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1748), 12, + ACTIONS(1718), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -67800,9 +68108,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1750), 35, + ACTIONS(1716), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -67836,13 +68145,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49389] = 3, + [49321] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1740), 12, - sym__dedent, + ACTIONS(1722), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67853,9 +68162,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1742), 35, + ACTIONS(1720), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -67889,11 +68199,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49445] = 3, + [49378] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1758), 12, + ACTIONS(1702), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -67906,9 +68216,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1756), 35, + ACTIONS(1700), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -67942,11 +68253,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49501] = 3, + [49435] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1744), 12, + ACTIONS(1706), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -67959,9 +68270,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1746), 35, + ACTIONS(1704), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -67995,13 +68307,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49557] = 3, + [49492] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1774), 12, + ACTIONS(1644), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68012,9 +68324,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1776), 34, + ACTIONS(1646), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -68024,13 +68337,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, @@ -68047,11 +68361,68 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, + [49549] = 6, + ACTIONS(1654), 1, + anon_sym_COMMA, + ACTIONS(1659), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1661), 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(1657), 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(1652), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, [49612] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1774), 12, + ACTIONS(1739), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68064,9 +68435,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1776), 34, + ACTIONS(1741), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -68076,13 +68448,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, @@ -68099,15 +68472,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49667] = 5, - ACTIONS(1487), 1, - anon_sym_else, - STATE(796), 1, - sym_else_clause, + [49669] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1780), 12, + ACTIONS(1743), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68120,9 +68489,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1778), 32, + ACTIONS(1745), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -68132,11 +68502,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, @@ -68153,17 +68526,67 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49726] = 5, - ACTIONS(1513), 1, - anon_sym_finally, - STATE(741), 1, - sym_finally_clause, + [49726] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1783), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1781), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [49783] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1505), 12, + ACTIONS(1747), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68174,9 +68597,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1507), 32, + ACTIONS(1749), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -68186,11 +68610,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, @@ -68207,13 +68634,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49785] = 3, + [49840] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1782), 12, + ACTIONS(1751), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68224,9 +68651,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1784), 34, + ACTIONS(1753), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -68236,13 +68664,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, @@ -68259,11 +68688,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49840] = 3, + [49897] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1788), 12, + ACTIONS(1751), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68276,9 +68705,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1786), 34, + ACTIONS(1753), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -68288,13 +68718,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, @@ -68311,15 +68742,65 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49895] = 5, - ACTIONS(1487), 1, + [49954] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1759), 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(1761), 36, + anon_sym_import, + anon_sym_from, + anon_sym_lazy, + anon_sym_print, + anon_sym_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, - STATE(785), 1, - sym_else_clause, + 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, + [50011] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1792), 12, + ACTIONS(1763), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68332,9 +68813,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1790), 32, + ACTIONS(1765), 36, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -68344,11 +68826,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, @@ -68365,17 +68850,128 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49954] = 5, - ACTIONS(1509), 1, + [50068] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1763), 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(1765), 36, + anon_sym_import, + anon_sym_from, + anon_sym_lazy, + anon_sym_print, + anon_sym_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, - STATE(775), 1, - sym_else_clause, + 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, + [50125] = 6, + ACTIONS(1598), 1, + anon_sym_COMMA, + ACTIONS(1608), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1794), 12, + ACTIONS(1612), 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(1601), 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(1596), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [50188] = 5, + ACTIONS(1496), 1, + anon_sym_finally, + STATE(761), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1787), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68386,9 +68982,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1796), 32, + ACTIONS(1785), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -68419,15 +69016,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50013] = 5, - ACTIONS(1513), 1, + [50248] = 5, + ACTIONS(1486), 1, anon_sym_finally, - STATE(780), 1, + STATE(809), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1798), 12, + ACTIONS(1789), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68440,9 +69037,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1800), 32, + ACTIONS(1791), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -68473,15 +69071,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50072] = 5, - ACTIONS(1513), 1, + [50308] = 5, + ACTIONS(1486), 1, anon_sym_finally, STATE(782), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1495), 12, + ACTIONS(1787), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68494,9 +69092,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1493), 32, + ACTIONS(1785), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -68527,17 +69126,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50131] = 5, - ACTIONS(1487), 1, + [50368] = 5, + ACTIONS(1482), 1, anon_sym_else, - STATE(732), 1, + STATE(830), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1794), 12, - sym__dedent, + ACTIONS(1793), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68548,9 +69147,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1796), 32, + ACTIONS(1795), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -68581,17 +69181,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50190] = 5, - ACTIONS(1491), 1, - anon_sym_finally, - STATE(819), 1, - sym_finally_clause, + [50428] = 5, + ACTIONS(1482), 1, + anon_sym_else, + STATE(817), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1804), 12, - sym__dedent, + ACTIONS(1797), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68602,9 +69202,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1802), 32, + ACTIONS(1799), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -68635,15 +69236,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50249] = 5, - ACTIONS(1491), 1, + [50488] = 5, + ACTIONS(1496), 1, anon_sym_finally, - STATE(749), 1, + STATE(725), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1798), 12, + ACTIONS(1514), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68656,9 +69257,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1800), 32, + ACTIONS(1512), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -68689,15 +69291,70 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50308] = 5, - ACTIONS(1509), 1, + [50548] = 5, + ACTIONS(1492), 1, anon_sym_else, - STATE(800), 1, + STATE(793), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1792), 12, + ACTIONS(1797), 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(1799), 33, + anon_sym_import, + anon_sym_from, + anon_sym_lazy, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + 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, + [50608] = 5, + ACTIONS(1486), 1, + anon_sym_finally, + STATE(783), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1514), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68710,9 +69367,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1790), 32, + ACTIONS(1512), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -68743,15 +69401,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50367] = 5, - ACTIONS(1487), 1, - anon_sym_else, - STATE(841), 1, - sym_else_clause, + [50668] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1808), 12, + ACTIONS(1803), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68764,9 +69418,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1806), 32, + ACTIONS(1801), 35, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -68776,6 +69431,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, @@ -68797,17 +69454,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50426] = 5, - ACTIONS(1509), 1, + [50724] = 5, + ACTIONS(1492), 1, anon_sym_else, - STATE(742), 1, + STATE(776), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1780), 12, + ACTIONS(1807), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68818,9 +69475,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1778), 32, + ACTIONS(1805), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -68851,15 +69509,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50485] = 5, - ACTIONS(1513), 1, - anon_sym_finally, - STATE(805), 1, - sym_finally_clause, + [50784] = 5, + ACTIONS(1482), 1, + anon_sym_else, + STATE(729), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1804), 12, + ACTIONS(1809), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68872,9 +69530,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1802), 32, + ACTIONS(1811), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -68905,15 +69564,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50544] = 5, - ACTIONS(1487), 1, - anon_sym_else, - STATE(734), 1, - sym_else_clause, + [50844] = 5, + ACTIONS(1496), 1, + anon_sym_finally, + STATE(735), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1812), 12, + ACTIONS(1506), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68926,9 +69585,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1810), 32, + ACTIONS(1504), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -68959,13 +69619,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50603] = 3, + [50904] = 5, + ACTIONS(1492), 1, + anon_sym_else, + STATE(758), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1788), 12, + ACTIONS(1815), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68976,9 +69640,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1786), 34, + ACTIONS(1813), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -68988,8 +69653,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, @@ -69011,13 +69674,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50658] = 3, + [50964] = 5, + ACTIONS(1486), 1, + anon_sym_finally, + STATE(732), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1782), 12, - sym__dedent, + ACTIONS(1506), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69028,9 +69695,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1784), 34, + ACTIONS(1504), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -69040,8 +69708,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, @@ -69063,17 +69729,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50713] = 5, - ACTIONS(1509), 1, - anon_sym_else, - STATE(813), 1, - sym_else_clause, + [51024] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1808), 12, + ACTIONS(1819), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69084,9 +69746,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1806), 32, + ACTIONS(1817), 35, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -69096,6 +69759,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, @@ -69117,17 +69782,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50772] = 5, - ACTIONS(1509), 1, + [51080] = 5, + ACTIONS(1492), 1, anon_sym_else, - STATE(817), 1, + STATE(813), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1812), 12, + ACTIONS(1793), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69138,9 +69803,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1810), 32, + ACTIONS(1795), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -69171,17 +69837,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50831] = 5, - ACTIONS(1491), 1, - anon_sym_finally, - STATE(750), 1, - sym_finally_clause, + [51140] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1495), 12, - sym__dedent, + ACTIONS(1821), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69192,9 +69854,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1493), 32, + ACTIONS(1823), 35, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -69204,6 +69867,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, @@ -69225,15 +69890,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50890] = 5, - ACTIONS(1509), 1, + [51196] = 5, + ACTIONS(1482), 1, anon_sym_else, - STATE(736), 1, + STATE(821), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1814), 12, + ACTIONS(1825), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69246,9 +69911,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1816), 32, + ACTIONS(1827), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -69279,15 +69945,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50949] = 5, - ACTIONS(1487), 1, + [51256] = 5, + ACTIONS(1492), 1, anon_sym_else, - STATE(748), 1, + STATE(798), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1814), 12, + ACTIONS(1825), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69300,9 +69966,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1816), 32, + ACTIONS(1827), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -69333,15 +70000,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51008] = 5, - ACTIONS(1491), 1, - anon_sym_finally, - STATE(764), 1, - sym_finally_clause, + [51316] = 5, + ACTIONS(1492), 1, + anon_sym_else, + STATE(734), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1505), 12, + ACTIONS(1809), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69354,9 +70021,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1507), 32, + ACTIONS(1811), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -69387,81 +70055,123 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51067] = 22, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, + [51376] = 5, + ACTIONS(1482), 1, + anon_sym_else, + STATE(801), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1807), 12, sym_string_start, - ACTIONS(1818), 1, - sym_identifier, - ACTIONS(1820), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1822), 1, - anon_sym_RPAREN, - ACTIONS(1824), 1, anon_sym_STAR, - ACTIONS(1830), 1, anon_sym_LBRACK, - ACTIONS(1832), 1, - anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1596), 1, - sym_list_splat_pattern, - STATE(1622), 1, - sym_primary_expression, - STATE(2320), 1, - sym_pattern, - STATE(2697), 1, - sym__patterns, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(302), 2, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1828), 2, + ACTIONS(1805), 33, + anon_sym_import, + anon_sym_from, + anon_sym_lazy, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, anon_sym_type, - STATE(1597), 2, - sym_attribute, - sym_subscript, - STATE(2578), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(296), 3, + 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, + [51436] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1821), 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(1826), 3, + sym_ellipsis, + sym_float, + ACTIONS(1823), 35, + anon_sym_import, + anon_sym_from, + anon_sym_lazy, anon_sym_print, + anon_sym_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, - ACTIONS(304), 4, + 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, - STATE(1348), 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, - [51159] = 3, + [51492] = 5, + ACTIONS(1496), 1, + anon_sym_finally, + STATE(779), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1836), 12, + ACTIONS(1789), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69474,9 +70184,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1834), 33, + ACTIONS(1791), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -69491,7 +70202,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, @@ -69508,11 +70218,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51213] = 3, + [51552] = 5, + ACTIONS(1482), 1, + anon_sym_else, + STATE(777), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1838), 12, + ACTIONS(1815), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69525,9 +70239,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1840), 33, + ACTIONS(1813), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -69542,7 +70257,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, @@ -69559,11 +70273,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51267] = 3, + [51612] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1836), 12, + ACTIONS(1803), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69576,9 +70290,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1834), 33, + ACTIONS(1801), 35, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -69588,12 +70303,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, @@ -69610,13 +70326,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51321] = 3, + [51668] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1838), 12, - sym__dedent, + ACTIONS(1819), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69627,9 +70343,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1840), 33, + ACTIONS(1817), 35, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -69639,12 +70356,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, @@ -69661,62 +70379,63 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51375] = 22, - ACTIONS(291), 1, + [51724] = 22, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(1818), 1, + ACTIONS(1829), 1, sym_identifier, - ACTIONS(1820), 1, + ACTIONS(1831), 1, anon_sym_LPAREN, - ACTIONS(1824), 1, + ACTIONS(1833), 1, + anon_sym_RPAREN, + ACTIONS(1837), 1, anon_sym_STAR, - ACTIONS(1830), 1, + ACTIONS(1841), 1, anon_sym_LBRACK, - ACTIONS(1832), 1, + ACTIONS(1843), 1, anon_sym_await, - ACTIONS(1842), 1, - anon_sym_RPAREN, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1596), 1, + STATE(1598), 1, sym_list_splat_pattern, - STATE(1622), 1, + STATE(1624), 1, sym_primary_expression, - STATE(2320), 1, + STATE(2344), 1, sym_pattern, - STATE(2756), 1, + STATE(2658), 1, sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1828), 2, - anon_sym_match, - anon_sym_type, - STATE(1597), 2, + STATE(1599), 2, sym_attribute, sym_subscript, - STATE(2578), 2, + STATE(2585), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1826), 3, + ACTIONS(1835), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1839), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -69731,11 +70450,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [51467] = 3, + [51817] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1846), 12, + ACTIONS(1847), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69748,9 +70467,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1844), 32, + ACTIONS(1845), 34, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -69765,6 +70485,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, @@ -69781,11 +70502,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51520] = 3, + [51872] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1848), 12, + ACTIONS(1849), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69798,9 +70519,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1850), 32, + ACTIONS(1851), 34, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -69815,6 +70537,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, @@ -69831,13 +70554,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51573] = 3, + [51927] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1854), 12, - sym__dedent, + ACTIONS(1847), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69848,9 +70571,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1852), 32, + ACTIONS(1845), 34, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -69865,6 +70589,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, @@ -69881,61 +70606,82 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51626] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1858), 12, - sym__dedent, + [51982] = 22, + ACTIONS(296), 1, + anon_sym_LBRACE, + ACTIONS(313), 1, sym_string_start, + ACTIONS(1829), 1, + sym_identifier, + ACTIONS(1831), 1, anon_sym_LPAREN, + ACTIONS(1837), 1, anon_sym_STAR, + ACTIONS(1841), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1843), 1, + anon_sym_await, + ACTIONS(1853), 1, + anon_sym_RPAREN, + STATE(1032), 1, + sym_string, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1624), 1, + sym_primary_expression, + STATE(2344), 1, + sym_pattern, + STATE(2708), 1, + sym__patterns, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(307), 2, + sym_ellipsis, + sym_float, + STATE(1599), 2, + sym_attribute, + sym_subscript, + STATE(2585), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(301), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1856), 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, + ACTIONS(1835), 3, + anon_sym_lazy, anon_sym_match, + anon_sym_type, + ACTIONS(1839), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(309), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [51679] = 3, + STATE(1422), 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, + [52075] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1862), 12, + ACTIONS(1849), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69948,9 +70694,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1860), 32, + ACTIONS(1851), 34, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -69965,6 +70712,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, @@ -69981,11 +70729,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51732] = 3, + [52130] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1866), 12, + ACTIONS(1789), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69998,9 +70746,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1864), 32, + ACTIONS(1791), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -70031,60 +70780,61 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51785] = 21, - ACTIONS(291), 1, + [52184] = 21, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, - ACTIONS(1868), 1, + ACTIONS(1855), 1, sym_identifier, - ACTIONS(1870), 1, + ACTIONS(1857), 1, anon_sym_LPAREN, - ACTIONS(1876), 1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(1878), 1, + ACTIONS(1865), 1, anon_sym_await, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1609), 1, + STATE(1612), 1, sym_list_splat_pattern, - STATE(1620), 1, + STATE(1622), 1, sym_primary_expression, - STATE(2338), 1, + STATE(2492), 1, sym_pattern, - STATE(2735), 1, + STATE(2783), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1874), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, + STATE(1613), 2, sym_attribute, sym_subscript, - STATE(1634), 2, + STATE(1637), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1872), 3, + ACTIONS(1859), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1861), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -70099,13 +70849,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [51874] = 3, + [52274] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1882), 12, - sym__dedent, + ACTIONS(1867), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70116,9 +70866,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1880), 32, + ACTIONS(1869), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -70149,13 +70900,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51927] = 3, + [52328] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1884), 12, + ACTIONS(1873), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70166,9 +70917,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1886), 32, + ACTIONS(1871), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -70199,13 +70951,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51980] = 3, + [52382] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1890), 12, - sym__dedent, + ACTIONS(1875), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70216,9 +70968,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1888), 32, + ACTIONS(1877), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -70249,13 +71002,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52033] = 3, + [52436] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1892), 12, + ACTIONS(1881), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70266,9 +71019,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1894), 32, + ACTIONS(1879), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -70299,11 +71053,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52086] = 3, + [52490] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1898), 12, + ACTIONS(1885), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70316,9 +71070,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1896), 32, + ACTIONS(1883), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -70349,11 +71104,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52139] = 3, + [52544] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1900), 12, + ACTIONS(1787), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70366,9 +71121,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1902), 32, + ACTIONS(1785), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -70399,13 +71155,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52192] = 3, + [52598] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1904), 12, + ACTIONS(1867), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70416,9 +71172,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1906), 32, + ACTIONS(1869), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -70449,11 +71206,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52245] = 3, + [52652] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1910), 12, + ACTIONS(1875), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70466,9 +71223,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1908), 32, + ACTIONS(1877), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -70499,11 +71257,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52298] = 3, + [52706] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1914), 12, + ACTIONS(1787), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70516,9 +71274,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1912), 32, + ACTIONS(1785), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -70549,11 +71308,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52351] = 3, + [52760] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1916), 12, + ACTIONS(1514), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70566,9 +71325,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1918), 32, + ACTIONS(1512), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -70599,11 +71359,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52404] = 3, + [52814] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1922), 12, + ACTIONS(1514), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70616,9 +71376,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1920), 32, + ACTIONS(1512), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -70649,11 +71410,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52457] = 3, + [52868] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1798), 12, + ACTIONS(1887), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70666,9 +71427,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1800), 32, + ACTIONS(1889), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -70699,13 +71461,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52510] = 3, + [52922] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1924), 12, + ACTIONS(1893), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70716,9 +71478,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1926), 32, + ACTIONS(1891), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -70749,11 +71512,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52563] = 3, + [52976] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1884), 12, + ACTIONS(1897), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70766,9 +71529,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1886), 32, + ACTIONS(1895), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -70799,11 +71563,164 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52616] = 3, + [53030] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1892), 12, + ACTIONS(1893), 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(1891), 33, + anon_sym_import, + anon_sym_from, + anon_sym_lazy, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + 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, + [53084] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1899), 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(1901), 33, + anon_sym_import, + anon_sym_from, + anon_sym_lazy, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + 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, + [53138] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1897), 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(1895), 33, + anon_sym_import, + anon_sym_from, + anon_sym_lazy, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + 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, + [53192] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1905), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70816,9 +71733,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1894), 32, + ACTIONS(1903), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -70849,11 +71767,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52669] = 3, + [53246] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1930), 12, + ACTIONS(1909), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70866,9 +71784,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1928), 32, + ACTIONS(1907), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -70899,11 +71818,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52722] = 3, + [53300] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1505), 12, + ACTIONS(1905), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70916,9 +71835,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1507), 32, + ACTIONS(1903), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -70949,11 +71869,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52775] = 3, + [53354] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1495), 12, + ACTIONS(1909), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70966,9 +71886,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1493), 32, + ACTIONS(1907), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -70999,11 +71920,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52828] = 3, + [53408] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1904), 12, + ACTIONS(1913), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -71016,9 +71937,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1906), 32, + ACTIONS(1911), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -71049,13 +71971,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52881] = 3, + [53462] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1934), 12, - sym__dedent, + ACTIONS(1913), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71066,9 +71988,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1932), 32, + ACTIONS(1911), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -71099,11 +72022,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52934] = 3, + [53516] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1804), 12, + ACTIONS(1917), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -71116,9 +72039,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1802), 32, + ACTIONS(1915), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -71149,13 +72073,82 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52987] = 3, + [53570] = 21, + ACTIONS(296), 1, + anon_sym_LBRACE, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(1829), 1, + sym_identifier, + ACTIONS(1831), 1, + anon_sym_LPAREN, + ACTIONS(1837), 1, + anon_sym_STAR, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1843), 1, + anon_sym_await, + ACTIONS(1919), 1, + anon_sym_RPAREN, + STATE(1032), 1, + sym_string, + STATE(1598), 1, + sym_list_splat_pattern, + STATE(1624), 1, + sym_primary_expression, + STATE(2576), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(307), 2, + sym_ellipsis, + sym_float, + STATE(1599), 2, + sym_attribute, + sym_subscript, + STATE(2585), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1835), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1839), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(309), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1422), 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, + [53660] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1936), 12, + ACTIONS(1923), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71166,9 +72159,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1938), 32, + ACTIONS(1921), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -71199,13 +72193,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53040] = 3, + [53714] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1940), 12, + ACTIONS(1927), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71216,9 +72210,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1942), 32, + ACTIONS(1925), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -71249,13 +72244,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53093] = 3, + [53768] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1910), 12, + ACTIONS(1931), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71266,9 +72261,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1908), 32, + ACTIONS(1929), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -71299,13 +72295,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53146] = 3, + [53822] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1944), 12, + ACTIONS(1935), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71316,9 +72312,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1946), 32, + ACTIONS(1933), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -71349,13 +72346,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53199] = 3, + [53876] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1948), 12, + ACTIONS(1939), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71366,9 +72363,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1950), 32, + ACTIONS(1937), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -71399,11 +72397,80 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53252] = 3, + [53930] = 21, + ACTIONS(296), 1, + anon_sym_LBRACE, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(1442), 1, + anon_sym_STAR, + ACTIONS(1855), 1, + sym_identifier, + ACTIONS(1857), 1, + anon_sym_LPAREN, + ACTIONS(1863), 1, + anon_sym_LBRACK, + ACTIONS(1865), 1, + anon_sym_await, + STATE(1032), 1, + sym_string, + STATE(1612), 1, + sym_list_splat_pattern, + STATE(1622), 1, + sym_primary_expression, + STATE(2491), 1, + sym_pattern, + STATE(2789), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(307), 2, + sym_ellipsis, + sym_float, + STATE(1613), 2, + sym_attribute, + sym_subscript, + STATE(1637), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1859), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1861), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(309), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1422), 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, + [54020] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1944), 12, + ACTIONS(1943), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -71416,9 +72483,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1946), 32, + ACTIONS(1941), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -71449,11 +72517,80 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53305] = 3, + [54074] = 21, + ACTIONS(296), 1, + anon_sym_LBRACE, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(1442), 1, + anon_sym_STAR, + ACTIONS(1855), 1, + sym_identifier, + ACTIONS(1857), 1, + anon_sym_LPAREN, + ACTIONS(1863), 1, + anon_sym_LBRACK, + ACTIONS(1865), 1, + anon_sym_await, + ACTIONS(1945), 1, + anon_sym_in, + STATE(1032), 1, + sym_string, + STATE(1612), 1, + sym_list_splat_pattern, + STATE(1622), 1, + sym_primary_expression, + STATE(1647), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1954), 12, + ACTIONS(307), 2, + sym_ellipsis, + sym_float, + STATE(1613), 2, + sym_attribute, + sym_subscript, + STATE(1637), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1859), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1861), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(309), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1422), 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, + [54164] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1949), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -71466,9 +72603,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1952), 32, + ACTIONS(1947), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -71499,11 +72637,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53358] = 3, + [54218] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1958), 12, + ACTIONS(1953), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -71516,9 +72654,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1956), 32, + ACTIONS(1951), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -71549,11 +72688,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53411] = 3, + [54272] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1948), 12, + ACTIONS(1957), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -71566,9 +72705,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1950), 32, + ACTIONS(1955), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -71599,81 +72739,64 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53464] = 21, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(1868), 1, - sym_identifier, - ACTIONS(1870), 1, - anon_sym_LPAREN, - ACTIONS(1876), 1, - anon_sym_LBRACK, - ACTIONS(1878), 1, - anon_sym_await, - ACTIONS(1960), 1, - anon_sym_in, - STATE(1017), 1, - sym_string, - STATE(1609), 1, - sym_list_splat_pattern, - STATE(1620), 1, - sym_primary_expression, - STATE(1629), 1, - sym_pattern, + [54326] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(1874), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, - sym_attribute, - sym_subscript, - STATE(1634), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(296), 3, + ACTIONS(1961), 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(1872), 3, + sym_ellipsis, + sym_float, + ACTIONS(1959), 33, + anon_sym_import, + anon_sym_from, + anon_sym_lazy, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(304), 4, + 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, - STATE(1348), 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, - [53553] = 3, + [54380] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1862), 12, + ACTIONS(1965), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71684,9 +72807,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1860), 32, + ACTIONS(1963), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -71717,11 +72841,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53606] = 3, + [54434] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1964), 12, + ACTIONS(1969), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -71734,9 +72858,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1962), 32, + ACTIONS(1967), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -71767,11 +72892,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53659] = 3, + [54488] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1968), 12, + ACTIONS(1973), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -71784,9 +72909,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1966), 32, + ACTIONS(1971), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -71817,11 +72943,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53712] = 3, + [54542] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1798), 12, + ACTIONS(1977), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -71834,9 +72960,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1800), 32, + ACTIONS(1975), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -71867,11 +72994,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53765] = 3, + [54596] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1970), 12, + ACTIONS(1917), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71884,9 +73011,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1972), 32, + ACTIONS(1915), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -71917,11 +73045,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53818] = 3, + [54650] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1974), 12, + ACTIONS(1923), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71934,9 +73062,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1976), 32, + ACTIONS(1921), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -71967,11 +73096,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53871] = 3, + [54704] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1980), 12, + ACTIONS(1981), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -71984,9 +73113,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1978), 32, + ACTIONS(1979), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -72017,11 +73147,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53924] = 3, + [54758] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1982), 12, + ACTIONS(1927), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72034,9 +73164,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1984), 32, + ACTIONS(1925), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -72067,11 +73198,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53977] = 3, + [54812] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1986), 12, + ACTIONS(1931), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72084,9 +73215,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1988), 32, + ACTIONS(1929), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -72117,11 +73249,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54030] = 3, + [54866] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1992), 12, + ACTIONS(1985), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -72134,9 +73266,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1990), 32, + ACTIONS(1983), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -72167,11 +73300,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54083] = 3, + [54920] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1854), 12, + ACTIONS(1935), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72184,9 +73317,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1852), 32, + ACTIONS(1933), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -72217,11 +73351,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54136] = 3, + [54974] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1866), 12, + ACTIONS(1939), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72234,9 +73368,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1864), 32, + ACTIONS(1937), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -72267,81 +73402,64 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54189] = 21, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, + [55028] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1989), 12, + sym__dedent, sym_string_start, - ACTIONS(1818), 1, - sym_identifier, - ACTIONS(1820), 1, anon_sym_LPAREN, - ACTIONS(1824), 1, anon_sym_STAR, - ACTIONS(1830), 1, anon_sym_LBRACK, - ACTIONS(1832), 1, - anon_sym_await, - ACTIONS(1994), 1, - anon_sym_RPAREN, - STATE(1017), 1, - sym_string, - STATE(1596), 1, - sym_list_splat_pattern, - STATE(1622), 1, - sym_primary_expression, - STATE(2563), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(1828), 2, - anon_sym_match, - anon_sym_type, - STATE(1597), 2, - sym_attribute, - sym_subscript, - STATE(2578), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(296), 3, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1826), 3, + sym_ellipsis, + sym_float, + ACTIONS(1987), 33, + anon_sym_import, + anon_sym_from, + anon_sym_lazy, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(304), 4, + 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, - STATE(1348), 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, - [54278] = 3, + [55082] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1998), 12, - sym__dedent, + ACTIONS(1943), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72352,9 +73470,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1996), 32, + ACTIONS(1941), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -72385,13 +73504,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54331] = 3, + [55136] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1890), 12, + ACTIONS(1993), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72402,9 +73521,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1888), 32, + ACTIONS(1991), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -72435,13 +73555,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54384] = 3, + [55190] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2000), 12, + ACTIONS(1997), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72452,9 +73572,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2002), 32, + ACTIONS(1995), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -72485,13 +73606,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54437] = 3, + [55244] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2004), 12, + ACTIONS(2001), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72502,9 +73623,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2006), 32, + ACTIONS(1999), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -72535,13 +73657,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54490] = 3, + [55298] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2010), 12, - sym__dedent, + ACTIONS(1949), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72552,9 +73674,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2008), 32, + ACTIONS(1947), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -72585,11 +73708,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54543] = 3, + [55352] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1930), 12, + ACTIONS(1953), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72602,9 +73725,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1928), 32, + ACTIONS(1951), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -72635,11 +73759,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54596] = 3, + [55406] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1934), 12, + ACTIONS(1789), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72652,9 +73776,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1932), 32, + ACTIONS(1791), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -72685,60 +73810,61 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54649] = 21, - ACTIONS(291), 1, + [55460] = 21, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, - ACTIONS(1868), 1, + ACTIONS(1855), 1, sym_identifier, - ACTIONS(1870), 1, + ACTIONS(1857), 1, anon_sym_LPAREN, - ACTIONS(1876), 1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(1878), 1, + ACTIONS(1865), 1, anon_sym_await, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1609), 1, + STATE(1612), 1, sym_list_splat_pattern, - STATE(1620), 1, + STATE(1622), 1, sym_primary_expression, - STATE(2489), 1, + STATE(2266), 1, sym_pattern, - STATE(2783), 1, + STATE(2623), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1874), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, + STATE(1613), 2, sym_attribute, sym_subscript, - STATE(1634), 2, + STATE(1637), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1872), 3, + ACTIONS(1859), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1861), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -72753,11 +73879,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [54738] = 3, + [55550] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1804), 12, + ACTIONS(1957), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72770,9 +73896,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1802), 32, + ACTIONS(1955), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -72803,11 +73930,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54791] = 3, + [55604] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2014), 12, + ACTIONS(2005), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -72820,9 +73947,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2012), 32, + ACTIONS(2003), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -72853,11 +73981,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54844] = 3, + [55658] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2016), 12, + ACTIONS(1961), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72870,9 +73998,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2018), 32, + ACTIONS(1959), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -72903,11 +74032,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54897] = 3, + [55712] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2022), 12, + ACTIONS(2009), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -72920,59 +74049,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2020), 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, - [54950] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1954), 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(1952), 32, + ACTIONS(2007), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -73003,11 +74083,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55003] = 3, + [55766] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1958), 12, + ACTIONS(1965), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73020,9 +74100,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1956), 32, + ACTIONS(1963), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -73053,11 +74134,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55056] = 3, + [55820] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2024), 12, + ACTIONS(1969), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73070,9 +74151,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2026), 32, + ACTIONS(1967), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -73103,11 +74185,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55109] = 3, + [55874] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1964), 12, + ACTIONS(1973), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73120,9 +74202,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1962), 32, + ACTIONS(1971), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -73153,11 +74236,80 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55162] = 3, + [55928] = 21, + ACTIONS(296), 1, + anon_sym_LBRACE, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(1442), 1, + anon_sym_STAR, + ACTIONS(1855), 1, + sym_identifier, + ACTIONS(1857), 1, + anon_sym_LPAREN, + ACTIONS(1863), 1, + anon_sym_LBRACK, + ACTIONS(1865), 1, + anon_sym_await, + STATE(1032), 1, + sym_string, + STATE(1612), 1, + sym_list_splat_pattern, + STATE(1622), 1, + sym_primary_expression, + STATE(2493), 1, + sym_pattern, + STATE(2787), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(307), 2, + sym_ellipsis, + sym_float, + STATE(1613), 2, + sym_attribute, + sym_subscript, + STATE(1637), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1859), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1861), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(309), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1422), 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, + [56018] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1970), 12, + ACTIONS(2013), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73170,9 +74322,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1972), 32, + ACTIONS(2011), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -73203,11 +74356,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55215] = 3, + [56072] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1980), 12, + ACTIONS(1977), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73220,9 +74373,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1978), 32, + ACTIONS(1975), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -73253,11 +74407,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55268] = 3, + [56126] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1916), 12, + ACTIONS(2017), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73270,9 +74424,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1918), 32, + ACTIONS(2015), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -73303,11 +74458,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55321] = 3, + [56180] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2024), 12, + ACTIONS(2021), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73320,9 +74475,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2026), 32, + ACTIONS(2019), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -73353,11 +74509,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55374] = 3, + [56234] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1992), 12, + ACTIONS(1981), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73370,9 +74526,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1990), 32, + ACTIONS(1979), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -73403,60 +74560,112 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55427] = 21, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, + [56288] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2025), 12, + sym__dedent, sym_string_start, - ACTIONS(1427), 1, + anon_sym_LPAREN, anon_sym_STAR, - ACTIONS(1868), 1, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(2023), 33, + anon_sym_import, + anon_sym_from, + anon_sym_lazy, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + 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(1870), 1, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [56342] = 21, + ACTIONS(296), 1, + anon_sym_LBRACE, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(2027), 1, + sym_identifier, + ACTIONS(2029), 1, anon_sym_LPAREN, - ACTIONS(1876), 1, + ACTIONS(2033), 1, + anon_sym_STAR, + ACTIONS(2037), 1, anon_sym_LBRACK, - ACTIONS(1878), 1, + ACTIONS(2039), 1, + anon_sym_RBRACK, + ACTIONS(2041), 1, anon_sym_await, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1609), 1, + STATE(1606), 1, sym_list_splat_pattern, - STATE(1620), 1, + STATE(1629), 1, sym_primary_expression, - STATE(2412), 1, + STATE(2591), 1, sym_pattern, - STATE(2640), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1874), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, + STATE(1607), 2, sym_attribute, sym_subscript, - STATE(1634), 2, + STATE(2527), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1872), 3, + ACTIONS(2031), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(2035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -73471,13 +74680,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [55516] = 3, + [56432] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1924), 12, - sym__dedent, + ACTIONS(1985), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73488,9 +74697,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1926), 32, + ACTIONS(1983), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -73521,11 +74731,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55569] = 3, + [56486] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2010), 12, + ACTIONS(1989), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73538,9 +74748,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2008), 32, + ACTIONS(1987), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -73571,81 +74782,64 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55622] = 21, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, + [56540] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2043), 12, sym_string_start, - ACTIONS(1818), 1, - sym_identifier, - ACTIONS(1820), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1824), 1, anon_sym_STAR, - ACTIONS(1830), 1, anon_sym_LBRACK, - ACTIONS(1832), 1, - anon_sym_await, - ACTIONS(2028), 1, - anon_sym_RPAREN, - STATE(1017), 1, - sym_string, - STATE(1596), 1, - sym_list_splat_pattern, - STATE(1622), 1, - sym_primary_expression, - STATE(2563), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(1828), 2, - anon_sym_match, - anon_sym_type, - STATE(1597), 2, - sym_attribute, - sym_subscript, - STATE(2578), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(296), 3, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1826), 3, + sym_ellipsis, + sym_float, + ACTIONS(2045), 33, + anon_sym_import, + anon_sym_from, + anon_sym_lazy, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(304), 4, + 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, - STATE(1348), 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, - [55711] = 3, + [56594] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1846), 12, + ACTIONS(1899), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73656,9 +74850,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1844), 32, + ACTIONS(1901), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -73689,13 +74884,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55764] = 3, + [56648] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2022), 12, + ACTIONS(2049), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73706,9 +74901,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2020), 32, + ACTIONS(2047), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -73739,11 +74935,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55817] = 3, + [56702] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2032), 12, + ACTIONS(2053), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73756,9 +74952,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2030), 32, + ACTIONS(2051), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -73789,11 +74986,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55870] = 3, + [56756] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1900), 12, + ACTIONS(2057), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73806,9 +75003,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1902), 32, + ACTIONS(2055), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -73839,79 +75037,62 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55923] = 21, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(1868), 1, - sym_identifier, - ACTIONS(1870), 1, - anon_sym_LPAREN, - ACTIONS(1876), 1, - anon_sym_LBRACK, - ACTIONS(1878), 1, - anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1609), 1, - sym_list_splat_pattern, - STATE(1620), 1, - sym_primary_expression, - STATE(2471), 1, - sym_pattern, - STATE(2760), 1, - sym_pattern_list, + [56810] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(1874), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, - sym_attribute, - sym_subscript, - STATE(1634), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(296), 3, + ACTIONS(2061), 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(1872), 3, + sym_ellipsis, + sym_float, + ACTIONS(2059), 33, + anon_sym_import, + anon_sym_from, + anon_sym_lazy, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(304), 4, + 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, - STATE(1348), 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, - [56012] = 3, + [56864] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2034), 12, + ACTIONS(1993), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73924,9 +75105,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2036), 32, + ACTIONS(1991), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -73957,11 +75139,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56065] = 3, + [56918] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2038), 12, + ACTIONS(1997), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73974,9 +75156,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2040), 32, + ACTIONS(1995), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -74007,11 +75190,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56118] = 3, + [56972] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2042), 12, + ACTIONS(2001), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74024,9 +75207,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2044), 32, + ACTIONS(1999), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -74057,11 +75241,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56171] = 3, + [57026] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2046), 12, + ACTIONS(2005), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74074,9 +75258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2048), 32, + ACTIONS(2003), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -74107,13 +75292,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56224] = 3, + [57080] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1495), 12, - sym__dedent, + ACTIONS(2009), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74124,9 +75309,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1493), 32, + ACTIONS(2007), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -74157,13 +75343,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56277] = 3, + [57134] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2050), 12, + ACTIONS(2065), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74174,9 +75360,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2052), 32, + ACTIONS(2063), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -74207,11 +75394,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56330] = 3, + [57188] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2000), 12, + ACTIONS(2069), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74224,9 +75411,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2002), 32, + ACTIONS(2067), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -74257,81 +75445,64 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56383] = 21, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, + [57242] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2073), 12, + sym__dedent, sym_string_start, - ACTIONS(2028), 1, - anon_sym_RBRACK, - ACTIONS(2054), 1, - sym_identifier, - ACTIONS(2056), 1, anon_sym_LPAREN, - ACTIONS(2058), 1, anon_sym_STAR, - ACTIONS(2064), 1, anon_sym_LBRACK, - ACTIONS(2066), 1, - anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1604), 1, - sym_list_splat_pattern, - STATE(1627), 1, - sym_primary_expression, - STATE(2584), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(2062), 2, - anon_sym_match, - anon_sym_type, - STATE(1605), 2, - sym_attribute, - sym_subscript, - STATE(2525), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(296), 3, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2060), 3, + sym_ellipsis, + sym_float, + ACTIONS(2071), 33, + anon_sym_import, + anon_sym_from, + anon_sym_lazy, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(304), 4, + 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, - STATE(1348), 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, - [56472] = 3, + [57296] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2032), 12, + ACTIONS(1506), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74342,9 +75513,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2030), 32, + ACTIONS(1504), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -74375,11 +75547,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56525] = 3, + [57350] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2068), 12, + ACTIONS(2013), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74392,9 +75564,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2070), 32, + ACTIONS(2011), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -74425,11 +75598,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56578] = 3, + [57404] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1974), 12, + ACTIONS(1887), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74442,9 +75615,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1976), 32, + ACTIONS(1889), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -74475,11 +75649,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56631] = 3, + [57458] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1914), 12, + ACTIONS(2017), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74492,9 +75666,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1912), 32, + ACTIONS(2015), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -74525,11 +75700,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56684] = 3, + [57512] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1882), 12, + ACTIONS(2021), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74542,9 +75717,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1880), 32, + ACTIONS(2019), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -74575,11 +75751,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56737] = 3, + [57566] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1898), 12, + ACTIONS(2025), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74592,9 +75768,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1896), 32, + ACTIONS(2023), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -74625,13 +75802,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56790] = 3, + [57620] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2034), 12, - sym__dedent, + ACTIONS(2075), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74642,9 +75819,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2036), 32, + ACTIONS(2077), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -74675,11 +75853,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56843] = 3, + [57674] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2038), 12, + ACTIONS(2043), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74692,9 +75870,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2040), 32, + ACTIONS(2045), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -74725,13 +75904,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56896] = 3, + [57728] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1998), 12, + ACTIONS(2081), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74742,9 +75921,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1996), 32, + ACTIONS(2079), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -74775,13 +75955,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56949] = 3, + [57782] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2014), 12, + ACTIONS(2085), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74792,9 +75972,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2012), 32, + ACTIONS(2083), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -74825,11 +76006,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57002] = 3, + [57836] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2072), 12, + ACTIONS(2057), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74842,9 +76023,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2074), 32, + ACTIONS(2055), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -74875,13 +76057,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57055] = 3, + [57890] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2042), 12, - sym__dedent, + ACTIONS(2061), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74892,9 +76074,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2044), 32, + ACTIONS(2059), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -74925,60 +76108,61 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57108] = 21, - ACTIONS(291), 1, + [57944] = 21, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(1868), 1, + ACTIONS(1829), 1, sym_identifier, - ACTIONS(1870), 1, + ACTIONS(1831), 1, anon_sym_LPAREN, - ACTIONS(1876), 1, + ACTIONS(1837), 1, + anon_sym_STAR, + ACTIONS(1841), 1, anon_sym_LBRACK, - ACTIONS(1878), 1, + ACTIONS(1843), 1, anon_sym_await, - STATE(1017), 1, + ACTIONS(2039), 1, + anon_sym_RPAREN, + STATE(1032), 1, sym_string, - STATE(1609), 1, + STATE(1598), 1, sym_list_splat_pattern, - STATE(1620), 1, + STATE(1624), 1, sym_primary_expression, - STATE(2251), 1, + STATE(2576), 1, sym_pattern, - STATE(2741), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1874), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, + STATE(1599), 2, sym_attribute, sym_subscript, - STATE(1634), 2, + STATE(2585), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1872), 3, + ACTIONS(1835), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1839), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -74993,110 +76177,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [57197] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2046), 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(2048), 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, - [57250] = 21, - ACTIONS(291), 1, + [58034] = 21, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, - ACTIONS(1868), 1, + ACTIONS(1855), 1, sym_identifier, - ACTIONS(1870), 1, + ACTIONS(1857), 1, anon_sym_LPAREN, - ACTIONS(1876), 1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(1878), 1, + ACTIONS(1865), 1, anon_sym_await, - ACTIONS(2076), 1, - anon_sym_in, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1609), 1, + STATE(1612), 1, sym_list_splat_pattern, - STATE(1620), 1, + STATE(1622), 1, sym_primary_expression, - STATE(1629), 1, + STATE(2384), 1, sym_pattern, + STATE(2667), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1874), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, + STATE(1613), 2, sym_attribute, sym_subscript, - STATE(1634), 2, + STATE(1637), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1872), 3, + ACTIONS(1859), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1861), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75111,11 +76246,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [57339] = 3, + [58124] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1922), 12, + ACTIONS(2065), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -75128,9 +76263,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1920), 32, + ACTIONS(2063), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -75161,81 +76297,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57392] = 21, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(1994), 1, - anon_sym_RBRACK, - ACTIONS(2054), 1, - sym_identifier, - ACTIONS(2056), 1, - anon_sym_LPAREN, - ACTIONS(2058), 1, - anon_sym_STAR, - ACTIONS(2064), 1, - anon_sym_LBRACK, - ACTIONS(2066), 1, - anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1604), 1, - sym_list_splat_pattern, - STATE(1627), 1, - sym_primary_expression, - STATE(2584), 1, - sym_pattern, + [58178] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(2062), 2, - anon_sym_match, - anon_sym_type, - STATE(1605), 2, - sym_attribute, - sym_subscript, - STATE(2525), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2060), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1348), 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, - [57481] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2050), 12, - sym__dedent, + ACTIONS(2069), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -75246,9 +76314,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2052), 32, + ACTIONS(2067), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -75279,13 +76348,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57534] = 3, + [58232] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2072), 12, - sym__dedent, + ACTIONS(2073), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -75296,9 +76365,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2074), 32, + ACTIONS(2071), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -75329,13 +76399,82 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57587] = 3, + [58286] = 21, + ACTIONS(296), 1, + anon_sym_LBRACE, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(1919), 1, + anon_sym_RBRACK, + ACTIONS(2027), 1, + sym_identifier, + ACTIONS(2029), 1, + anon_sym_LPAREN, + ACTIONS(2033), 1, + anon_sym_STAR, + ACTIONS(2037), 1, + anon_sym_LBRACK, + ACTIONS(2041), 1, + anon_sym_await, + STATE(1032), 1, + sym_string, + STATE(1606), 1, + sym_list_splat_pattern, + STATE(1629), 1, + sym_primary_expression, + STATE(2591), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2004), 12, - sym__dedent, + ACTIONS(307), 2, + sym_ellipsis, + sym_float, + STATE(1607), 2, + sym_attribute, + sym_subscript, + STATE(2527), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(2031), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(2035), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(309), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1422), 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, + [58376] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1873), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -75346,9 +76485,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2006), 32, + ACTIONS(1871), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -75379,13 +76519,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57640] = 3, + [58430] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2016), 12, - sym__dedent, + ACTIONS(2081), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -75396,9 +76536,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2018), 32, + ACTIONS(2079), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -75429,11 +76570,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57693] = 3, + [58484] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1858), 12, + ACTIONS(2085), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -75446,9 +76587,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1856), 32, + ACTIONS(2083), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -75479,13 +76621,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57746] = 3, + [58538] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1936), 12, - sym__dedent, + ACTIONS(2049), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -75496,9 +76638,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1938), 32, + ACTIONS(2047), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -75529,13 +76672,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57799] = 3, + [58592] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1982), 12, - sym__dedent, + ACTIONS(1881), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -75546,9 +76689,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1984), 32, + ACTIONS(1879), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -75579,13 +76723,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57852] = 3, + [58646] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1505), 12, - sym__dedent, + ACTIONS(2053), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -75596,9 +76740,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1507), 32, + ACTIONS(2051), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -75629,199 +76774,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57905] = 21, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(1868), 1, - sym_identifier, - ACTIONS(1870), 1, - anon_sym_LPAREN, - ACTIONS(1876), 1, - anon_sym_LBRACK, - ACTIONS(1878), 1, - anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1609), 1, - sym_list_splat_pattern, - STATE(1620), 1, - sym_primary_expression, - STATE(2445), 1, - sym_pattern, - STATE(2680), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(1874), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, - sym_attribute, - sym_subscript, - STATE(1634), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1872), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1348), 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, - [57994] = 3, + [58700] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1986), 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(1988), 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, - [58047] = 21, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(1868), 1, - sym_identifier, - ACTIONS(1870), 1, - anon_sym_LPAREN, - ACTIONS(1876), 1, - anon_sym_LBRACK, - ACTIONS(1878), 1, - anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1609), 1, - sym_list_splat_pattern, - STATE(1620), 1, - sym_primary_expression, - STATE(2448), 1, - sym_pattern, - STATE(2690), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(1874), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, - sym_attribute, - sym_subscript, - STATE(1634), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1872), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1348), 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, - [58136] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1940), 12, - sym__dedent, + ACTIONS(1885), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -75832,9 +76791,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1942), 32, + ACTIONS(1883), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -75865,13 +76825,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [58189] = 3, + [58754] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2068), 12, - sym__dedent, + ACTIONS(1506), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -75882,9 +76842,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2070), 32, + ACTIONS(1504), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -75915,60 +76876,61 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [58242] = 21, - ACTIONS(291), 1, + [58808] = 21, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, - ACTIONS(1868), 1, + ACTIONS(1855), 1, sym_identifier, - ACTIONS(1870), 1, + ACTIONS(1857), 1, anon_sym_LPAREN, - ACTIONS(1876), 1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(1878), 1, + ACTIONS(1865), 1, anon_sym_await, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1609), 1, + STATE(1612), 1, sym_list_splat_pattern, - STATE(1620), 1, + STATE(1622), 1, sym_primary_expression, - STATE(2461), 1, + STATE(2447), 1, sym_pattern, - STATE(2716), 1, + STATE(2684), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1874), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, + STATE(1613), 2, sym_attribute, sym_subscript, - STATE(1634), 2, + STATE(1637), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1872), 3, + ACTIONS(1859), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1861), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75983,60 +76945,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58331] = 21, - ACTIONS(291), 1, + [58898] = 21, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, - ACTIONS(1868), 1, + ACTIONS(1855), 1, sym_identifier, - ACTIONS(1870), 1, + ACTIONS(1857), 1, anon_sym_LPAREN, - ACTIONS(1876), 1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(1878), 1, + ACTIONS(1865), 1, anon_sym_await, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1609), 1, + STATE(1612), 1, sym_list_splat_pattern, - STATE(1620), 1, + STATE(1622), 1, sym_primary_expression, - STATE(2462), 1, + STATE(2449), 1, sym_pattern, - STATE(2718), 1, + STATE(2694), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1874), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, + STATE(1613), 2, sym_attribute, sym_subscript, - STATE(1634), 2, + STATE(1637), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1872), 3, + ACTIONS(1859), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1861), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76051,110 +77014,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58420] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1848), 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(1850), 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, - [58473] = 21, - ACTIONS(291), 1, + [58988] = 21, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, - ACTIONS(1868), 1, + ACTIONS(1855), 1, sym_identifier, - ACTIONS(1870), 1, + ACTIONS(1857), 1, anon_sym_LPAREN, - ACTIONS(1876), 1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(1878), 1, + ACTIONS(1865), 1, anon_sym_await, - STATE(1017), 1, + ACTIONS(2087), 1, + anon_sym_in, + STATE(1032), 1, sym_string, - STATE(1609), 1, + STATE(1612), 1, sym_list_splat_pattern, - STATE(1620), 1, + STATE(1622), 1, sym_primary_expression, - STATE(2488), 1, + STATE(1647), 1, sym_pattern, - STATE(2779), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1874), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, + STATE(1613), 2, sym_attribute, sym_subscript, - STATE(1634), 2, + STATE(1637), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1872), 3, + ACTIONS(1859), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1861), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76169,13 +77083,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58562] = 3, + [59078] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1968), 12, + ACTIONS(2075), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -76186,9 +77100,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1966), 32, + ACTIONS(2077), 33, anon_sym_import, anon_sym_from, + anon_sym_lazy, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -76219,58 +77134,61 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [58615] = 20, - ACTIONS(291), 1, + [59132] = 21, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(2054), 1, + ACTIONS(1442), 1, + anon_sym_STAR, + ACTIONS(1855), 1, sym_identifier, - ACTIONS(2056), 1, + ACTIONS(1857), 1, anon_sym_LPAREN, - ACTIONS(2058), 1, - anon_sym_STAR, - ACTIONS(2064), 1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(2066), 1, + ACTIONS(1865), 1, anon_sym_await, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1604), 1, + STATE(1612), 1, sym_list_splat_pattern, - STATE(1627), 1, + STATE(1622), 1, sym_primary_expression, - STATE(2584), 1, + STATE(2462), 1, sym_pattern, + STATE(2720), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(2062), 2, - anon_sym_match, - anon_sym_type, - STATE(1605), 2, + STATE(1613), 2, sym_attribute, sym_subscript, - STATE(2525), 2, + STATE(1637), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2060), 3, + ACTIONS(1859), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1861), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76285,58 +77203,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58701] = 20, - ACTIONS(291), 1, + [59222] = 21, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(1818), 1, + ACTIONS(1442), 1, + anon_sym_STAR, + ACTIONS(1855), 1, sym_identifier, - ACTIONS(1820), 1, + ACTIONS(1857), 1, anon_sym_LPAREN, - ACTIONS(1824), 1, - anon_sym_STAR, - ACTIONS(1830), 1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(1832), 1, + ACTIONS(1865), 1, anon_sym_await, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1596), 1, + STATE(1612), 1, sym_list_splat_pattern, STATE(1622), 1, sym_primary_expression, - STATE(2563), 1, + STATE(2245), 1, sym_pattern, + STATE(2722), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1828), 2, - anon_sym_match, - anon_sym_type, - STATE(1597), 2, + STATE(1613), 2, sym_attribute, sym_subscript, - STATE(2578), 2, + STATE(1637), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1826), 3, + ACTIONS(1859), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1861), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76351,58 +77272,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58787] = 20, - ACTIONS(17), 1, - anon_sym_STAR, - ACTIONS(291), 1, + [59312] = 21, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(955), 1, + ACTIONS(1442), 1, + anon_sym_STAR, + ACTIONS(1855), 1, sym_identifier, - ACTIONS(959), 1, + ACTIONS(1857), 1, anon_sym_LPAREN, - ACTIONS(967), 1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(969), 1, + ACTIONS(1865), 1, anon_sym_await, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1359), 1, + STATE(1612), 1, sym_list_splat_pattern, - STATE(1592), 1, - sym_pattern, - STATE(1615), 1, + STATE(1622), 1, sym_primary_expression, + STATE(2280), 1, + sym_pattern, + STATE(2609), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(965), 2, - anon_sym_match, - anon_sym_type, - STATE(1362), 2, + STATE(1613), 2, sym_attribute, sym_subscript, - STATE(1594), 2, + STATE(1637), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(963), 3, + ACTIONS(1859), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1861), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76417,58 +77341,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58873] = 20, - ACTIONS(291), 1, + [59402] = 20, + ACTIONS(19), 1, + anon_sym_STAR, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(1868), 1, + ACTIONS(962), 1, sym_identifier, - ACTIONS(1870), 1, + ACTIONS(966), 1, anon_sym_LPAREN, - ACTIONS(1876), 1, + ACTIONS(974), 1, anon_sym_LBRACK, - ACTIONS(1878), 1, + ACTIONS(976), 1, anon_sym_await, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1609), 1, + STATE(1335), 1, sym_list_splat_pattern, - STATE(1620), 1, - sym_primary_expression, - STATE(1629), 1, + STATE(1595), 1, sym_pattern, + STATE(1617), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1874), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, + STATE(1336), 2, sym_attribute, sym_subscript, - STATE(1634), 2, + STATE(1597), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1872), 3, + ACTIONS(968), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(972), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76483,58 +77408,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58959] = 20, - ACTIONS(291), 1, + [59489] = 20, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1678), 1, sym_identifier, - ACTIONS(1029), 1, + ACTIONS(1680), 1, anon_sym_LPAREN, - ACTIONS(1037), 1, + ACTIONS(1684), 1, + anon_sym_STAR, + ACTIONS(1688), 1, anon_sym_LBRACK, - ACTIONS(1039), 1, + ACTIONS(1690), 1, anon_sym_await, - ACTIONS(2078), 1, - anon_sym_STAR, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1475), 1, + STATE(1577), 1, sym_list_splat_pattern, - STATE(1623), 1, + STATE(1593), 1, sym_primary_expression, - STATE(1629), 1, + STATE(2100), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1035), 2, - anon_sym_match, - anon_sym_type, - STATE(1481), 2, + STATE(1578), 2, sym_attribute, sym_subscript, - STATE(1634), 2, + STATE(2057), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1033), 3, + ACTIONS(1682), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1686), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76549,58 +77475,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59045] = 20, - ACTIONS(291), 1, + [59576] = 20, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(1760), 1, + ACTIONS(2027), 1, sym_identifier, - ACTIONS(1762), 1, + ACTIONS(2029), 1, anon_sym_LPAREN, - ACTIONS(1764), 1, + ACTIONS(2033), 1, anon_sym_STAR, - ACTIONS(1770), 1, + ACTIONS(2037), 1, anon_sym_LBRACK, - ACTIONS(1772), 1, + ACTIONS(2041), 1, anon_sym_await, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1575), 1, + STATE(1606), 1, sym_list_splat_pattern, - STATE(1628), 1, + STATE(1629), 1, sym_primary_expression, - STATE(2097), 1, + STATE(2591), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(1768), 2, - anon_sym_match, - anon_sym_type, - STATE(1574), 2, + STATE(1607), 2, sym_attribute, sym_subscript, - STATE(2044), 2, + STATE(2527), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1766), 3, + ACTIONS(2031), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(2035), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76615,56 +77542,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59131] = 19, - ACTIONS(291), 1, + [59663] = 20, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, - ACTIONS(2080), 1, + ACTIONS(1855), 1, sym_identifier, - ACTIONS(2088), 1, + ACTIONS(1857), 1, + anon_sym_LPAREN, + ACTIONS(1863), 1, + anon_sym_LBRACK, + ACTIONS(1865), 1, anon_sym_await, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1612), 1, sym_list_splat_pattern, - STATE(1620), 1, + STATE(1622), 1, sym_primary_expression, + STATE(1647), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(2082), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2086), 2, - anon_sym_match, - anon_sym_type, - STATE(1600), 2, + STATE(1613), 2, sym_attribute, sym_subscript, - ACTIONS(296), 3, + STATE(1637), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2084), 3, + ACTIONS(1859), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1861), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76679,56 +77609,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59214] = 19, - ACTIONS(291), 1, + [59750] = 20, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(1829), 1, + sym_identifier, + ACTIONS(1831), 1, anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1837), 1, anon_sym_STAR, - ACTIONS(2090), 1, - sym_identifier, - ACTIONS(2096), 1, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1843), 1, anon_sym_await, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1598), 1, sym_list_splat_pattern, - STATE(1622), 1, + STATE(1624), 1, sym_primary_expression, + STATE(2576), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(2082), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2094), 2, - anon_sym_match, - anon_sym_type, - STATE(1590), 2, + STATE(1599), 2, sym_attribute, sym_subscript, - ACTIONS(296), 3, + STATE(2585), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2092), 3, + ACTIONS(1835), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1839), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76743,55 +77676,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59297] = 17, - ACTIONS(713), 1, + [59837] = 20, + ACTIONS(296), 1, + anon_sym_LBRACE, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(1120), 1, + sym_identifier, + ACTIONS(1122), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(1130), 1, anon_sym_LBRACK, - ACTIONS(725), 1, - anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(1132), 1, anon_sym_await, - ACTIONS(731), 1, - sym_string_start, - ACTIONS(1257), 1, + ACTIONS(2089), 1, anon_sym_STAR, - ACTIONS(2098), 1, - anon_sym_not, - STATE(969), 1, + STATE(1032), 1, sym_string, - STATE(994), 1, - sym_primary_expression, - STATE(1268), 1, + STATE(1474), 1, sym_list_splat_pattern, + STATE(1625), 1, + sym_primary_expression, + STATE(1647), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(719), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(727), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(717), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(723), 3, + STATE(1476), 2, + sym_attribute, + sym_subscript, + STATE(1637), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(711), 5, + ACTIONS(1124), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(1128), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(309), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1151), 16, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -76804,55 +77743,124 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59375] = 17, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(767), 1, - anon_sym_LBRACK, - ACTIONS(771), 1, + [59924] = 19, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - anon_sym_await, - ACTIONS(777), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(1269), 1, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(1442), 1, anon_sym_STAR, - ACTIONS(2098), 1, - anon_sym_not, - STATE(1012), 1, + ACTIONS(2091), 1, + sym_identifier, + ACTIONS(2099), 1, + anon_sym_await, + STATE(1032), 1, sym_string, - STATE(1106), 1, - sym_primary_expression, - STATE(1337), 1, + STATE(1361), 1, sym_list_splat_pattern, + STATE(1622), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(773), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, + ACTIONS(2093), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(1602), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(2095), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(2097), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(769), 3, + ACTIONS(309), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1422), 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, + [60008] = 19, + ACTIONS(296), 1, + anon_sym_LBRACE, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(1442), 1, + anon_sym_STAR, + ACTIONS(2101), 1, + sym_identifier, + ACTIONS(2107), 1, + anon_sym_await, + STATE(1032), 1, + sym_string, + STATE(1361), 1, + sym_list_splat_pattern, + STATE(1624), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(307), 2, + sym_ellipsis, + sym_float, + ACTIONS(2093), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(1592), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(2103), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(2105), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(309), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1334), 16, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -76865,51 +77873,52 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59453] = 17, - ACTIONS(291), 1, + [60092] = 17, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(662), 1, + ACTIONS(669), 1, anon_sym_await, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, - ACTIONS(2098), 1, + ACTIONS(2109), 1, anon_sym_not, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1046), 1, + STATE(1129), 1, sym_primary_expression, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(657), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(663), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 5, + ACTIONS(309), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76926,51 +77935,52 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59531] = 17, - ACTIONS(781), 1, + [60171] = 17, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(760), 1, anon_sym_await, - ACTIONS(799), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(1329), 1, + ACTIONS(1344), 1, anon_sym_STAR, - ACTIONS(2098), 1, + ACTIONS(2109), 1, anon_sym_not, - STATE(1068), 1, + STATE(1043), 1, sym_string, - STATE(1157), 1, + STATE(1137), 1, sym_primary_expression, - STATE(1436), 1, + STATE(1325), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(787), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(795), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(785), 3, + ACTIONS(746), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(750), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(791), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(779), 5, + ACTIONS(742), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1439), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76987,116 +77997,52 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59609] = 21, - ACTIONS(2102), 1, - anon_sym_DOT, - ACTIONS(2104), 1, + [60250] = 17, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(2112), 1, - anon_sym_STAR_STAR, - ACTIONS(2114), 1, - anon_sym_EQ, - ACTIONS(2116), 1, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(2122), 1, - anon_sym_PIPE, - ACTIONS(2124), 1, - anon_sym_not, - ACTIONS(2126), 1, - anon_sym_AMP, - ACTIONS(2128), 1, - anon_sym_CARET, - ACTIONS(2130), 1, - anon_sym_is, - STATE(1553), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2106), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2108), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2120), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2132), 2, - anon_sym_LT, - anon_sym_GT, - STATE(873), 2, - sym__not_in, - sym__is_not, - STATE(1101), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2118), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2110), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2100), 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, - [59695] = 17, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(804), 1, anon_sym_await, - ACTIONS(709), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(1315), 1, + ACTIONS(1276), 1, anon_sym_STAR, - ACTIONS(2098), 1, + ACTIONS(2109), 1, anon_sym_not, - STATE(993), 1, + STATE(974), 1, sym_string, - STATE(1060), 1, + STATE(992), 1, sym_primary_expression, - STATE(1384), 1, + STATE(1208), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(697), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(705), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(695), 3, + ACTIONS(790), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(794), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(701), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(689), 5, + ACTIONS(786), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77113,51 +78059,52 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59773] = 17, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(629), 1, + [60329] = 17, + ACTIONS(676), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(641), 1, + ACTIONS(688), 1, + anon_sym_LBRACE, + ACTIONS(692), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(694), 1, + sym_string_start, + ACTIONS(1012), 1, anon_sym_STAR, - ACTIONS(2098), 1, + ACTIONS(2109), 1, anon_sym_not, - STATE(961), 1, + STATE(969), 1, sym_string, - STATE(970), 1, + STATE(1029), 1, sym_primary_expression, - STATE(1077), 1, + STATE(1147), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(690), 2, sym_ellipsis, sym_float, - ACTIONS(635), 2, + ACTIONS(678), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(633), 3, + ACTIONS(682), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(686), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(674), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1085), 16, + STATE(1205), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77174,51 +78121,52 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59851] = 17, - ACTIONS(666), 1, + [60408] = 17, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1250), 1, anon_sym_STAR, - ACTIONS(2098), 1, + ACTIONS(2109), 1, anon_sym_not, - STATE(981), 1, - sym_string, STATE(1035), 1, + sym_string, + STATE(1099), 1, sym_primary_expression, - STATE(1147), 1, + STATE(1370), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(680), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(670), 3, + ACTIONS(722), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(726), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(676), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 5, + ACTIONS(718), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1265), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77235,51 +78183,52 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59929] = 17, - ACTIONS(735), 1, + [60487] = 17, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(782), 1, anon_sym_await, - ACTIONS(753), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(1249), 1, + ACTIONS(1322), 1, anon_sym_STAR, - ACTIONS(2098), 1, + ACTIONS(2109), 1, anon_sym_not, - STATE(973), 1, + STATE(1131), 1, sym_string, - STATE(988), 1, + STATE(1160), 1, sym_primary_expression, - STATE(1231), 1, + STATE(1431), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(741), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(749), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(739), 3, + ACTIONS(768), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(772), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(745), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(733), 5, + ACTIONS(764), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1206), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77296,49 +78245,52 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60007] = 16, - ACTIONS(757), 1, + [60566] = 17, + ACTIONS(69), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + sym_string_start, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(644), 1, anon_sym_LBRACK, - ACTIONS(771), 1, - anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(648), 1, anon_sym_await, - ACTIONS(777), 1, - sym_string_start, - ACTIONS(1269), 1, + ACTIONS(1326), 1, anon_sym_STAR, - STATE(1012), 1, + ACTIONS(2109), 1, + anon_sym_not, + STATE(966), 1, sym_string, - STATE(1106), 1, + STATE(976), 1, sym_primary_expression, - STATE(1337), 1, + STATE(1112), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(773), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(769), 3, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(638), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(642), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(79), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1334), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77355,49 +78307,52 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60082] = 16, - ACTIONS(691), 1, + [60645] = 17, + ACTIONS(698), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(706), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(709), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1315), 1, + ACTIONS(1286), 1, anon_sym_STAR, - STATE(993), 1, + ACTIONS(2109), 1, + anon_sym_not, + STATE(972), 1, sym_string, - STATE(1064), 1, + STATE(1016), 1, sym_primary_expression, - STATE(1384), 1, + STATE(1275), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(697), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(705), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - ACTIONS(695), 3, + ACTIONS(700), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(704), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(701), 3, + ACTIONS(708), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(689), 5, + ACTIONS(696), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77414,49 +78369,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60157] = 16, - ACTIONS(691), 1, + [60724] = 16, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(782), 1, anon_sym_await, - ACTIONS(709), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(1315), 1, + ACTIONS(1322), 1, anon_sym_STAR, - STATE(993), 1, + STATE(1131), 1, sym_string, - STATE(1065), 1, + STATE(1159), 1, sym_primary_expression, - STATE(1384), 1, + STATE(1431), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(697), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(705), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(695), 3, + ACTIONS(768), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(772), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(701), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(689), 5, + ACTIONS(764), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77473,49 +78429,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60232] = 16, - ACTIONS(757), 1, + [60800] = 16, + ACTIONS(676), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(688), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(692), 1, anon_sym_await, - ACTIONS(777), 1, + ACTIONS(694), 1, sym_string_start, - ACTIONS(1269), 1, + ACTIONS(1012), 1, anon_sym_STAR, - STATE(1012), 1, + STATE(969), 1, sym_string, - STATE(1103), 1, + STATE(1034), 1, sym_primary_expression, - STATE(1337), 1, + STATE(1147), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(773), 2, + ACTIONS(690), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, + ACTIONS(678), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(682), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(769), 3, + ACTIONS(686), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(674), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1334), 16, + STATE(1205), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77532,49 +78489,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60307] = 16, - ACTIONS(757), 1, + [60876] = 16, + ACTIONS(676), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(688), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(692), 1, anon_sym_await, - ACTIONS(777), 1, + ACTIONS(694), 1, sym_string_start, - ACTIONS(1269), 1, + ACTIONS(1012), 1, anon_sym_STAR, - STATE(1012), 1, + STATE(969), 1, sym_string, - STATE(1105), 1, + STATE(1042), 1, sym_primary_expression, - STATE(1337), 1, + STATE(1147), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(773), 2, + ACTIONS(690), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, + ACTIONS(678), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(682), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(769), 3, + ACTIONS(686), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(674), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1334), 16, + STATE(1205), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77591,119 +78549,114 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60382] = 21, - ACTIONS(2114), 1, - anon_sym_as, - ACTIONS(2124), 1, - anon_sym_not, - ACTIONS(2134), 1, - anon_sym_DOT, - ACTIONS(2136), 1, + [60952] = 16, + ACTIONS(296), 1, + anon_sym_LBRACE, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(2144), 1, - anon_sym_STAR_STAR, - ACTIONS(2146), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(2152), 1, - anon_sym_PIPE, - ACTIONS(2154), 1, - anon_sym_AMP, - ACTIONS(2156), 1, - anon_sym_CARET, - ACTIONS(2158), 1, - anon_sym_is, - STATE(1562), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(669), 1, + anon_sym_await, + ACTIONS(1442), 1, + anon_sym_STAR, + STATE(1032), 1, + sym_string, + STATE(1074), 1, + sym_primary_expression, + STATE(1361), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2138), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2140), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2150), 2, + ACTIONS(307), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2160), 2, - anon_sym_LT, - anon_sym_GT, - STATE(919), 2, - sym__not_in, - sym__is_not, - STATE(1186), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2148), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2142), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2100), 8, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, + anon_sym_TILDE, + ACTIONS(657), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(663), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [60467] = 18, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(648), 1, + anon_sym_exec, + ACTIONS(309), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1422), 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, + [61028] = 16, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2162), 1, - sym_identifier, - ACTIONS(2168), 1, + ACTIONS(756), 1, + anon_sym_LBRACE, + ACTIONS(760), 1, anon_sym_await, - STATE(1017), 1, + ACTIONS(762), 1, + sym_string_start, + ACTIONS(1344), 1, + anon_sym_STAR, + STATE(1043), 1, sym_string, - STATE(1416), 1, - sym_list_splat_pattern, - STATE(1621), 1, + STATE(1134), 1, sym_primary_expression, + STATE(1325), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(2166), 2, + ACTIONS(746), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - STATE(1081), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2164), 3, + ACTIONS(750), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(754), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(742), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -77716,49 +78669,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60546] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(629), 1, + [61104] = 16, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(641), 1, + ACTIONS(756), 1, + anon_sym_LBRACE, + ACTIONS(760), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(762), 1, + sym_string_start, + ACTIONS(1344), 1, anon_sym_STAR, - STATE(961), 1, + STATE(1043), 1, sym_string, - STATE(984), 1, + STATE(1135), 1, sym_primary_expression, - STATE(1077), 1, + STATE(1325), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(635), 2, + ACTIONS(746), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(633), 3, + ACTIONS(750), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(754), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(742), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1085), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77775,49 +78729,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60621] = 16, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(648), 1, + [61180] = 16, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(662), 1, + ACTIONS(756), 1, + anon_sym_LBRACE, + ACTIONS(760), 1, anon_sym_await, - ACTIONS(1427), 1, + ACTIONS(762), 1, + sym_string_start, + ACTIONS(1344), 1, anon_sym_STAR, - STATE(1017), 1, + STATE(1043), 1, sym_string, - STATE(1122), 1, + STATE(1137), 1, sym_primary_expression, - STATE(1416), 1, + STATE(1325), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, + ACTIONS(746), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(750), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 5, + ACTIONS(754), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(742), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77834,49 +78789,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60696] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(629), 1, + [61256] = 16, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(641), 1, + ACTIONS(756), 1, + anon_sym_LBRACE, + ACTIONS(760), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(762), 1, + sym_string_start, + ACTIONS(1344), 1, anon_sym_STAR, - STATE(961), 1, + STATE(1043), 1, sym_string, - STATE(970), 1, + STATE(1140), 1, sym_primary_expression, - STATE(1077), 1, + STATE(1325), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(635), 2, + ACTIONS(746), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(633), 3, + ACTIONS(750), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(754), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(742), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1085), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77893,49 +78849,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60771] = 16, - ACTIONS(735), 1, + [61332] = 16, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(760), 1, anon_sym_await, - ACTIONS(753), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(1249), 1, + ACTIONS(1344), 1, anon_sym_STAR, - STATE(973), 1, + STATE(1043), 1, sym_string, - STATE(1001), 1, + STATE(1073), 1, sym_primary_expression, - STATE(1231), 1, + STATE(1325), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(741), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(749), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(739), 3, + ACTIONS(746), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(750), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(745), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(733), 5, + ACTIONS(742), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1206), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77952,49 +78909,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60846] = 16, - ACTIONS(735), 1, + [61408] = 16, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(756), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(760), 1, anon_sym_await, - ACTIONS(753), 1, + ACTIONS(762), 1, sym_string_start, - ACTIONS(1249), 1, + ACTIONS(1344), 1, anon_sym_STAR, - STATE(973), 1, + STATE(1043), 1, sym_string, - STATE(1003), 1, + STATE(1109), 1, sym_primary_expression, - STATE(1231), 1, + STATE(1325), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(741), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(749), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(739), 3, + ACTIONS(746), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(750), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(745), 3, + ACTIONS(754), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(733), 5, + ACTIONS(742), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1206), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78011,55 +78969,54 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60921] = 18, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(648), 1, + [61484] = 16, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2170), 1, - sym_identifier, - ACTIONS(2176), 1, + ACTIONS(756), 1, + anon_sym_LBRACE, + ACTIONS(760), 1, anon_sym_await, - STATE(1017), 1, + ACTIONS(762), 1, + sym_string_start, + ACTIONS(1344), 1, + anon_sym_STAR, + STATE(1043), 1, sym_string, - STATE(1416), 1, - sym_list_splat_pattern, - STATE(1626), 1, + STATE(1076), 1, sym_primary_expression, + STATE(1325), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(2174), 2, + ACTIONS(746), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - STATE(1456), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2172), 3, + ACTIONS(750), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(754), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(742), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -78072,49 +79029,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61000] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(629), 1, + [61560] = 16, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(641), 1, + ACTIONS(756), 1, + anon_sym_LBRACE, + ACTIONS(760), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(762), 1, + sym_string_start, + ACTIONS(1344), 1, anon_sym_STAR, - STATE(961), 1, + STATE(1043), 1, sym_string, - STATE(972), 1, - sym_primary_expression, STATE(1077), 1, + sym_primary_expression, + STATE(1325), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(635), 2, + ACTIONS(746), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(633), 3, + ACTIONS(750), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(754), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(742), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1085), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78131,49 +79089,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61075] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(629), 1, + [61636] = 16, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(641), 1, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(1250), 1, anon_sym_STAR, - STATE(961), 1, + STATE(1035), 1, sym_string, - STATE(974), 1, + STATE(1099), 1, sym_primary_expression, - STATE(1077), 1, + STATE(1370), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(635), 2, + ACTIONS(722), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(633), 3, + ACTIONS(726), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(732), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(718), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1085), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78190,49 +79149,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61150] = 16, - ACTIONS(67), 1, + [61712] = 16, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(83), 1, sym_string_start, - ACTIONS(629), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(644), 1, anon_sym_LBRACK, - ACTIONS(641), 1, + ACTIONS(648), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(1326), 1, anon_sym_STAR, - STATE(961), 1, + STATE(966), 1, sym_string, - STATE(975), 1, + STATE(980), 1, sym_primary_expression, - STATE(1077), 1, + STATE(1112), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(635), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(65), 3, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(633), 3, + ACTIONS(638), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(642), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(79), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1085), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78249,49 +79209,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61225] = 16, - ACTIONS(735), 1, + [61788] = 16, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(753), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(1249), 1, + ACTIONS(1250), 1, anon_sym_STAR, - STATE(973), 1, + STATE(1035), 1, sym_string, - STATE(989), 1, + STATE(1085), 1, sym_primary_expression, - STATE(1231), 1, + STATE(1370), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(741), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(749), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(739), 3, + ACTIONS(722), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(726), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(745), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(733), 5, + ACTIONS(718), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1206), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78308,49 +79269,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61300] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(629), 1, + [61864] = 16, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(641), 1, + ACTIONS(778), 1, + anon_sym_LBRACE, + ACTIONS(782), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(784), 1, + sym_string_start, + ACTIONS(1322), 1, anon_sym_STAR, - STATE(961), 1, + STATE(1131), 1, sym_string, - STATE(979), 1, + STATE(1158), 1, sym_primary_expression, - STATE(1077), 1, + STATE(1431), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(635), 2, + ACTIONS(768), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(633), 3, + ACTIONS(772), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(776), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(764), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1085), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78367,49 +79329,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61375] = 16, - ACTIONS(67), 1, + [61940] = 16, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(629), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(641), 1, + ACTIONS(669), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(961), 1, + STATE(1032), 1, sym_string, - STATE(983), 1, + STATE(1061), 1, sym_primary_expression, - STATE(1077), 1, + STATE(1361), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(635), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(65), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(633), 3, + ACTIONS(657), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(663), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(309), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1085), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78426,49 +79389,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61450] = 16, - ACTIONS(781), 1, + [62016] = 16, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(782), 1, anon_sym_await, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1155), 1, + STATE(1160), 1, sym_primary_expression, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(787), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(785), 3, + ACTIONS(768), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(772), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(779), 5, + ACTIONS(764), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78485,49 +79449,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61525] = 16, - ACTIONS(757), 1, + [62092] = 16, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(782), 1, anon_sym_await, - ACTIONS(777), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(1269), 1, + ACTIONS(1322), 1, anon_sym_STAR, - STATE(1012), 1, + STATE(1131), 1, sym_string, - STATE(1107), 1, + STATE(1161), 1, sym_primary_expression, - STATE(1337), 1, + STATE(1431), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(773), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, + ACTIONS(768), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(772), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(769), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(764), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1334), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78544,49 +79509,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61600] = 16, - ACTIONS(781), 1, + [62168] = 16, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(782), 1, anon_sym_await, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1156), 1, + STATE(1162), 1, sym_primary_expression, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(787), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(785), 3, + ACTIONS(768), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(772), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(779), 5, + ACTIONS(764), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78603,49 +79569,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61675] = 16, - ACTIONS(781), 1, + [62244] = 16, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(782), 1, anon_sym_await, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1157), 1, + STATE(1163), 1, sym_primary_expression, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(787), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(785), 3, + ACTIONS(768), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(772), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(779), 5, + ACTIONS(764), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78662,49 +79629,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61750] = 16, - ACTIONS(757), 1, + [62320] = 16, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(782), 1, anon_sym_await, - ACTIONS(777), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(1269), 1, + ACTIONS(1322), 1, anon_sym_STAR, - STATE(1012), 1, + STATE(1131), 1, sym_string, - STATE(1119), 1, + STATE(1164), 1, sym_primary_expression, - STATE(1337), 1, + STATE(1431), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(773), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, + ACTIONS(768), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(772), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(769), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(764), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1334), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78721,49 +79689,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61825] = 16, - ACTIONS(781), 1, + [62396] = 16, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(778), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(782), 1, anon_sym_await, - ACTIONS(799), 1, + ACTIONS(784), 1, sym_string_start, - ACTIONS(1329), 1, + ACTIONS(1322), 1, anon_sym_STAR, - STATE(1068), 1, + STATE(1131), 1, sym_string, - STATE(1158), 1, + STATE(1165), 1, sym_primary_expression, - STATE(1436), 1, + STATE(1431), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(787), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(795), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(785), 3, + ACTIONS(768), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(772), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(791), 3, + ACTIONS(776), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(779), 5, + ACTIONS(764), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1439), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78780,49 +79749,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61900] = 16, - ACTIONS(757), 1, + [62472] = 16, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(777), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(1269), 1, + ACTIONS(1250), 1, anon_sym_STAR, - STATE(1012), 1, + STATE(1035), 1, sym_string, - STATE(1121), 1, + STATE(1111), 1, sym_primary_expression, - STATE(1337), 1, + STATE(1370), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(773), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, + ACTIONS(722), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(726), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(769), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(718), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1334), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78839,49 +79809,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61975] = 16, - ACTIONS(757), 1, + [62548] = 16, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(777), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(1269), 1, + ACTIONS(1250), 1, anon_sym_STAR, - STATE(1012), 1, + STATE(1035), 1, sym_string, - STATE(1123), 1, + STATE(1116), 1, sym_primary_expression, - STATE(1337), 1, + STATE(1370), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(773), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, + ACTIONS(722), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(726), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(769), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(718), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1334), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78898,49 +79869,110 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62050] = 16, - ACTIONS(757), 1, + [62624] = 16, + ACTIONS(69), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + sym_string_start, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(644), 1, anon_sym_LBRACK, - ACTIONS(771), 1, - anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(648), 1, anon_sym_await, - ACTIONS(777), 1, - sym_string_start, - ACTIONS(1269), 1, + ACTIONS(1326), 1, anon_sym_STAR, - STATE(1012), 1, + STATE(966), 1, sym_string, - STATE(1125), 1, + STATE(982), 1, sym_primary_expression, - STATE(1337), 1, + STATE(1112), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(773), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, + ACTIONS(67), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(638), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(642), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(769), 3, + ACTIONS(79), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1088), 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, + [62700] = 16, + ACTIONS(69), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + sym_string_start, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(644), 1, + anon_sym_LBRACK, + ACTIONS(648), 1, + anon_sym_await, + ACTIONS(1326), 1, + anon_sym_STAR, + STATE(966), 1, + sym_string, + STATE(983), 1, + sym_primary_expression, + STATE(1112), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(77), 2, + sym_ellipsis, + sym_float, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(638), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(642), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(79), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1334), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78957,49 +79989,112 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62125] = 16, - ACTIONS(781), 1, + [62776] = 18, + ACTIONS(296), 1, + anon_sym_LBRACE, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(1442), 1, + anon_sym_STAR, + ACTIONS(2111), 1, + sym_identifier, + ACTIONS(2117), 1, + anon_sym_await, + STATE(1032), 1, + sym_string, + STATE(1361), 1, + sym_list_splat_pattern, + STATE(1622), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(307), 2, + sym_ellipsis, + sym_float, + STATE(1371), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(2113), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(2115), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(309), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1422), 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, + [62856] = 16, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(799), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(1329), 1, + ACTIONS(1250), 1, anon_sym_STAR, - STATE(1068), 1, + STATE(1035), 1, sym_string, - STATE(1159), 1, + STATE(1124), 1, sym_primary_expression, - STATE(1436), 1, + STATE(1370), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(787), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(795), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(785), 3, + ACTIONS(722), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(726), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(791), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(779), 5, + ACTIONS(718), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1439), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79016,49 +80111,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62200] = 16, - ACTIONS(781), 1, + [62932] = 16, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(799), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(1329), 1, + ACTIONS(1250), 1, anon_sym_STAR, - STATE(1068), 1, + STATE(1035), 1, sym_string, - STATE(1160), 1, + STATE(1118), 1, sym_primary_expression, - STATE(1436), 1, + STATE(1370), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(787), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(795), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(785), 3, + ACTIONS(722), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(726), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(791), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(779), 5, + ACTIONS(718), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1439), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79075,53 +80171,54 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62275] = 18, - ACTIONS(291), 1, + [63008] = 18, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, - ACTIONS(2178), 1, + ACTIONS(2119), 1, sym_identifier, - ACTIONS(2184), 1, + ACTIONS(2125), 1, anon_sym_await, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1624), 1, + STATE(1623), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(2182), 2, - anon_sym_match, - anon_sym_type, - STATE(1145), 2, + STATE(1050), 2, sym_attribute, sym_subscript, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2180), 3, + ACTIONS(2121), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(2123), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -79136,53 +80233,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62354] = 16, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [63088] = 18, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(797), 1, - anon_sym_await, - ACTIONS(799), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(1329), 1, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(1068), 1, + ACTIONS(2127), 1, + sym_identifier, + ACTIONS(2133), 1, + anon_sym_await, + STATE(1032), 1, sym_string, - STATE(1161), 1, - sym_primary_expression, - STATE(1436), 1, + STATE(1361), 1, sym_list_splat_pattern, + STATE(1624), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(787), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(795), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(785), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(791), 3, + STATE(1589), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(779), 5, + ACTIONS(2129), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(2131), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(309), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1439), 16, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -79195,49 +80295,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62429] = 16, - ACTIONS(713), 1, + [63168] = 16, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(1257), 1, + ACTIONS(1250), 1, anon_sym_STAR, - STATE(969), 1, + STATE(1035), 1, sym_string, - STATE(987), 1, + STATE(1097), 1, sym_primary_expression, - STATE(1268), 1, + STATE(1370), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(719), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(727), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(717), 3, + ACTIONS(722), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(726), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(723), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(711), 5, + ACTIONS(718), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1151), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79254,49 +80355,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62504] = 16, - ACTIONS(781), 1, + [63244] = 16, + ACTIONS(69), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + sym_string_start, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(644), 1, anon_sym_LBRACK, - ACTIONS(793), 1, - anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(648), 1, anon_sym_await, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(1329), 1, + ACTIONS(1326), 1, anon_sym_STAR, - STATE(1068), 1, + STATE(966), 1, sym_string, - STATE(1162), 1, + STATE(973), 1, sym_primary_expression, - STATE(1436), 1, + STATE(1112), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(787), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(795), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(785), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(791), 3, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(779), 5, + ACTIONS(638), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(642), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(79), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1439), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79313,49 +80415,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62579] = 16, - ACTIONS(666), 1, + [63320] = 16, + ACTIONS(69), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + sym_string_start, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(644), 1, anon_sym_LBRACK, - ACTIONS(678), 1, - anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(648), 1, anon_sym_await, - ACTIONS(684), 1, - sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1326), 1, anon_sym_STAR, - STATE(981), 1, + STATE(966), 1, sym_string, - STATE(1022), 1, + STATE(985), 1, sym_primary_expression, - STATE(1147), 1, + STATE(1112), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(680), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(670), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(676), 3, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 5, + ACTIONS(638), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(642), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(79), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1265), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79372,55 +80475,54 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62654] = 18, - ACTIONS(291), 1, + [63396] = 16, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2186), 1, - sym_identifier, - ACTIONS(2192), 1, + ACTIONS(669), 1, anon_sym_await, - STATE(1017), 1, + ACTIONS(1442), 1, + anon_sym_STAR, + STATE(1032), 1, sym_string, - STATE(1416), 1, - sym_list_splat_pattern, - STATE(1625), 1, + STATE(1071), 1, sym_primary_expression, + STATE(1361), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(2190), 2, - anon_sym_match, - anon_sym_type, - STATE(1349), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2188), 3, + ACTIONS(657), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(663), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(309), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -79433,49 +80535,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62733] = 16, - ACTIONS(666), 1, + [63472] = 16, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(804), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1276), 1, anon_sym_STAR, - STATE(981), 1, + STATE(974), 1, sym_string, - STATE(1032), 1, + STATE(990), 1, sym_primary_expression, - STATE(1147), 1, + STATE(1208), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(680), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(670), 3, + ACTIONS(790), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(794), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(676), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 5, + ACTIONS(786), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1265), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79492,49 +80595,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62808] = 16, - ACTIONS(666), 1, + [63548] = 16, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(804), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1276), 1, anon_sym_STAR, - STATE(981), 1, + STATE(974), 1, sym_string, - STATE(1035), 1, + STATE(991), 1, sym_primary_expression, - STATE(1147), 1, + STATE(1208), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(680), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(670), 3, + ACTIONS(790), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(794), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(676), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 5, + ACTIONS(786), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1265), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79551,49 +80655,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62883] = 16, - ACTIONS(666), 1, + [63624] = 16, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(804), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1276), 1, anon_sym_STAR, - STATE(981), 1, + STATE(974), 1, sym_string, - STATE(1037), 1, + STATE(992), 1, sym_primary_expression, - STATE(1147), 1, + STATE(1208), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(680), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(670), 3, + ACTIONS(790), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(794), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(676), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 5, + ACTIONS(786), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1265), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79610,49 +80715,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62958] = 16, - ACTIONS(666), 1, + [63700] = 16, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(804), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1276), 1, anon_sym_STAR, - STATE(981), 1, + STATE(974), 1, sym_string, - STATE(1038), 1, + STATE(994), 1, sym_primary_expression, - STATE(1147), 1, + STATE(1208), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(680), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(670), 3, + ACTIONS(790), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(794), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(676), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 5, + ACTIONS(786), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1265), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79669,49 +80775,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63033] = 16, - ACTIONS(666), 1, + [63776] = 16, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(804), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1276), 1, anon_sym_STAR, - STATE(981), 1, + STATE(974), 1, sym_string, - STATE(1040), 1, + STATE(995), 1, sym_primary_expression, - STATE(1147), 1, + STATE(1208), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(680), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(670), 3, + ACTIONS(790), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(794), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(676), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 5, + ACTIONS(786), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1265), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79728,49 +80835,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63108] = 16, - ACTIONS(666), 1, + [63852] = 16, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(804), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1276), 1, anon_sym_STAR, - STATE(981), 1, + STATE(974), 1, sym_string, - STATE(995), 1, + STATE(996), 1, sym_primary_expression, - STATE(1147), 1, + STATE(1208), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(680), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(670), 3, + ACTIONS(790), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(794), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(676), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 5, + ACTIONS(786), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1265), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79787,110 +80895,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63183] = 18, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(648), 1, + [63928] = 16, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2194), 1, - sym_identifier, - ACTIONS(2200), 1, - anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1416), 1, - sym_list_splat_pattern, - STATE(1620), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(2198), 2, - anon_sym_match, - anon_sym_type, - STATE(1357), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2196), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1348), 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, - [63262] = 16, - ACTIONS(666), 1, - anon_sym_LPAREN, - ACTIONS(674), 1, - anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(804), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1276), 1, anon_sym_STAR, - STATE(981), 1, + STATE(974), 1, sym_string, STATE(998), 1, sym_primary_expression, - STATE(1147), 1, + STATE(1208), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(680), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(670), 3, + ACTIONS(790), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(794), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(676), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 5, + ACTIONS(786), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1265), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79907,49 +80955,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63337] = 16, - ACTIONS(757), 1, + [64004] = 16, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(804), 1, anon_sym_await, - ACTIONS(777), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(1269), 1, + ACTIONS(1276), 1, anon_sym_STAR, - STATE(1012), 1, + STATE(974), 1, sym_string, - STATE(1099), 1, + STATE(999), 1, sym_primary_expression, - STATE(1337), 1, + STATE(1208), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(773), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, + ACTIONS(790), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(794), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(769), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(786), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1334), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79966,110 +81015,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63412] = 18, - ACTIONS(291), 1, + [64080] = 16, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(83), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(644), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2192), 1, + ACTIONS(648), 1, anon_sym_await, - ACTIONS(2202), 1, - sym_identifier, - STATE(1017), 1, + ACTIONS(1326), 1, + anon_sym_STAR, + STATE(966), 1, sym_string, - STATE(1416), 1, - sym_list_splat_pattern, - STATE(1625), 1, + STATE(970), 1, sym_primary_expression, + STATE(1112), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(2190), 2, - anon_sym_match, - anon_sym_type, - STATE(1349), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2188), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1348), 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, - [63491] = 16, - ACTIONS(735), 1, - anon_sym_LPAREN, - ACTIONS(743), 1, - anon_sym_LBRACK, - ACTIONS(747), 1, - anon_sym_LBRACE, - ACTIONS(751), 1, - anon_sym_await, - ACTIONS(753), 1, - sym_string_start, - ACTIONS(1249), 1, - anon_sym_STAR, - STATE(973), 1, - sym_string, - STATE(1016), 1, - sym_primary_expression, - STATE(1231), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(741), 2, + ACTIONS(638), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(749), 2, - sym_ellipsis, - sym_float, - ACTIONS(739), 3, + ACTIONS(642), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(745), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(733), 5, + ACTIONS(79), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1206), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80086,108 +81075,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63566] = 16, - ACTIONS(713), 1, + [64156] = 16, + ACTIONS(69), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + sym_string_start, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(644), 1, anon_sym_LBRACK, - ACTIONS(725), 1, - anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(648), 1, anon_sym_await, - ACTIONS(731), 1, - sym_string_start, - ACTIONS(1257), 1, + ACTIONS(1326), 1, anon_sym_STAR, - STATE(969), 1, + STATE(966), 1, sym_string, - STATE(999), 1, + STATE(975), 1, sym_primary_expression, - STATE(1268), 1, + STATE(1112), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(719), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(727), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(717), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(723), 3, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(711), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1151), 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, - [63641] = 16, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACK, - ACTIONS(725), 1, - anon_sym_LBRACE, - ACTIONS(729), 1, - anon_sym_await, - ACTIONS(731), 1, - sym_string_start, - ACTIONS(1257), 1, - anon_sym_STAR, - STATE(969), 1, - sym_string, - STATE(1010), 1, - sym_primary_expression, - STATE(1268), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(719), 2, + ACTIONS(638), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(727), 2, - sym_ellipsis, - sym_float, - ACTIONS(717), 3, + ACTIONS(642), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(723), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(711), 5, + ACTIONS(79), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1151), 16, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80204,53 +81135,54 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63716] = 18, - ACTIONS(291), 1, + [64232] = 18, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, - ACTIONS(2200), 1, - anon_sym_await, - ACTIONS(2204), 1, + ACTIONS(2135), 1, sym_identifier, - STATE(1017), 1, + ACTIONS(2141), 1, + anon_sym_await, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1620), 1, + STATE(1617), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(2198), 2, - anon_sym_match, - anon_sym_type, - STATE(1357), 2, + STATE(675), 2, sym_attribute, sym_subscript, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2196), 3, + ACTIONS(2137), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(2139), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -80265,55 +81197,54 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63795] = 18, - ACTIONS(291), 1, + [64312] = 16, + ACTIONS(69), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(83), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(644), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2206), 1, - sym_identifier, - ACTIONS(2212), 1, + ACTIONS(648), 1, anon_sym_await, - STATE(1017), 1, + ACTIONS(1326), 1, + anon_sym_STAR, + STATE(966), 1, sym_string, - STATE(1416), 1, - sym_list_splat_pattern, - STATE(1620), 1, + STATE(976), 1, sym_primary_expression, + STATE(1112), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(77), 2, sym_ellipsis, sym_float, - ACTIONS(2210), 2, - anon_sym_match, - anon_sym_type, - STATE(1603), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, + ACTIONS(67), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2208), 3, + ACTIONS(638), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(642), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(79), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1088), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -80326,53 +81257,54 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63874] = 18, - ACTIONS(291), 1, + [64388] = 18, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, - ACTIONS(2168), 1, + ACTIONS(2125), 1, anon_sym_await, - ACTIONS(2214), 1, + ACTIONS(2143), 1, sym_identifier, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1621), 1, + STATE(1623), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(2166), 2, - anon_sym_match, - anon_sym_type, - STATE(1081), 2, + STATE(1050), 2, sym_attribute, sym_subscript, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2164), 3, + ACTIONS(2121), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(2123), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -80387,53 +81319,114 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63953] = 18, - ACTIONS(291), 1, + [64468] = 16, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(669), 1, + anon_sym_await, + ACTIONS(1442), 1, anon_sym_STAR, - ACTIONS(2192), 1, + STATE(1032), 1, + sym_string, + STATE(1122), 1, + sym_primary_expression, + STATE(1361), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(307), 2, + sym_ellipsis, + sym_float, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(657), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(663), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(309), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1422), 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, + [64544] = 18, + ACTIONS(296), 1, + anon_sym_LBRACE, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(1442), 1, + anon_sym_STAR, + ACTIONS(2117), 1, anon_sym_await, - ACTIONS(2216), 1, + ACTIONS(2145), 1, sym_identifier, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, STATE(1622), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(2220), 2, - anon_sym_match, - anon_sym_type, - STATE(1365), 2, + STATE(1371), 2, sym_attribute, sym_subscript, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2218), 3, + ACTIONS(2113), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(2115), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -80448,53 +81441,54 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64032] = 18, - ACTIONS(291), 1, + [64624] = 18, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, - ACTIONS(2222), 1, + ACTIONS(2147), 1, sym_identifier, - ACTIONS(2228), 1, + ACTIONS(2153), 1, anon_sym_await, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1622), 1, + STATE(1628), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(2226), 2, - anon_sym_match, - anon_sym_type, - STATE(1587), 2, + STATE(1425), 2, sym_attribute, sym_subscript, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2224), 3, + ACTIONS(2149), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(2151), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -80509,49 +81503,110 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64111] = 16, - ACTIONS(666), 1, + [64704] = 16, + ACTIONS(69), 1, + anon_sym_LBRACE, + ACTIONS(83), 1, + sym_string_start, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(644), 1, anon_sym_LBRACK, - ACTIONS(678), 1, - anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(648), 1, anon_sym_await, + ACTIONS(1326), 1, + anon_sym_STAR, + STATE(966), 1, + sym_string, + STATE(977), 1, + sym_primary_expression, + STATE(1112), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(77), 2, + sym_ellipsis, + sym_float, + ACTIONS(67), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(638), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(642), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(79), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1088), 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, + [64780] = 16, + ACTIONS(676), 1, + anon_sym_LPAREN, ACTIONS(684), 1, + anon_sym_LBRACK, + ACTIONS(688), 1, + anon_sym_LBRACE, + ACTIONS(692), 1, + anon_sym_await, + ACTIONS(694), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1012), 1, anon_sym_STAR, - STATE(981), 1, + STATE(969), 1, sym_string, - STATE(1002), 1, + STATE(1033), 1, sym_primary_expression, STATE(1147), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(680), 2, + ACTIONS(690), 2, sym_ellipsis, sym_float, - ACTIONS(670), 3, + ACTIONS(678), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(682), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(676), 3, + ACTIONS(686), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 5, + ACTIONS(674), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1265), 16, + STATE(1205), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80568,49 +81623,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64186] = 16, - ACTIONS(713), 1, + [64856] = 16, + ACTIONS(698), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(706), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1257), 1, + ACTIONS(1286), 1, anon_sym_STAR, - STATE(969), 1, + STATE(972), 1, sym_string, - STATE(994), 1, + STATE(1014), 1, sym_primary_expression, - STATE(1268), 1, + STATE(1275), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(719), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(727), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - ACTIONS(717), 3, + ACTIONS(700), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(704), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(723), 3, + ACTIONS(708), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(711), 5, + ACTIONS(696), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1151), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80627,49 +81683,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64261] = 16, - ACTIONS(713), 1, + [64932] = 16, + ACTIONS(698), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(706), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1257), 1, + ACTIONS(1286), 1, anon_sym_STAR, - STATE(969), 1, + STATE(972), 1, sym_string, - STATE(1000), 1, + STATE(1015), 1, sym_primary_expression, - STATE(1268), 1, + STATE(1275), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(719), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(727), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - ACTIONS(717), 3, + ACTIONS(700), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(704), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(723), 3, + ACTIONS(708), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(711), 5, + ACTIONS(696), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1151), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80686,49 +81743,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64336] = 16, - ACTIONS(713), 1, + [65008] = 16, + ACTIONS(698), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(706), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1257), 1, + ACTIONS(1286), 1, anon_sym_STAR, - STATE(969), 1, + STATE(972), 1, sym_string, - STATE(1006), 1, + STATE(1016), 1, sym_primary_expression, - STATE(1268), 1, + STATE(1275), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(719), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(727), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - ACTIONS(717), 3, + ACTIONS(700), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(704), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(723), 3, + ACTIONS(708), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(711), 5, + ACTIONS(696), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1151), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80745,49 +81803,112 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64411] = 16, - ACTIONS(713), 1, + [65084] = 18, + ACTIONS(296), 1, + anon_sym_LBRACE, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(1442), 1, + anon_sym_STAR, + ACTIONS(2155), 1, + sym_identifier, + ACTIONS(2161), 1, + anon_sym_await, + STATE(1032), 1, + sym_string, + STATE(1361), 1, + sym_list_splat_pattern, + STATE(1626), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(307), 2, + sym_ellipsis, + sym_float, + STATE(1146), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(2157), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(2159), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(309), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1422), 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, + [65164] = 16, + ACTIONS(698), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(706), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1257), 1, + ACTIONS(1286), 1, anon_sym_STAR, - STATE(969), 1, + STATE(972), 1, sym_string, - STATE(1020), 1, + STATE(1018), 1, sym_primary_expression, - STATE(1268), 1, + STATE(1275), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(719), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(727), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - ACTIONS(717), 3, + ACTIONS(700), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(704), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(723), 3, + ACTIONS(708), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(711), 5, + ACTIONS(696), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1151), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80804,49 +81925,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64486] = 16, - ACTIONS(713), 1, + [65240] = 16, + ACTIONS(788), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(796), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(800), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(804), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(806), 1, sym_string_start, - ACTIONS(1257), 1, + ACTIONS(1276), 1, anon_sym_STAR, - STATE(969), 1, + STATE(974), 1, sym_string, - STATE(1034), 1, + STATE(1025), 1, sym_primary_expression, - STATE(1268), 1, + STATE(1208), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(719), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(727), 2, + ACTIONS(802), 2, sym_ellipsis, sym_float, - ACTIONS(717), 3, + ACTIONS(790), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(794), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(723), 3, + ACTIONS(798), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(711), 5, + ACTIONS(786), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1151), 16, + STATE(1184), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80863,49 +81985,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64561] = 16, - ACTIONS(713), 1, + [65316] = 16, + ACTIONS(698), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(706), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1257), 1, + ACTIONS(1286), 1, anon_sym_STAR, - STATE(969), 1, + STATE(972), 1, sym_string, - STATE(1039), 1, + STATE(1021), 1, sym_primary_expression, - STATE(1268), 1, + STATE(1275), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(719), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(727), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - ACTIONS(717), 3, + ACTIONS(700), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(704), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(723), 3, + ACTIONS(708), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(711), 5, + ACTIONS(696), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1151), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80922,53 +82045,54 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64636] = 18, - ACTIONS(291), 1, + [65392] = 18, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, - ACTIONS(2176), 1, - anon_sym_await, - ACTIONS(2230), 1, + ACTIONS(2163), 1, sym_identifier, - STATE(1017), 1, + ACTIONS(2169), 1, + anon_sym_await, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1626), 1, + STATE(1627), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(2174), 2, - anon_sym_match, - anon_sym_type, - STATE(1456), 2, + STATE(1331), 2, sym_attribute, sym_subscript, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2172), 3, + ACTIONS(2165), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(2167), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -80983,49 +82107,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64715] = 16, - ACTIONS(691), 1, + [65472] = 16, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(734), 1, anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(709), 1, + ACTIONS(740), 1, sym_string_start, - ACTIONS(1315), 1, + ACTIONS(1250), 1, anon_sym_STAR, - STATE(993), 1, + STATE(1035), 1, sym_string, - STATE(1052), 1, + STATE(1107), 1, sym_primary_expression, - STATE(1384), 1, + STATE(1370), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(697), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(705), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(695), 3, + ACTIONS(722), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(726), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(701), 3, + ACTIONS(732), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(689), 5, + ACTIONS(718), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81042,55 +82167,54 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64790] = 18, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(648), 1, + [65548] = 16, + ACTIONS(698), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(706), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2232), 1, - sym_identifier, - ACTIONS(2238), 1, + ACTIONS(710), 1, + anon_sym_LBRACE, + ACTIONS(714), 1, anon_sym_await, - STATE(1017), 1, + ACTIONS(716), 1, + sym_string_start, + ACTIONS(1286), 1, + anon_sym_STAR, + STATE(972), 1, sym_string, - STATE(1416), 1, - sym_list_splat_pattern, - STATE(1615), 1, + STATE(1022), 1, sym_primary_expression, + STATE(1275), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - ACTIONS(2236), 2, + ACTIONS(700), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - STATE(647), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2234), 3, + ACTIONS(704), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(708), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(696), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -81103,55 +82227,54 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64869] = 18, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(648), 1, + [65624] = 16, + ACTIONS(698), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(706), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2176), 1, + ACTIONS(710), 1, + anon_sym_LBRACE, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(2240), 1, - sym_identifier, - STATE(1017), 1, + ACTIONS(716), 1, + sym_string_start, + ACTIONS(1286), 1, + anon_sym_STAR, + STATE(972), 1, sym_string, - STATE(1416), 1, - sym_list_splat_pattern, - STATE(1627), 1, + STATE(1023), 1, sym_primary_expression, + STATE(1275), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - ACTIONS(2244), 2, + ACTIONS(700), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - STATE(1167), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2242), 3, + ACTIONS(704), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(708), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(696), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -81164,49 +82287,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64948] = 16, - ACTIONS(781), 1, + [65700] = 16, + ACTIONS(698), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(706), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(710), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(799), 1, + ACTIONS(716), 1, sym_string_start, - ACTIONS(1329), 1, + ACTIONS(1286), 1, anon_sym_STAR, - STATE(1068), 1, + STATE(972), 1, sym_string, - STATE(1148), 1, + STATE(1027), 1, sym_primary_expression, - STATE(1436), 1, + STATE(1275), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(787), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(795), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - ACTIONS(785), 3, + ACTIONS(700), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(704), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(791), 3, + ACTIONS(708), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(779), 5, + ACTIONS(696), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1439), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81223,53 +82347,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65023] = 16, - ACTIONS(291), 1, + [65776] = 18, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(662), 1, - anon_sym_await, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(1017), 1, + ACTIONS(2169), 1, + anon_sym_await, + ACTIONS(2171), 1, + sym_identifier, + STATE(1032), 1, sym_string, - STATE(1044), 1, - sym_primary_expression, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, + STATE(1627), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(296), 3, + STATE(1331), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(2165), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(2167), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 5, + ACTIONS(309), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 16, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -81282,55 +82409,54 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65098] = 18, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(648), 1, + [65856] = 16, + ACTIONS(698), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(706), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2238), 1, + ACTIONS(710), 1, + anon_sym_LBRACE, + ACTIONS(714), 1, anon_sym_await, - ACTIONS(2246), 1, - sym_identifier, - STATE(1017), 1, + ACTIONS(716), 1, + sym_string_start, + ACTIONS(1286), 1, + anon_sym_STAR, + STATE(972), 1, sym_string, - STATE(1416), 1, - sym_list_splat_pattern, - STATE(1615), 1, + STATE(1003), 1, sym_primary_expression, + STATE(1275), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(712), 2, sym_ellipsis, sym_float, - ACTIONS(2236), 2, + ACTIONS(700), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - STATE(647), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2234), 3, + ACTIONS(704), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(708), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(696), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -81343,55 +82469,54 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65177] = 18, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(648), 1, + [65932] = 16, + ACTIONS(720), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(730), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2184), 1, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(738), 1, anon_sym_await, - ACTIONS(2248), 1, - sym_identifier, - STATE(1017), 1, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(1250), 1, + anon_sym_STAR, + STATE(1035), 1, sym_string, - STATE(1416), 1, - sym_list_splat_pattern, - STATE(1628), 1, + STATE(1108), 1, sym_primary_expression, + STATE(1370), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(736), 2, sym_ellipsis, sym_float, - ACTIONS(2252), 2, + ACTIONS(722), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - STATE(1168), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2250), 3, + ACTIONS(726), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(732), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(718), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1377), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -81404,53 +82529,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65256] = 16, - ACTIONS(291), 1, + [66008] = 18, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(662), 1, - anon_sym_await, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(1017), 1, + ACTIONS(2169), 1, + anon_sym_await, + ACTIONS(2173), 1, + sym_identifier, + STATE(1032), 1, sym_string, - STATE(1045), 1, - sym_primary_expression, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, + STATE(1624), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(296), 3, + STATE(1340), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(2175), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(2177), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 5, + ACTIONS(309), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 16, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -81463,55 +82591,54 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65331] = 18, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(648), 1, + [66088] = 16, + ACTIONS(676), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2254), 1, - sym_identifier, - ACTIONS(2260), 1, + ACTIONS(688), 1, + anon_sym_LBRACE, + ACTIONS(692), 1, anon_sym_await, - STATE(1017), 1, + ACTIONS(694), 1, + sym_string_start, + ACTIONS(1012), 1, + anon_sym_STAR, + STATE(969), 1, sym_string, - STATE(1416), 1, - sym_list_splat_pattern, - STATE(1623), 1, + STATE(1036), 1, sym_primary_expression, + STATE(1147), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(690), 2, sym_ellipsis, sym_float, - ACTIONS(2258), 2, + ACTIONS(678), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - STATE(1483), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2256), 3, + ACTIONS(682), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(686), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(674), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1205), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -81524,117 +82651,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65410] = 21, - ACTIONS(2114), 1, - anon_sym_as, - ACTIONS(2124), 1, - anon_sym_not, - ACTIONS(2262), 1, - anon_sym_DOT, - ACTIONS(2264), 1, - anon_sym_LPAREN, - ACTIONS(2272), 1, - anon_sym_STAR_STAR, - ACTIONS(2274), 1, - anon_sym_LBRACK, - ACTIONS(2280), 1, - anon_sym_PIPE, - ACTIONS(2282), 1, - anon_sym_AMP, - ACTIONS(2284), 1, - anon_sym_CARET, - ACTIONS(2286), 1, - anon_sym_is, - STATE(1568), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2266), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2268), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2278), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2288), 2, - anon_sym_LT, - anon_sym_GT, - STATE(950), 2, - sym__not_in, - sym__is_not, - STATE(1232), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2276), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2270), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2100), 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, - [65495] = 16, - ACTIONS(291), 1, + [66164] = 18, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(662), 1, - anon_sym_await, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(1017), 1, + ACTIONS(2153), 1, + anon_sym_await, + ACTIONS(2179), 1, + sym_identifier, + STATE(1032), 1, sym_string, - STATE(1046), 1, - sym_primary_expression, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, + STATE(1628), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(296), 3, + STATE(1425), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(2149), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(2151), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 5, + ACTIONS(309), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 16, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -81647,49 +82713,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65570] = 16, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(648), 1, + [66244] = 16, + ACTIONS(744), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(752), 1, anon_sym_LBRACK, - ACTIONS(662), 1, + ACTIONS(756), 1, + anon_sym_LBRACE, + ACTIONS(760), 1, anon_sym_await, - ACTIONS(1427), 1, + ACTIONS(762), 1, + sym_string_start, + ACTIONS(1344), 1, anon_sym_STAR, - STATE(1017), 1, + STATE(1043), 1, sym_string, - STATE(1047), 1, + STATE(1052), 1, sym_primary_expression, - STATE(1416), 1, + STATE(1325), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(758), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, + ACTIONS(746), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(750), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 5, + ACTIONS(754), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(742), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 16, + STATE(1349), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81706,53 +82773,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65645] = 16, - ACTIONS(291), 1, + [66320] = 18, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(662), 1, - anon_sym_await, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(1017), 1, + ACTIONS(2153), 1, + anon_sym_await, + ACTIONS(2181), 1, + sym_identifier, + STATE(1032), 1, sym_string, - STATE(1049), 1, - sym_primary_expression, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, + STATE(1629), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(296), 3, + STATE(1173), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(2183), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(2185), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 5, + ACTIONS(309), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 16, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -81765,49 +82835,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65720] = 16, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(648), 1, + [66400] = 16, + ACTIONS(766), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(774), 1, anon_sym_LBRACK, - ACTIONS(662), 1, + ACTIONS(778), 1, + anon_sym_LBRACE, + ACTIONS(782), 1, anon_sym_await, - ACTIONS(1427), 1, + ACTIONS(784), 1, + sym_string_start, + ACTIONS(1322), 1, anon_sym_STAR, - STATE(1017), 1, + STATE(1131), 1, sym_string, - STATE(1050), 1, + STATE(1148), 1, sym_primary_expression, - STATE(1416), 1, + STATE(1431), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(780), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, + ACTIONS(768), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(772), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 5, + ACTIONS(776), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(764), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 16, + STATE(1424), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81824,53 +82895,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65795] = 16, - ACTIONS(291), 1, + [66476] = 18, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(662), 1, - anon_sym_await, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(1017), 1, + ACTIONS(2161), 1, + anon_sym_await, + ACTIONS(2187), 1, + sym_identifier, + STATE(1032), 1, sym_string, - STATE(1051), 1, - sym_primary_expression, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, + STATE(1593), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(296), 3, + STATE(1174), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(2189), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(2191), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 5, + ACTIONS(309), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 16, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -81883,53 +82957,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65870] = 16, - ACTIONS(291), 1, + [66556] = 18, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(662), 1, - anon_sym_await, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(1017), 1, + ACTIONS(2193), 1, + sym_identifier, + ACTIONS(2199), 1, + anon_sym_await, + STATE(1032), 1, sym_string, - STATE(1053), 1, - sym_primary_expression, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, + STATE(1625), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(296), 3, + STATE(1477), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(2195), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(2197), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 5, + ACTIONS(309), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 16, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -81942,117 +83019,121 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65945] = 21, - ACTIONS(2114), 1, - anon_sym_EQ, - ACTIONS(2124), 1, - anon_sym_not, - ACTIONS(2290), 1, + [66636] = 21, + ACTIONS(2203), 1, anon_sym_DOT, - ACTIONS(2292), 1, + ACTIONS(2205), 1, anon_sym_LPAREN, - ACTIONS(2300), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - ACTIONS(2302), 1, + ACTIONS(2215), 1, + anon_sym_EQ, + ACTIONS(2217), 1, anon_sym_LBRACK, - ACTIONS(2308), 1, + ACTIONS(2223), 1, anon_sym_PIPE, - ACTIONS(2310), 1, + ACTIONS(2225), 1, + anon_sym_not, + ACTIONS(2227), 1, anon_sym_AMP, - ACTIONS(2312), 1, + ACTIONS(2229), 1, anon_sym_CARET, - ACTIONS(2314), 1, + ACTIONS(2231), 1, anon_sym_is, - STATE(1567), 1, + STATE(1554), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2294), 2, + ACTIONS(2207), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2296), 2, + ACTIONS(2209), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2306), 2, + ACTIONS(2221), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2316), 2, + ACTIONS(2233), 2, anon_sym_LT, anon_sym_GT, - STATE(901), 2, + STATE(912), 2, sym__not_in, sym__is_not, - STATE(1280), 2, + STATE(1059), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2304), 3, + ACTIONS(2219), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2298), 6, + ACTIONS(2211), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2100), 8, + ACTIONS(2201), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACE, anon_sym_and, anon_sym_or, - sym_type_conversion, - [66030] = 16, - ACTIONS(735), 1, - anon_sym_LPAREN, - ACTIONS(743), 1, - anon_sym_LBRACK, - ACTIONS(747), 1, + [66722] = 18, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(751), 1, - anon_sym_await, - ACTIONS(753), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(1249), 1, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(973), 1, + ACTIONS(2235), 1, + sym_identifier, + ACTIONS(2241), 1, + anon_sym_await, + STATE(1032), 1, sym_string, - STATE(1036), 1, - sym_primary_expression, - STATE(1231), 1, + STATE(1361), 1, sym_list_splat_pattern, + STATE(1622), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(741), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(749), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(739), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(745), 3, + STATE(1605), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(733), 5, + ACTIONS(2237), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(2239), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(309), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1206), 16, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -82065,53 +83146,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66105] = 16, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, + [66802] = 18, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(707), 1, - anon_sym_await, - ACTIONS(709), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(1315), 1, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(993), 1, + ACTIONS(2141), 1, + anon_sym_await, + ACTIONS(2243), 1, + sym_identifier, + STATE(1032), 1, sym_string, - STATE(1058), 1, - sym_primary_expression, - STATE(1384), 1, + STATE(1361), 1, sym_list_splat_pattern, + STATE(1617), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(697), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(705), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(695), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(701), 3, + STATE(675), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(689), 5, + ACTIONS(2137), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(2139), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(309), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -82124,49 +83208,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66180] = 16, - ACTIONS(691), 1, + [66882] = 16, + ACTIONS(676), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(688), 1, anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(692), 1, anon_sym_await, - ACTIONS(709), 1, + ACTIONS(694), 1, sym_string_start, - ACTIONS(1315), 1, + ACTIONS(1012), 1, anon_sym_STAR, - STATE(993), 1, + STATE(969), 1, sym_string, - STATE(1059), 1, + STATE(1024), 1, sym_primary_expression, - STATE(1384), 1, + STATE(1147), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(697), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(705), 2, + ACTIONS(690), 2, sym_ellipsis, sym_float, - ACTIONS(695), 3, + ACTIONS(678), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(682), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(701), 3, + ACTIONS(686), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(689), 5, + ACTIONS(674), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1205), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82183,49 +83268,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66255] = 16, - ACTIONS(67), 1, + [66958] = 16, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(629), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(641), 1, + ACTIONS(669), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(961), 1, + STATE(1032), 1, sym_string, - STATE(967), 1, + STATE(1141), 1, sym_primary_expression, - STATE(1077), 1, + STATE(1361), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(635), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(65), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(633), 3, + ACTIONS(657), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(663), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(309), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1085), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82242,108 +83328,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66330] = 16, - ACTIONS(691), 1, + [67034] = 16, + ACTIONS(296), 1, + anon_sym_LBRACE, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(703), 1, - anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(669), 1, anon_sym_await, - ACTIONS(709), 1, - sym_string_start, - ACTIONS(1315), 1, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(993), 1, + STATE(1032), 1, sym_string, - STATE(1060), 1, + STATE(1142), 1, sym_primary_expression, - STATE(1384), 1, + STATE(1361), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(697), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(705), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(695), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(701), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(689), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1367), 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, - [66405] = 16, - ACTIONS(735), 1, - anon_sym_LPAREN, - ACTIONS(743), 1, - anon_sym_LBRACK, - ACTIONS(747), 1, - anon_sym_LBRACE, - ACTIONS(751), 1, - anon_sym_await, - ACTIONS(753), 1, - sym_string_start, - ACTIONS(1249), 1, - anon_sym_STAR, - STATE(973), 1, - sym_string, - STATE(1025), 1, - sym_primary_expression, - STATE(1231), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(741), 2, + ACTIONS(657), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(749), 2, - sym_ellipsis, - sym_float, - ACTIONS(739), 3, + ACTIONS(663), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(745), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(733), 5, + ACTIONS(309), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1206), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82360,49 +83388,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66480] = 16, - ACTIONS(735), 1, + [67110] = 16, + ACTIONS(296), 1, + anon_sym_LBRACE, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(747), 1, - anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(669), 1, anon_sym_await, - ACTIONS(753), 1, - sym_string_start, - ACTIONS(1249), 1, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(973), 1, + STATE(1032), 1, sym_string, - STATE(1027), 1, + STATE(1129), 1, sym_primary_expression, - STATE(1231), 1, + STATE(1361), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(741), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(749), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(739), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(745), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(733), 5, + ACTIONS(657), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(663), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(309), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1206), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82419,53 +83448,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66555] = 16, - ACTIONS(735), 1, - anon_sym_LPAREN, - ACTIONS(743), 1, - anon_sym_LBRACK, - ACTIONS(747), 1, + [67186] = 18, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(751), 1, - anon_sym_await, - ACTIONS(753), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(1249), 1, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(973), 1, + ACTIONS(2155), 1, + sym_identifier, + ACTIONS(2161), 1, + anon_sym_await, + STATE(1032), 1, sym_string, - STATE(988), 1, - sym_primary_expression, - STATE(1231), 1, + STATE(1361), 1, sym_list_splat_pattern, + STATE(1593), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(741), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(749), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(739), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(745), 3, + STATE(1146), 2, + sym_attribute, + sym_subscript, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(733), 5, + ACTIONS(2157), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(2159), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(309), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1206), 16, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -82478,53 +83510,54 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66630] = 18, - ACTIONS(291), 1, + [67266] = 18, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, - ACTIONS(2178), 1, - sym_identifier, - ACTIONS(2184), 1, + ACTIONS(2169), 1, anon_sym_await, - STATE(1017), 1, + ACTIONS(2171), 1, + sym_identifier, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1628), 1, + STATE(1624), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(2182), 2, - anon_sym_match, - anon_sym_type, - STATE(1145), 2, + STATE(1331), 2, sym_attribute, sym_subscript, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2180), 3, + ACTIONS(2165), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(2167), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -82539,53 +83572,54 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66709] = 18, - ACTIONS(291), 1, + [67346] = 18, + ACTIONS(296), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(313), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1442), 1, anon_sym_STAR, - ACTIONS(2192), 1, + ACTIONS(2153), 1, anon_sym_await, - ACTIONS(2202), 1, + ACTIONS(2179), 1, sym_identifier, - STATE(1017), 1, + STATE(1032), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1622), 1, + STATE(1629), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(2190), 2, - anon_sym_match, - anon_sym_type, - STATE(1349), 2, + STATE(1425), 2, sym_attribute, sym_subscript, - ACTIONS(296), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2188), 3, + ACTIONS(2149), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(2151), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(309), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1422), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -82600,55 +83634,54 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66788] = 18, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(648), 1, + [67426] = 16, + ACTIONS(676), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2176), 1, + ACTIONS(688), 1, + anon_sym_LBRACE, + ACTIONS(692), 1, anon_sym_await, - ACTIONS(2230), 1, - sym_identifier, - STATE(1017), 1, + ACTIONS(694), 1, + sym_string_start, + ACTIONS(1012), 1, + anon_sym_STAR, + STATE(969), 1, sym_string, - STATE(1416), 1, - sym_list_splat_pattern, - STATE(1627), 1, + STATE(1026), 1, sym_primary_expression, + STATE(1147), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(690), 2, sym_ellipsis, sym_float, - ACTIONS(2174), 2, + ACTIONS(678), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - STATE(1456), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2172), 3, + ACTIONS(682), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(686), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(674), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1205), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -82661,49 +83694,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66867] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(629), 1, + [67502] = 16, + ACTIONS(676), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(641), 1, + ACTIONS(688), 1, + anon_sym_LBRACE, + ACTIONS(692), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(694), 1, + sym_string_start, + ACTIONS(1012), 1, anon_sym_STAR, - STATE(961), 1, + STATE(969), 1, sym_string, - STATE(985), 1, + STATE(1029), 1, sym_primary_expression, - STATE(1077), 1, + STATE(1147), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(690), 2, sym_ellipsis, sym_float, - ACTIONS(635), 2, + ACTIONS(678), 3, + anon_sym_lazy, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(633), 3, + ACTIONS(682), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(686), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(674), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1085), 16, + STATE(1205), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82720,49 +83754,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66942] = 16, - ACTIONS(691), 1, + [67578] = 16, + ACTIONS(296), 1, + anon_sym_LBRACE, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(703), 1, - anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(669), 1, anon_sym_await, - ACTIONS(709), 1, - sym_string_start, - ACTIONS(1315), 1, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(993), 1, + STATE(1032), 1, sym_string, - STATE(1061), 1, + STATE(1053), 1, sym_primary_expression, - STATE(1384), 1, + STATE(1361), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(697), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(705), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(695), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(701), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(689), 5, + ACTIONS(657), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(663), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(309), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82779,49 +83814,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67017] = 16, - ACTIONS(691), 1, + [67654] = 16, + ACTIONS(676), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(688), 1, anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(692), 1, anon_sym_await, - ACTIONS(709), 1, + ACTIONS(694), 1, sym_string_start, - ACTIONS(1315), 1, + ACTIONS(1012), 1, anon_sym_STAR, - STATE(993), 1, + STATE(969), 1, sym_string, - STATE(1062), 1, + STATE(1030), 1, sym_primary_expression, - STATE(1384), 1, + STATE(1147), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(697), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(705), 2, + ACTIONS(690), 2, sym_ellipsis, sym_float, - ACTIONS(695), 3, + ACTIONS(678), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(682), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(701), 3, + ACTIONS(686), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(689), 5, + ACTIONS(674), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1205), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82838,49 +83874,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67092] = 16, - ACTIONS(691), 1, + [67730] = 16, + ACTIONS(676), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(684), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(688), 1, anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(692), 1, anon_sym_await, - ACTIONS(709), 1, + ACTIONS(694), 1, sym_string_start, - ACTIONS(1315), 1, + ACTIONS(1012), 1, anon_sym_STAR, - STATE(993), 1, + STATE(969), 1, sym_string, - STATE(1063), 1, + STATE(1031), 1, sym_primary_expression, - STATE(1384), 1, + STATE(1147), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(697), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(705), 2, + ACTIONS(690), 2, sym_ellipsis, sym_float, - ACTIONS(695), 3, + ACTIONS(678), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(682), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(701), 3, + ACTIONS(686), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(689), 5, + ACTIONS(674), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1205), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82897,49 +83934,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67167] = 16, - ACTIONS(735), 1, + [67806] = 16, + ACTIONS(296), 1, + anon_sym_LBRACE, + ACTIONS(313), 1, + sym_string_start, + ACTIONS(655), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(747), 1, - anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(669), 1, anon_sym_await, - ACTIONS(753), 1, - sym_string_start, - ACTIONS(1249), 1, + ACTIONS(1442), 1, anon_sym_STAR, - STATE(973), 1, + STATE(1032), 1, sym_string, - STATE(1005), 1, + STATE(1067), 1, sym_primary_expression, - STATE(1231), 1, + STATE(1361), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(741), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(749), 2, + ACTIONS(307), 2, sym_ellipsis, sym_float, - ACTIONS(739), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(745), 3, + ACTIONS(301), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(733), 5, + ACTIONS(657), 3, + anon_sym_lazy, + anon_sym_match, + anon_sym_type, + ACTIONS(663), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(309), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1206), 16, + STATE(1422), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82956,219 +83994,316 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67242] = 21, - ACTIONS(2114), 1, - anon_sym_as, - ACTIONS(2124), 1, + [67882] = 21, + ACTIONS(2215), 1, + anon_sym_EQ, + ACTIONS(2225), 1, anon_sym_not, - ACTIONS(2318), 1, + ACTIONS(2245), 1, anon_sym_DOT, - ACTIONS(2320), 1, + ACTIONS(2247), 1, anon_sym_LPAREN, - ACTIONS(2328), 1, + ACTIONS(2255), 1, anon_sym_STAR_STAR, - ACTIONS(2330), 1, + ACTIONS(2257), 1, anon_sym_LBRACK, - ACTIONS(2336), 1, + ACTIONS(2263), 1, anon_sym_PIPE, - ACTIONS(2338), 1, + ACTIONS(2265), 1, anon_sym_AMP, - ACTIONS(2340), 1, + ACTIONS(2267), 1, anon_sym_CARET, - ACTIONS(2342), 1, + ACTIONS(2269), 1, anon_sym_is, - STATE(1579), 1, + STATE(1576), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2322), 2, + ACTIONS(2249), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2324), 2, + ACTIONS(2251), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2334), 2, + ACTIONS(2261), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2344), 2, + ACTIONS(2271), 2, anon_sym_LT, anon_sym_GT, - STATE(864), 2, + STATE(953), 2, sym__not_in, sym__is_not, - STATE(1383), 2, + STATE(1222), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2332), 3, + ACTIONS(2259), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2326), 6, + ACTIONS(2253), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2100), 7, - anon_sym_RPAREN, + ACTIONS(2201), 8, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [67326] = 5, - ACTIONS(81), 1, - sym_string_start, + sym_type_conversion, + [67967] = 21, + ACTIONS(2215), 1, + anon_sym_as, + ACTIONS(2225), 1, + anon_sym_not, + ACTIONS(2273), 1, + anon_sym_DOT, + ACTIONS(2275), 1, + anon_sym_LPAREN, + ACTIONS(2283), 1, + anon_sym_STAR_STAR, + ACTIONS(2285), 1, + anon_sym_LBRACK, + ACTIONS(2291), 1, + anon_sym_PIPE, + ACTIONS(2293), 1, + anon_sym_AMP, + ACTIONS(2295), 1, + anon_sym_CARET, + ACTIONS(2297), 1, + anon_sym_is, + STATE(1571), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(965), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2348), 5, + ACTIONS(2277), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2279), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2289), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2346), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + STATE(921), 2, + sym__not_in, + sym__is_not, + STATE(1152), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2287), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2281), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2201), 8, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + [68052] = 21, + ACTIONS(2215), 1, + anon_sym_as, + ACTIONS(2225), 1, + anon_sym_not, + ACTIONS(2301), 1, + anon_sym_DOT, + ACTIONS(2303), 1, + anon_sym_LPAREN, + ACTIONS(2311), 1, anon_sym_STAR_STAR, + ACTIONS(2313), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2319), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2321), 1, anon_sym_AMP, + ACTIONS(2323), 1, anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(2325), 1, anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [67378] = 5, - ACTIONS(81), 1, - sym_string_start, + STATE(1564), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(960), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1560), 5, + ACTIONS(2305), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2307), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2317), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2327), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + STATE(903), 2, + sym__not_in, + sym__is_not, + STATE(1183), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2315), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2309), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2201), 8, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [68137] = 20, + ACTIONS(2205), 1, + anon_sym_LPAREN, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2223), 1, anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(2225), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2227), 1, anon_sym_AMP, + ACTIONS(2229), 1, anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(2231), 1, anon_sym_is, + ACTIONS(2329), 1, + anon_sym_DOT, + ACTIONS(2331), 1, + anon_sym_LBRACK, + STATE(1554), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2207), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2209), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2221), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2233), 2, + anon_sym_LT, + anon_sym_GT, + STATE(912), 2, + sym__not_in, + sym__is_not, + STATE(1059), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2219), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2211), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67430] = 21, - ACTIONS(2114), 1, + ACTIONS(2201), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [68219] = 21, + ACTIONS(2215), 1, anon_sym_EQ, - ACTIONS(2124), 1, + ACTIONS(2225), 1, anon_sym_not, - ACTIONS(2350), 1, + ACTIONS(2333), 1, anon_sym_DOT, - ACTIONS(2352), 1, + ACTIONS(2335), 1, anon_sym_LPAREN, - ACTIONS(2360), 1, + ACTIONS(2343), 1, anon_sym_STAR_STAR, - ACTIONS(2362), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2368), 1, + ACTIONS(2351), 1, anon_sym_PIPE, - ACTIONS(2370), 1, + ACTIONS(2353), 1, anon_sym_AMP, - ACTIONS(2372), 1, + ACTIONS(2355), 1, anon_sym_CARET, - ACTIONS(2374), 1, + ACTIONS(2357), 1, anon_sym_is, STATE(1566), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2354), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2356), 2, + ACTIONS(2339), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2366), 2, + ACTIONS(2349), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2376), 2, + ACTIONS(2359), 2, anon_sym_LT, anon_sym_GT, - STATE(936), 2, + STATE(948), 2, sym__not_in, sym__is_not, - STATE(1405), 2, + STATE(1400), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2364), 3, + ACTIONS(2347), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2358), 6, + ACTIONS(2341), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2100), 7, + ACTIONS(2201), 7, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -83176,124 +84311,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_and, anon_sym_or, - [67514] = 20, - ACTIONS(2104), 1, + [68303] = 21, + ACTIONS(2215), 1, + anon_sym_as, + ACTIONS(2225), 1, + anon_sym_not, + ACTIONS(2361), 1, + anon_sym_DOT, + ACTIONS(2363), 1, anon_sym_LPAREN, - ACTIONS(2112), 1, + ACTIONS(2371), 1, anon_sym_STAR_STAR, - ACTIONS(2122), 1, + ACTIONS(2373), 1, + anon_sym_LBRACK, + ACTIONS(2379), 1, anon_sym_PIPE, - ACTIONS(2124), 1, - anon_sym_not, - ACTIONS(2126), 1, + ACTIONS(2381), 1, anon_sym_AMP, - ACTIONS(2128), 1, + ACTIONS(2383), 1, anon_sym_CARET, - ACTIONS(2130), 1, + ACTIONS(2385), 1, anon_sym_is, - ACTIONS(2378), 1, - anon_sym_DOT, - ACTIONS(2380), 1, - anon_sym_LBRACK, - STATE(1553), 1, + STATE(1582), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2106), 2, + ACTIONS(2365), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2108), 2, + ACTIONS(2367), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2120), 2, + ACTIONS(2377), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2132), 2, + ACTIONS(2387), 2, anon_sym_LT, anon_sym_GT, - STATE(873), 2, + STATE(877), 2, sym__not_in, sym__is_not, - STATE(1101), 2, + STATE(1365), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2118), 3, + ACTIONS(2375), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2110), 6, + ACTIONS(2369), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2100), 8, - sym__newline, - anon_sym_SEMI, + ACTIONS(2201), 7, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_and, anon_sym_or, - [67596] = 21, - ACTIONS(2114), 1, + [68387] = 21, + ACTIONS(2215), 1, anon_sym_EQ, - ACTIONS(2124), 1, + ACTIONS(2225), 1, anon_sym_not, - ACTIONS(2382), 1, + ACTIONS(2389), 1, anon_sym_DOT, - ACTIONS(2384), 1, + ACTIONS(2391), 1, anon_sym_LPAREN, - ACTIONS(2392), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2394), 1, + ACTIONS(2401), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2407), 1, anon_sym_PIPE, - ACTIONS(2402), 1, + ACTIONS(2409), 1, anon_sym_AMP, - ACTIONS(2404), 1, + ACTIONS(2411), 1, anon_sym_CARET, - ACTIONS(2406), 1, + ACTIONS(2413), 1, anon_sym_is, - STATE(1564), 1, + STATE(1568), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2386), 2, + ACTIONS(2393), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 2, + ACTIONS(2395), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2398), 2, + ACTIONS(2405), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2408), 2, + ACTIONS(2415), 2, anon_sym_LT, anon_sym_GT, - STATE(947), 2, + STATE(871), 2, sym__not_in, sym__is_not, - STATE(1332), 2, + STATE(1374), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2396), 3, + ACTIONS(2403), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2390), 6, + ACTIONS(2397), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2100), 7, + ACTIONS(2201), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -83301,22 +84437,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_and, anon_sym_or, - [67680] = 5, - ACTIONS(2414), 1, + [68471] = 5, + ACTIONS(83), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(965), 2, + STATE(967), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2412), 5, + ACTIONS(2419), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2410), 31, + ACTIONS(2417), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -83348,34 +84484,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67732] = 5, - ACTIONS(731), 1, + [68523] = 5, + ACTIONS(83), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(971), 2, + STATE(965), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2348), 5, - anon_sym_as, + ACTIONS(1601), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2346), 30, + ACTIONS(1596), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -83394,37 +84531,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67783] = 8, - ACTIONS(2102), 1, - anon_sym_DOT, - ACTIONS(2104), 1, - anon_sym_LPAREN, - ACTIONS(2112), 1, - anon_sym_STAR_STAR, - ACTIONS(2116), 1, - anon_sym_LBRACK, + [68575] = 5, + ACTIONS(2425), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1101), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2419), 5, + STATE(967), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2423), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 27, + ACTIONS(2421), 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, @@ -83443,29 +84578,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67840] = 5, - ACTIONS(684), 1, + [68627] = 5, + ACTIONS(2428), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(982), 2, + STATE(968), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2348), 5, + ACTIONS(2423), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2346), 30, + ACTIONS(2421), 30, 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, @@ -83488,38 +84624,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [67891] = 5, - ACTIONS(731), 1, + [68678] = 5, + ACTIONS(694), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(966), 2, + STATE(984), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1560), 5, - anon_sym_as, + ACTIONS(1601), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 30, + ACTIONS(1596), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -83535,78 +84669,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67942] = 15, - ACTIONS(2102), 1, + sym_type_conversion, + [68729] = 8, + ACTIONS(2203), 1, anon_sym_DOT, - ACTIONS(2104), 1, + ACTIONS(2205), 1, anon_sym_LPAREN, - ACTIONS(2112), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - ACTIONS(2116), 1, + ACTIONS(2217), 1, anon_sym_LBRACK, - ACTIONS(2122), 1, - anon_sym_PIPE, - ACTIONS(2126), 1, - anon_sym_AMP, - ACTIONS(2128), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2106), 2, + STATE(1059), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2433), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2108), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2431), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2120), 2, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1101), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2118), 3, - anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2423), 3, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [68786] = 8, + ACTIONS(2203), 1, + anon_sym_DOT, + ACTIONS(2205), 1, + anon_sym_LPAREN, + ACTIONS(2213), 1, + anon_sym_STAR_STAR, + ACTIONS(2217), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1059), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2437), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 17, + ACTIONS(2435), 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68013] = 5, - ACTIONS(2425), 1, + [68843] = 5, + ACTIONS(716), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(971), 2, + STATE(978), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2412), 5, + ACTIONS(1601), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2410), 30, + ACTIONS(1596), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -83618,10 +84795,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -83637,28 +84814,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68064] = 8, - ACTIONS(2102), 1, + [68894] = 8, + ACTIONS(2203), 1, anon_sym_DOT, - ACTIONS(2104), 1, + ACTIONS(2205), 1, anon_sym_LPAREN, - ACTIONS(2112), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - ACTIONS(2116), 1, + ACTIONS(2217), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1101), 2, + STATE(1059), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2419), 5, + ACTIONS(2441), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 27, + ACTIONS(2439), 27, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -83686,22 +84863,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68121] = 5, - ACTIONS(753), 1, + [68951] = 5, + ACTIONS(806), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(980), 2, + STATE(987), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1560), 5, + ACTIONS(1601), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 30, + ACTIONS(1596), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -83713,10 +84890,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -83732,33 +84909,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68172] = 10, - ACTIONS(2102), 1, + [69002] = 11, + ACTIONS(2203), 1, anon_sym_DOT, - ACTIONS(2104), 1, + ACTIONS(2205), 1, anon_sym_LPAREN, - ACTIONS(2112), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - ACTIONS(2116), 1, + ACTIONS(2217), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2106), 2, + ACTIONS(2207), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1101), 2, + ACTIONS(2221), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1059), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2118), 3, + ACTIONS(2219), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, + ACTIONS(2433), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 24, + ACTIONS(2431), 22, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -83768,9 +84948,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -83783,43 +84961,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68233] = 14, - ACTIONS(2102), 1, + [69065] = 15, + ACTIONS(2203), 1, anon_sym_DOT, - ACTIONS(2104), 1, + ACTIONS(2205), 1, anon_sym_LPAREN, - ACTIONS(2112), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - ACTIONS(2116), 1, + ACTIONS(2217), 1, anon_sym_LBRACK, - ACTIONS(2126), 1, + ACTIONS(2223), 1, + anon_sym_PIPE, + ACTIONS(2227), 1, anon_sym_AMP, - ACTIONS(2128), 1, + ACTIONS(2229), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2106), 2, + ACTIONS(2207), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2108), 2, + ACTIONS(2209), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2120), 2, + ACTIONS(2221), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1101), 2, + STATE(1059), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2118), 3, + ACTIONS(2219), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, + ACTIONS(2445), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 18, + ACTIONS(2443), 17, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -83828,7 +85008,6 @@ 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, @@ -83838,89 +85017,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68302] = 20, - ACTIONS(2124), 1, - anon_sym_not, - ACTIONS(2428), 1, - anon_sym_DOT, - ACTIONS(2430), 1, - anon_sym_LPAREN, - ACTIONS(2438), 1, - anon_sym_STAR_STAR, - ACTIONS(2440), 1, - anon_sym_LBRACK, - ACTIONS(2446), 1, - anon_sym_PIPE, - ACTIONS(2448), 1, - anon_sym_AMP, - ACTIONS(2450), 1, - anon_sym_CARET, - ACTIONS(2452), 1, - anon_sym_is, - STATE(1572), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2432), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2434), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2444), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2454), 2, - anon_sym_LT, - anon_sym_GT, - STATE(886), 2, - sym__not_in, - sym__is_not, - STATE(1421), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2442), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2436), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2100), 7, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [68383] = 8, - ACTIONS(2102), 1, + [69136] = 8, + ACTIONS(2203), 1, anon_sym_DOT, - ACTIONS(2104), 1, + ACTIONS(2205), 1, anon_sym_LPAREN, - ACTIONS(2112), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - ACTIONS(2116), 1, + ACTIONS(2217), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1101), 2, + STATE(1059), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2458), 5, + ACTIONS(2433), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2456), 27, + ACTIONS(2431), 27, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -83948,22 +85066,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68440] = 5, - ACTIONS(2460), 1, + [69193] = 5, + ACTIONS(716), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(978), 2, + STATE(968), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2412), 5, + ACTIONS(2419), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2410), 30, + ACTIONS(2417), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -83994,97 +85112,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68491] = 13, - ACTIONS(2102), 1, + [69244] = 20, + ACTIONS(2225), 1, + anon_sym_not, + ACTIONS(2447), 1, anon_sym_DOT, - ACTIONS(2104), 1, + ACTIONS(2449), 1, anon_sym_LPAREN, - ACTIONS(2112), 1, + ACTIONS(2457), 1, anon_sym_STAR_STAR, - ACTIONS(2116), 1, + ACTIONS(2459), 1, anon_sym_LBRACK, - ACTIONS(2128), 1, + ACTIONS(2465), 1, + anon_sym_PIPE, + ACTIONS(2467), 1, + anon_sym_AMP, + ACTIONS(2469), 1, anon_sym_CARET, + ACTIONS(2471), 1, + anon_sym_is, + STATE(1573), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2106), 2, + ACTIONS(2451), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2108), 2, + ACTIONS(2453), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2120), 2, + ACTIONS(2463), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1101), 2, + ACTIONS(2473), 2, + anon_sym_LT, + anon_sym_GT, + STATE(882), 2, + sym__not_in, + sym__is_not, + STATE(1439), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2118), 3, + ACTIONS(2461), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2417), 19, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, + ACTIONS(2455), 6, anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68558] = 5, - ACTIONS(753), 1, - sym_string_start, + ACTIONS(2201), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [69325] = 10, + ACTIONS(2203), 1, + anon_sym_DOT, + ACTIONS(2205), 1, + anon_sym_LPAREN, + ACTIONS(2213), 1, + anon_sym_STAR_STAR, + ACTIONS(2217), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(978), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2348), 5, - anon_sym_as, + ACTIONS(2207), 2, anon_sym_STAR, anon_sym_SLASH, + STATE(1059), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2219), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2346), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2431), 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_async, - 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, @@ -84094,22 +85224,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68609] = 5, - ACTIONS(684), 1, + [69386] = 5, + ACTIONS(2475), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(968), 2, + STATE(981), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1560), 5, + ACTIONS(2423), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 30, + ACTIONS(2421), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -84140,85 +85270,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [68660] = 5, - ACTIONS(2463), 1, - sym_string_start, + [69437] = 14, + ACTIONS(2203), 1, + anon_sym_DOT, + ACTIONS(2205), 1, + anon_sym_LPAREN, + ACTIONS(2213), 1, + anon_sym_STAR_STAR, + ACTIONS(2217), 1, + anon_sym_LBRACK, + ACTIONS(2227), 1, + anon_sym_AMP, + ACTIONS(2229), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(982), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2412), 5, + ACTIONS(2207), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2209), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2221), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1059), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2219), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2410), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2431), 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_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [68711] = 12, - ACTIONS(2102), 1, + [69506] = 13, + ACTIONS(2203), 1, anon_sym_DOT, - ACTIONS(2104), 1, + ACTIONS(2205), 1, anon_sym_LPAREN, - ACTIONS(2112), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - ACTIONS(2116), 1, + ACTIONS(2217), 1, anon_sym_LBRACK, + ACTIONS(2229), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2106), 2, + ACTIONS(2207), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2108), 2, + ACTIONS(2209), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2120), 2, + ACTIONS(2221), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1101), 2, + STATE(1059), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2118), 3, + ACTIONS(2219), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, + ACTIONS(2433), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 20, + ACTIONS(2431), 19, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -84232,47 +85373,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_AMP, - anon_sym_CARET, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68776] = 8, - ACTIONS(2102), 1, - anon_sym_DOT, - ACTIONS(2104), 1, - anon_sym_LPAREN, - ACTIONS(2112), 1, - anon_sym_STAR_STAR, - ACTIONS(2116), 1, - anon_sym_LBRACK, + [69573] = 5, + ACTIONS(694), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1101), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2468), 5, + STATE(981), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2419), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2466), 27, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2417), 30, + 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, @@ -84288,42 +85424,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68833] = 11, - ACTIONS(2102), 1, + sym_type_conversion, + [69624] = 12, + ACTIONS(2203), 1, anon_sym_DOT, - ACTIONS(2104), 1, + ACTIONS(2205), 1, anon_sym_LPAREN, - ACTIONS(2112), 1, + ACTIONS(2213), 1, anon_sym_STAR_STAR, - ACTIONS(2116), 1, + ACTIONS(2217), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2106), 2, + ACTIONS(2207), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2120), 2, + ACTIONS(2209), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2221), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1101), 2, + STATE(1059), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2118), 3, + ACTIONS(2219), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, + ACTIONS(2433), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 22, + ACTIONS(2431), 20, sym__newline, anon_sym_SEMI, anon_sym_from, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, @@ -84333,40 +85472,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68896] = 6, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, - ACTIONS(2470), 1, - anon_sym_LBRACK, - STATE(2094), 1, - sym_type_parameter, + [69689] = 5, + ACTIONS(2478), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 6, + STATE(986), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2423), 5, anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 28, + ACTIONS(2421), 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, @@ -84386,28 +85524,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68948] = 8, - ACTIONS(2134), 1, - anon_sym_DOT, - ACTIONS(2136), 1, - anon_sym_LPAREN, - ACTIONS(2144), 1, - anon_sym_STAR_STAR, - ACTIONS(2146), 1, - anon_sym_LBRACK, + [69740] = 5, + ACTIONS(806), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1186), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2468), 5, + STATE(986), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2419), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2466), 26, + ACTIONS(2417), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -84415,6 +85549,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, @@ -84434,102 +85570,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69004] = 15, - ACTIONS(2262), 1, - anon_sym_DOT, - ACTIONS(2264), 1, - anon_sym_LPAREN, - ACTIONS(2272), 1, - anon_sym_STAR_STAR, - ACTIONS(2274), 1, - anon_sym_LBRACK, - ACTIONS(2280), 1, - anon_sym_PIPE, - ACTIONS(2282), 1, - anon_sym_AMP, - ACTIONS(2284), 1, - anon_sym_CARET, + [69791] = 5, + ACTIONS(2481), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2266), 2, + STATE(988), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2423), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2268), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2278), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1232), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2276), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2423), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 16, + ACTIONS(2421), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, - anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69074] = 10, - ACTIONS(2262), 1, - anon_sym_DOT, - ACTIONS(2264), 1, - anon_sym_LPAREN, - ACTIONS(2272), 1, - anon_sym_STAR_STAR, - ACTIONS(2274), 1, - anon_sym_LBRACK, + [69841] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2266), 2, + ACTIONS(2486), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - STATE(1232), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2276), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 23, + ACTIONS(2484), 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_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, @@ -84539,20 +85658,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69134] = 3, + [69887] = 8, + ACTIONS(2301), 1, + anon_sym_DOT, + ACTIONS(2303), 1, + anon_sym_LPAREN, + ACTIONS(2311), 1, + anon_sym_STAR_STAR, + ACTIONS(2313), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 6, + STATE(1183), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2433), 5, anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 31, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2431), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -84560,12 +85687,10 @@ 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -84581,151 +85706,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [69180] = 20, - ACTIONS(2124), 1, - anon_sym_not, - ACTIONS(2318), 1, + [69943] = 11, + ACTIONS(2301), 1, anon_sym_DOT, - ACTIONS(2330), 1, - anon_sym_LBRACK, - ACTIONS(2384), 1, + ACTIONS(2303), 1, anon_sym_LPAREN, - ACTIONS(2392), 1, + ACTIONS(2311), 1, anon_sym_STAR_STAR, - ACTIONS(2400), 1, - anon_sym_PIPE, - ACTIONS(2402), 1, - anon_sym_AMP, - ACTIONS(2404), 1, - anon_sym_CARET, - ACTIONS(2406), 1, - anon_sym_is, - STATE(1564), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2313), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2386), 2, + ACTIONS(2305), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2398), 2, + ACTIONS(2317), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2408), 2, - anon_sym_LT, - anon_sym_GT, - STATE(947), 2, - sym__not_in, - sym__is_not, - STATE(1332), 2, + STATE(1183), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2396), 3, + ACTIONS(2315), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2100), 6, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2433), 3, anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2431), 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_RBRACK, + anon_sym_PIPE, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(2390), 6, - anon_sym_in, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69260] = 20, - ACTIONS(2124), 1, - anon_sym_not, - ACTIONS(2134), 1, + [70005] = 15, + ACTIONS(2301), 1, anon_sym_DOT, - ACTIONS(2146), 1, - anon_sym_LBRACK, - ACTIONS(2430), 1, + ACTIONS(2303), 1, anon_sym_LPAREN, - ACTIONS(2438), 1, + ACTIONS(2311), 1, anon_sym_STAR_STAR, - ACTIONS(2446), 1, + ACTIONS(2313), 1, + anon_sym_LBRACK, + ACTIONS(2319), 1, anon_sym_PIPE, - ACTIONS(2448), 1, + ACTIONS(2321), 1, anon_sym_AMP, - ACTIONS(2450), 1, + ACTIONS(2323), 1, anon_sym_CARET, - ACTIONS(2452), 1, - anon_sym_is, - STATE(1572), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2432), 2, + ACTIONS(2305), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2434), 2, + ACTIONS(2307), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2444), 2, + ACTIONS(2317), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2454), 2, - anon_sym_LT, - anon_sym_GT, - STATE(886), 2, - sym__not_in, - sym__is_not, - STATE(1421), 2, + STATE(1183), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2442), 3, + ACTIONS(2315), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2100), 6, - anon_sym_COMMA, + ACTIONS(2445), 3, anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2443), 16, + anon_sym_COMMA, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_RBRACK, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(2436), 6, - anon_sym_in, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69340] = 5, - ACTIONS(709), 1, + [70075] = 5, + ACTIONS(2488), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1009), 2, + STATE(993), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1560), 5, + ACTIONS(2423), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 29, + ACTIONS(2421), 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, @@ -84747,182 +85857,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69390] = 15, - ACTIONS(2134), 1, + [70125] = 8, + ACTIONS(2301), 1, anon_sym_DOT, - ACTIONS(2136), 1, + ACTIONS(2303), 1, anon_sym_LPAREN, - ACTIONS(2144), 1, + ACTIONS(2311), 1, anon_sym_STAR_STAR, - ACTIONS(2146), 1, + ACTIONS(2313), 1, anon_sym_LBRACK, - ACTIONS(2152), 1, - anon_sym_PIPE, - ACTIONS(2154), 1, - anon_sym_AMP, - ACTIONS(2156), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2138), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2140), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2150), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1186), 2, + STATE(1183), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2148), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2423), 3, + ACTIONS(2433), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 16, + ACTIONS(2431), 26, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69460] = 13, - ACTIONS(2290), 1, + [70181] = 10, + ACTIONS(2301), 1, anon_sym_DOT, - ACTIONS(2292), 1, + ACTIONS(2303), 1, anon_sym_LPAREN, - ACTIONS(2300), 1, + ACTIONS(2311), 1, anon_sym_STAR_STAR, - ACTIONS(2302), 1, + ACTIONS(2313), 1, anon_sym_LBRACK, - ACTIONS(2312), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2294), 2, + ACTIONS(2305), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2296), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2306), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1280), 2, + STATE(1183), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2304), 3, + ACTIONS(2315), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, - anon_sym_EQ, + ACTIONS(2433), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 18, + ACTIONS(2431), 23, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_RBRACK, + anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [69526] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [70241] = 14, + ACTIONS(2301), 1, + anon_sym_DOT, + ACTIONS(2303), 1, + anon_sym_LPAREN, + ACTIONS(2311), 1, + anon_sym_STAR_STAR, + ACTIONS(2313), 1, + anon_sym_LBRACK, + ACTIONS(2321), 1, + anon_sym_AMP, + ACTIONS(2323), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 6, + ACTIONS(2305), 2, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2307), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2317), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1183), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2315), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2431), 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_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69574] = 5, - ACTIONS(777), 1, + [70309] = 5, + ACTIONS(2491), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1041), 2, + STATE(997), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2348), 5, - anon_sym_as, + ACTIONS(2423), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2346), 29, + ACTIONS(2421), 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, @@ -84944,239 +86054,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69624] = 12, - ACTIONS(2290), 1, + [70359] = 13, + ACTIONS(2301), 1, anon_sym_DOT, - ACTIONS(2292), 1, + ACTIONS(2303), 1, anon_sym_LPAREN, - ACTIONS(2300), 1, + ACTIONS(2311), 1, anon_sym_STAR_STAR, - ACTIONS(2302), 1, + ACTIONS(2313), 1, anon_sym_LBRACK, + ACTIONS(2323), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2294), 2, + ACTIONS(2305), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2296), 2, + ACTIONS(2307), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2306), 2, + ACTIONS(2317), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1280), 2, + STATE(1183), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2304), 3, + ACTIONS(2315), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, - anon_sym_EQ, + ACTIONS(2433), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 19, + ACTIONS(2431), 18, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_AMP, - anon_sym_CARET, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [69688] = 8, - ACTIONS(2134), 1, + [70425] = 12, + ACTIONS(2301), 1, anon_sym_DOT, - ACTIONS(2136), 1, + ACTIONS(2303), 1, anon_sym_LPAREN, - ACTIONS(2144), 1, + ACTIONS(2311), 1, anon_sym_STAR_STAR, - ACTIONS(2146), 1, + ACTIONS(2313), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1186), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2419), 5, - anon_sym_as, + ACTIONS(2305), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2417), 26, - anon_sym_COMMA, + ACTIONS(2307), 2, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2317), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [69744] = 8, - ACTIONS(2134), 1, - anon_sym_DOT, - ACTIONS(2136), 1, - anon_sym_LPAREN, - ACTIONS(2144), 1, - anon_sym_STAR_STAR, - ACTIONS(2146), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1186), 2, + STATE(1183), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2419), 5, + ACTIONS(2315), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 26, + ACTIONS(2431), 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_RBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69800] = 13, - ACTIONS(2262), 1, + [70489] = 20, + ACTIONS(2225), 1, + anon_sym_not, + ACTIONS(2301), 1, anon_sym_DOT, - ACTIONS(2264), 1, + ACTIONS(2313), 1, + anon_sym_LBRACK, + ACTIONS(2449), 1, anon_sym_LPAREN, - ACTIONS(2272), 1, + ACTIONS(2457), 1, anon_sym_STAR_STAR, - ACTIONS(2274), 1, - anon_sym_LBRACK, - ACTIONS(2284), 1, + ACTIONS(2465), 1, + anon_sym_PIPE, + ACTIONS(2467), 1, + anon_sym_AMP, + ACTIONS(2469), 1, anon_sym_CARET, + ACTIONS(2471), 1, + anon_sym_is, + STATE(1573), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2266), 2, + ACTIONS(2451), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2268), 2, + ACTIONS(2453), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2278), 2, + ACTIONS(2463), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1232), 2, + ACTIONS(2473), 2, + anon_sym_LT, + anon_sym_GT, + STATE(882), 2, + sym__not_in, + sym__is_not, + STATE(1439), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2276), 3, + ACTIONS(2461), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2417), 18, + ACTIONS(2201), 6, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_not, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_is, + ACTIONS(2455), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69866] = 8, - ACTIONS(2290), 1, - anon_sym_DOT, - ACTIONS(2292), 1, - anon_sym_LPAREN, - ACTIONS(2300), 1, - anon_sym_STAR_STAR, - ACTIONS(2302), 1, + [70569] = 6, + ACTIONS(279), 1, + anon_sym_COLON_EQ, + ACTIONS(2494), 1, anon_sym_LBRACK, + STATE(2077), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1280), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2468), 5, + ACTIONS(264), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2466), 26, + ACTIONS(262), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -85192,141 +86265,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [69922] = 12, - ACTIONS(2262), 1, - anon_sym_DOT, - ACTIONS(2264), 1, - anon_sym_LPAREN, - ACTIONS(2272), 1, - anon_sym_STAR_STAR, - ACTIONS(2274), 1, + [70621] = 6, + ACTIONS(1603), 1, + anon_sym_COLON_EQ, + ACTIONS(2494), 1, anon_sym_LBRACK, + STATE(2078), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2266), 2, + ACTIONS(1601), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, - ACTIONS(2268), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2278), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1232), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2276), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 19, + ACTIONS(1596), 28, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69986] = 20, - ACTIONS(2124), 1, - anon_sym_not, - ACTIONS(2262), 1, + [70673] = 8, + ACTIONS(2273), 1, anon_sym_DOT, - ACTIONS(2274), 1, - anon_sym_LBRACK, - ACTIONS(2292), 1, + ACTIONS(2275), 1, anon_sym_LPAREN, - ACTIONS(2300), 1, + ACTIONS(2283), 1, anon_sym_STAR_STAR, - ACTIONS(2308), 1, - anon_sym_PIPE, - ACTIONS(2310), 1, - anon_sym_AMP, - ACTIONS(2312), 1, - anon_sym_CARET, - ACTIONS(2314), 1, - anon_sym_is, - STATE(1567), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2285), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2294), 2, + STATE(1152), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2441), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2296), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2306), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2316), 2, anon_sym_LT, anon_sym_GT, - STATE(901), 2, - sym__not_in, - sym__is_not, - STATE(1280), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2304), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2100), 6, + ACTIONS(2439), 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, - ACTIONS(2298), 6, - anon_sym_in, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70066] = 8, - ACTIONS(2262), 1, - anon_sym_DOT, - ACTIONS(2264), 1, - anon_sym_LPAREN, - ACTIONS(2272), 1, - anon_sym_STAR_STAR, - ACTIONS(2274), 1, - anon_sym_LBRACK, + [70729] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1232), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2419), 5, + ACTIONS(1783), 6, anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 26, + ACTIONS(1781), 31, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -85334,6 +86380,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -85353,33 +86401,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70122] = 10, - ACTIONS(2134), 1, + sym_type_conversion, + [70775] = 8, + ACTIONS(2273), 1, anon_sym_DOT, - ACTIONS(2136), 1, + ACTIONS(2275), 1, anon_sym_LPAREN, - ACTIONS(2144), 1, + ACTIONS(2283), 1, anon_sym_STAR_STAR, - ACTIONS(2146), 1, + ACTIONS(2285), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2138), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1186), 2, + STATE(1152), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2148), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, + ACTIONS(2437), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 23, + ACTIONS(2435), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -85387,13 +86431,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -85403,34 +86450,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70182] = 3, + [70831] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2474), 5, + ACTIONS(1676), 6, + anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2472), 32, - sym__newline, - sym_string_start, - anon_sym_SEMI, + ACTIONS(1674), 31, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + 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, @@ -85446,18 +86492,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70228] = 3, + sym_type_conversion, + [70877] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 6, + ACTIONS(1694), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 31, + ACTIONS(1692), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -85489,36 +86536,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [70274] = 5, - ACTIONS(709), 1, - sym_string_start, + [70923] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1033), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2348), 5, + ACTIONS(1694), 6, + anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2346), 29, + ACTIONS(1692), 31, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -85534,36 +86578,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70324] = 11, - ACTIONS(2134), 1, - anon_sym_DOT, - ACTIONS(2136), 1, - anon_sym_LPAREN, - ACTIONS(2144), 1, - anon_sym_STAR_STAR, - ACTIONS(2146), 1, - anon_sym_LBRACK, + sym_type_conversion, + [70969] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2138), 2, + ACTIONS(1698), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2150), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1186), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2148), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 21, + ACTIONS(1696), 31, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -85571,11 +86600,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -85585,37 +86621,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70386] = 6, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(2470), 1, - anon_sym_LBRACK, - STATE(2092), 1, - sym_type_parameter, + sym_type_conversion, + [71015] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 6, + ACTIONS(1698), 6, anon_sym_as, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 28, + ACTIONS(1696), 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_RBRACK, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -85631,30 +86664,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70438] = 5, - ACTIONS(777), 1, - sym_string_start, + sym_type_conversion, + [71061] = 20, + ACTIONS(2225), 1, + anon_sym_not, + ACTIONS(2361), 1, + anon_sym_DOT, + ACTIONS(2373), 1, + anon_sym_LBRACK, + ACTIONS(2391), 1, + anon_sym_LPAREN, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2407), 1, + anon_sym_PIPE, + ACTIONS(2409), 1, + anon_sym_AMP, + ACTIONS(2411), 1, + anon_sym_CARET, + ACTIONS(2413), 1, + anon_sym_is, + STATE(1568), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(997), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1560), 5, + ACTIONS(2393), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2395), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2405), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2415), 2, + anon_sym_LT, + anon_sym_GT, + STATE(871), 2, + sym__not_in, + sym__is_not, + STATE(1374), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2403), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2201), 6, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2397), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [71141] = 4, + ACTIONS(1603), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1601), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 29, + ACTIONS(1596), 30, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -85676,33 +86769,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70488] = 3, + [71189] = 5, + ACTIONS(313), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 6, - anon_sym_as, + STATE(988), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2419), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 31, + ACTIONS(2417), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -85718,21 +86814,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70534] = 3, + [71239] = 8, + ACTIONS(2273), 1, + anon_sym_DOT, + ACTIONS(2275), 1, + anon_sym_LPAREN, + ACTIONS(2283), 1, + anon_sym_STAR_STAR, + ACTIONS(2285), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 6, + STATE(1152), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2433), 5, anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 31, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2431), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -85740,8 +86843,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -85761,25 +86862,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70580] = 3, + [71295] = 11, + ACTIONS(2273), 1, + anon_sym_DOT, + ACTIONS(2275), 1, + anon_sym_LPAREN, + ACTIONS(2283), 1, + anon_sym_STAR_STAR, + ACTIONS(2285), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 6, + ACTIONS(2277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2289), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1152), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2287), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2431), 21, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [71357] = 15, + ACTIONS(2273), 1, + anon_sym_DOT, + ACTIONS(2275), 1, + anon_sym_LPAREN, + ACTIONS(2283), 1, + anon_sym_STAR_STAR, + ACTIONS(2285), 1, + anon_sym_LBRACK, + ACTIONS(2291), 1, + anon_sym_PIPE, + ACTIONS(2293), 1, + anon_sym_AMP, + ACTIONS(2295), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2277), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2279), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2289), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1152), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2287), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2445), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1647), 31, + ACTIONS(2443), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [71427] = 5, + ACTIONS(740), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(993), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2419), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2417), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -85788,7 +86998,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -85804,29 +87013,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70626] = 8, - ACTIONS(2262), 1, + [71477] = 8, + ACTIONS(2273), 1, anon_sym_DOT, - ACTIONS(2264), 1, + ACTIONS(2275), 1, anon_sym_LPAREN, - ACTIONS(2272), 1, + ACTIONS(2283), 1, anon_sym_STAR_STAR, - ACTIONS(2274), 1, + ACTIONS(2285), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1232), 2, + STATE(1152), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2468), 5, + ACTIONS(2433), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2466), 26, + ACTIONS(2431), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -85853,30 +87061,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70682] = 5, - ACTIONS(308), 1, - sym_string_start, + [71533] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1019), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1560), 5, + ACTIONS(2498), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 29, + ACTIONS(2496), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -85898,35 +87104,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70732] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [71579] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 6, + ACTIONS(1730), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(1728), 31, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + 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, @@ -85942,42 +87146,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70780] = 5, - ACTIONS(308), 1, - sym_string_start, + sym_type_conversion, + [71625] = 10, + ACTIONS(2273), 1, + anon_sym_DOT, + ACTIONS(2275), 1, + anon_sym_LPAREN, + ACTIONS(2283), 1, + anon_sym_STAR_STAR, + ACTIONS(2285), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1026), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2348), 5, + ACTIONS(2277), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + STATE(1152), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2287), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2346), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2431), 23, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -85987,51 +87197,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70830] = 14, - ACTIONS(2134), 1, + [71685] = 14, + ACTIONS(2273), 1, anon_sym_DOT, - ACTIONS(2136), 1, + ACTIONS(2275), 1, anon_sym_LPAREN, - ACTIONS(2144), 1, + ACTIONS(2283), 1, anon_sym_STAR_STAR, - ACTIONS(2146), 1, + ACTIONS(2285), 1, anon_sym_LBRACK, - ACTIONS(2154), 1, + ACTIONS(2293), 1, anon_sym_AMP, - ACTIONS(2156), 1, + ACTIONS(2295), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2138), 2, + ACTIONS(2277), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2140), 2, + ACTIONS(2279), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2150), 2, + ACTIONS(2289), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1186), 2, + STATE(1152), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2148), 3, + ACTIONS(2287), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, + ACTIONS(2433), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 17, + ACTIONS(2431), 17, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -86041,76 +87251,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70898] = 8, - ACTIONS(2262), 1, + [71753] = 13, + ACTIONS(2273), 1, anon_sym_DOT, - ACTIONS(2264), 1, + ACTIONS(2275), 1, anon_sym_LPAREN, - ACTIONS(2272), 1, + ACTIONS(2283), 1, anon_sym_STAR_STAR, - ACTIONS(2274), 1, + ACTIONS(2285), 1, anon_sym_LBRACK, + ACTIONS(2295), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1232), 2, + ACTIONS(2277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2279), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2289), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1152), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2458), 5, + ACTIONS(2287), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2456), 26, + ACTIONS(2431), 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_AT, - anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70954] = 8, - ACTIONS(2290), 1, + [71819] = 8, + ACTIONS(2245), 1, anon_sym_DOT, - ACTIONS(2292), 1, + ACTIONS(2247), 1, anon_sym_LPAREN, - ACTIONS(2300), 1, + ACTIONS(2255), 1, anon_sym_STAR_STAR, - ACTIONS(2302), 1, + ACTIONS(2257), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1280), 2, + STATE(1222), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2419), 5, + ACTIONS(2433), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 26, + ACTIONS(2431), 26, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -86137,20 +87352,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [71010] = 3, + [71875] = 8, + ACTIONS(2301), 1, + anon_sym_DOT, + ACTIONS(2303), 1, + anon_sym_LPAREN, + ACTIONS(2311), 1, + anon_sym_STAR_STAR, + ACTIONS(2313), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 6, + STATE(1183), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2441), 5, anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 31, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2439), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -86158,12 +87381,10 @@ 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86179,45 +87400,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [71056] = 8, - ACTIONS(2290), 1, + [71931] = 11, + ACTIONS(2245), 1, anon_sym_DOT, - ACTIONS(2292), 1, + ACTIONS(2247), 1, anon_sym_LPAREN, - ACTIONS(2300), 1, + ACTIONS(2255), 1, anon_sym_STAR_STAR, - ACTIONS(2302), 1, + ACTIONS(2257), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1280), 2, + ACTIONS(2249), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2261), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1222), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2458), 5, - anon_sym_STAR, + ACTIONS(2259), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2456), 26, + ACTIONS(2431), 21, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -86228,81 +87451,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [71112] = 8, - ACTIONS(2262), 1, + [71993] = 12, + ACTIONS(2273), 1, anon_sym_DOT, - ACTIONS(2264), 1, + ACTIONS(2275), 1, anon_sym_LPAREN, - ACTIONS(2272), 1, + ACTIONS(2283), 1, anon_sym_STAR_STAR, - ACTIONS(2274), 1, + ACTIONS(2285), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1232), 2, + ACTIONS(2277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2279), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2289), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1152), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2419), 5, + ACTIONS(2287), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 26, + ACTIONS(2431), 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_AT, - anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71168] = 5, - ACTIONS(2476), 1, - sym_string_start, + [72057] = 8, + ACTIONS(2301), 1, + anon_sym_DOT, + ACTIONS(2303), 1, + anon_sym_LPAREN, + ACTIONS(2311), 1, + anon_sym_STAR_STAR, + ACTIONS(2313), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1026), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2412), 5, + STATE(1183), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2437), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2410), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2435), 26, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -86321,80 +87551,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71218] = 11, - ACTIONS(2262), 1, + [72113] = 15, + ACTIONS(2245), 1, anon_sym_DOT, - ACTIONS(2264), 1, + ACTIONS(2247), 1, anon_sym_LPAREN, - ACTIONS(2272), 1, + ACTIONS(2255), 1, anon_sym_STAR_STAR, - ACTIONS(2274), 1, + ACTIONS(2257), 1, anon_sym_LBRACK, + ACTIONS(2263), 1, + anon_sym_PIPE, + ACTIONS(2265), 1, + anon_sym_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2266), 2, + ACTIONS(2249), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2278), 2, + ACTIONS(2251), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2261), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1232), 2, + STATE(1222), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2276), 3, + ACTIONS(2259), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, - anon_sym_as, + ACTIONS(2445), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 21, + ACTIONS(2443), 16, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_PIPE, anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71280] = 3, + sym_type_conversion, + [72183] = 8, + ACTIONS(2245), 1, + anon_sym_DOT, + ACTIONS(2247), 1, + anon_sym_LPAREN, + ACTIONS(2255), 1, + anon_sym_STAR_STAR, + ACTIONS(2257), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 6, - anon_sym_as, + STATE(1222), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2433), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 31, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2431), 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_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -86415,41 +87654,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [71326] = 4, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, + [72239] = 10, + ACTIONS(2245), 1, + anon_sym_DOT, + ACTIONS(2247), 1, + anon_sym_LPAREN, + ACTIONS(2255), 1, + anon_sym_STAR_STAR, + ACTIONS(2257), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 6, + ACTIONS(2249), 2, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, + STATE(1222), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2259), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2431), 23, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -86459,36 +87703,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71374] = 8, - ACTIONS(2134), 1, - anon_sym_DOT, - ACTIONS(2136), 1, - anon_sym_LPAREN, - ACTIONS(2144), 1, - anon_sym_STAR_STAR, - ACTIONS(2146), 1, - anon_sym_LBRACK, + sym_type_conversion, + [72299] = 5, + ACTIONS(313), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1186), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2458), 5, - anon_sym_as, + STATE(1013), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1601), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2456), 26, + ACTIONS(1596), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -86507,82 +87749,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71430] = 3, + [72349] = 14, + ACTIONS(2245), 1, + anon_sym_DOT, + ACTIONS(2247), 1, + anon_sym_LPAREN, + ACTIONS(2255), 1, + anon_sym_STAR_STAR, + ACTIONS(2257), 1, + anon_sym_LBRACK, + ACTIONS(2265), 1, + anon_sym_AMP, + ACTIONS(2267), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 5, + ACTIONS(2249), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2251), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2261), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1222), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2259), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2479), 32, - sym__newline, - sym_string_start, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2431), 17, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71476] = 11, - ACTIONS(2290), 1, + sym_type_conversion, + [72417] = 13, + ACTIONS(2245), 1, anon_sym_DOT, - ACTIONS(2292), 1, + ACTIONS(2247), 1, anon_sym_LPAREN, - ACTIONS(2300), 1, + ACTIONS(2255), 1, anon_sym_STAR_STAR, - ACTIONS(2302), 1, + ACTIONS(2257), 1, anon_sym_LBRACK, + ACTIONS(2267), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2294), 2, + ACTIONS(2249), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2306), 2, + ACTIONS(2251), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2261), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1280), 2, + STATE(1222), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2304), 3, + ACTIONS(2259), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, + ACTIONS(2433), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 21, + ACTIONS(2431), 18, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, @@ -86592,8 +87849,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -86601,30 +87856,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [71538] = 5, - ACTIONS(2483), 1, + [72483] = 5, + ACTIONS(740), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1033), 2, + STATE(1017), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2412), 5, + ACTIONS(1601), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2410), 29, + ACTIONS(1596), 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, @@ -86646,200 +87901,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71588] = 13, - ACTIONS(2134), 1, + [72533] = 8, + ACTIONS(2245), 1, anon_sym_DOT, - ACTIONS(2136), 1, + ACTIONS(2247), 1, anon_sym_LPAREN, - ACTIONS(2144), 1, + ACTIONS(2255), 1, anon_sym_STAR_STAR, - ACTIONS(2146), 1, + ACTIONS(2257), 1, anon_sym_LBRACK, - ACTIONS(2156), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2138), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2140), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2150), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1186), 2, + STATE(1222), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2148), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, - anon_sym_as, + ACTIONS(2441), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 18, + ACTIONS(2439), 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_RBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71654] = 15, - ACTIONS(2290), 1, - anon_sym_DOT, - ACTIONS(2292), 1, - anon_sym_LPAREN, - ACTIONS(2300), 1, - anon_sym_STAR_STAR, - ACTIONS(2302), 1, - anon_sym_LBRACK, - ACTIONS(2308), 1, - anon_sym_PIPE, - ACTIONS(2310), 1, - anon_sym_AMP, - ACTIONS(2312), 1, - anon_sym_CARET, + sym_type_conversion, + [72589] = 4, + ACTIONS(279), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2294), 2, + ACTIONS(264), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2296), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2306), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1280), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2304), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2423), 3, + anon_sym_COLON, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 16, + ACTIONS(262), 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_RBRACE, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [71724] = 14, - ACTIONS(2262), 1, - anon_sym_DOT, - ACTIONS(2264), 1, + [72637] = 20, + ACTIONS(2225), 1, + anon_sym_not, + ACTIONS(2247), 1, anon_sym_LPAREN, - ACTIONS(2272), 1, + ACTIONS(2255), 1, anon_sym_STAR_STAR, - ACTIONS(2274), 1, - anon_sym_LBRACK, - ACTIONS(2282), 1, + ACTIONS(2263), 1, + anon_sym_PIPE, + ACTIONS(2265), 1, anon_sym_AMP, - ACTIONS(2284), 1, + ACTIONS(2267), 1, anon_sym_CARET, + ACTIONS(2269), 1, + anon_sym_is, + ACTIONS(2273), 1, + anon_sym_DOT, + ACTIONS(2285), 1, + anon_sym_LBRACK, + STATE(1576), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2266), 2, + ACTIONS(2249), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2268), 2, + ACTIONS(2251), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2278), 2, + ACTIONS(2261), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1232), 2, + ACTIONS(2271), 2, + anon_sym_LT, + anon_sym_GT, + STATE(953), 2, + sym__not_in, + sym__is_not, + STATE(1222), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2276), 3, + ACTIONS(2259), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2417), 17, + ACTIONS(2201), 6, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_is, + ACTIONS(2253), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71792] = 8, - ACTIONS(2290), 1, - anon_sym_DOT, - ACTIONS(2292), 1, - anon_sym_LPAREN, - ACTIONS(2300), 1, - anon_sym_STAR_STAR, - ACTIONS(2302), 1, - anon_sym_LBRACK, + [72717] = 5, + ACTIONS(762), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1280), 2, - sym_argument_list, - sym_generator_expression, + STATE(997), 2, + sym_string, + aux_sym_concatenated_string_repeat1, ACTIONS(2419), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 26, + ACTIONS(2417), 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, @@ -86855,40 +88098,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [71848] = 10, - ACTIONS(2290), 1, + [72767] = 8, + ACTIONS(2245), 1, anon_sym_DOT, - ACTIONS(2292), 1, + ACTIONS(2247), 1, anon_sym_LPAREN, - ACTIONS(2300), 1, + ACTIONS(2255), 1, anon_sym_STAR_STAR, - ACTIONS(2302), 1, + ACTIONS(2257), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2294), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1280), 2, + STATE(1222), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2304), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, + ACTIONS(2437), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 23, + ACTIONS(2435), 26, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, @@ -86896,6 +88134,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -86906,95 +88146,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [71908] = 12, - ACTIONS(2134), 1, - anon_sym_DOT, - ACTIONS(2136), 1, - anon_sym_LPAREN, - ACTIONS(2144), 1, - anon_sym_STAR_STAR, - ACTIONS(2146), 1, - anon_sym_LBRACK, + [72823] = 4, + ACTIONS(279), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2138), 2, + ACTIONS(264), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2140), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2150), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1186), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2148), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 19, + ACTIONS(262), 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_async, - anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71972] = 14, - ACTIONS(2290), 1, + [72871] = 12, + ACTIONS(2245), 1, anon_sym_DOT, - ACTIONS(2292), 1, + ACTIONS(2247), 1, anon_sym_LPAREN, - ACTIONS(2300), 1, + ACTIONS(2255), 1, anon_sym_STAR_STAR, - ACTIONS(2302), 1, + ACTIONS(2257), 1, anon_sym_LBRACK, - ACTIONS(2310), 1, - anon_sym_AMP, - ACTIONS(2312), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2294), 2, + ACTIONS(2249), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2296), 2, + ACTIONS(2251), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2306), 2, + ACTIONS(2261), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1280), 2, + STATE(1222), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2304), 3, + ACTIONS(2259), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, + ACTIONS(2433), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 17, + ACTIONS(2431), 19, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -87005,6 +88233,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -87012,30 +88242,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [72040] = 5, - ACTIONS(2486), 1, + [72935] = 5, + ACTIONS(762), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1041), 2, + STATE(1039), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2412), 5, - anon_sym_as, + ACTIONS(1601), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2410), 29, + ACTIONS(1596), 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, @@ -87057,36 +88287,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72090] = 6, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(650), 1, + [72985] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1698), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1696), 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, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [73030] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(643), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(645), 5, + ACTIONS(2486), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 27, + ACTIONS(2484), 31, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -87102,17 +88371,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72141] = 3, + [73075] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 5, + ACTIONS(2502), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1647), 31, + ACTIONS(2500), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -87144,35 +88413,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72186] = 8, - ACTIONS(2350), 1, - anon_sym_DOT, - ACTIONS(2352), 1, - anon_sym_LPAREN, - ACTIONS(2360), 1, - anon_sym_STAR_STAR, - ACTIONS(2362), 1, - anon_sym_LBRACK, + [73120] = 5, + ACTIONS(784), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1405), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2419), 5, + STATE(1049), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2419), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 25, + ACTIONS(2417), 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, @@ -87191,47 +88457,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72241] = 11, - ACTIONS(2350), 1, - anon_sym_DOT, - ACTIONS(2352), 1, - anon_sym_LPAREN, - ACTIONS(2360), 1, - anon_sym_STAR_STAR, - ACTIONS(2362), 1, - anon_sym_LBRACK, + [73169] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2354), 2, + ACTIONS(1657), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2366), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1405), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2364), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 20, + ACTIONS(1652), 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_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -87241,89 +88499,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72302] = 15, - ACTIONS(2350), 1, - anon_sym_DOT, - ACTIONS(2352), 1, - anon_sym_LPAREN, - ACTIONS(2360), 1, - anon_sym_STAR_STAR, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2368), 1, - anon_sym_PIPE, - ACTIONS(2370), 1, - anon_sym_AMP, - ACTIONS(2372), 1, - anon_sym_CARET, + [73214] = 5, + ACTIONS(2504), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2354), 2, + STATE(1049), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2423), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2356), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2366), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1405), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2364), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2423), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 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_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [72371] = 8, - ACTIONS(2350), 1, + ACTIONS(2421), 29, anon_sym_DOT, - ACTIONS(2352), 1, anon_sym_LPAREN, - ACTIONS(2360), 1, - anon_sym_STAR_STAR, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1405), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2419), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2417), 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, @@ -87342,88 +88543,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72426] = 3, + [73263] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2474), 5, + ACTIONS(1774), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1777), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2472), 31, - sym_string_start, + ACTIONS(1771), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1767), 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [72471] = 10, - ACTIONS(2350), 1, - anon_sym_DOT, - ACTIONS(2352), 1, - anon_sym_LPAREN, - ACTIONS(2360), 1, - anon_sym_STAR_STAR, - ACTIONS(2362), 1, - anon_sym_LBRACK, + [73312] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2354), 2, + ACTIONS(2509), 5, anon_sym_STAR, - anon_sym_SLASH, - STATE(1405), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2364), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 22, + ACTIONS(2507), 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_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -87433,140 +88629,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72530] = 14, - ACTIONS(2350), 1, + [73357] = 8, + ACTIONS(2389), 1, anon_sym_DOT, - ACTIONS(2352), 1, + ACTIONS(2391), 1, anon_sym_LPAREN, - ACTIONS(2360), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2362), 1, + ACTIONS(2401), 1, anon_sym_LBRACK, - ACTIONS(2370), 1, - anon_sym_AMP, - ACTIONS(2372), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2354), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2356), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2366), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1405), 2, + STATE(1374), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2364), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, + ACTIONS(2441), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 16, + ACTIONS(2439), 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72597] = 13, - ACTIONS(2350), 1, + [73412] = 8, + ACTIONS(2333), 1, anon_sym_DOT, - ACTIONS(2352), 1, + ACTIONS(2335), 1, anon_sym_LPAREN, - ACTIONS(2360), 1, + ACTIONS(2343), 1, anon_sym_STAR_STAR, - ACTIONS(2362), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2372), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2354), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2356), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2366), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1405), 2, + STATE(1400), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2364), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, + ACTIONS(2433), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 17, + ACTIONS(2431), 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_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72662] = 8, - ACTIONS(2382), 1, - anon_sym_DOT, - ACTIONS(2384), 1, - anon_sym_LPAREN, - ACTIONS(2392), 1, - anon_sym_STAR_STAR, - ACTIONS(2394), 1, - anon_sym_LBRACK, + [73467] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1332), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2468), 5, + ACTIONS(264), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2466), 25, - anon_sym_RPAREN, + ACTIONS(262), 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, @@ -87585,86 +88765,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72717] = 12, - ACTIONS(2350), 1, + [73512] = 8, + ACTIONS(2389), 1, anon_sym_DOT, - ACTIONS(2352), 1, + ACTIONS(2391), 1, anon_sym_LPAREN, - ACTIONS(2360), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2362), 1, + ACTIONS(2401), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2354), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2356), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2366), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1405), 2, + STATE(1374), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2364), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, + ACTIONS(2437), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 18, + ACTIONS(2435), 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_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72780] = 8, - ACTIONS(2382), 1, - anon_sym_DOT, - ACTIONS(2384), 1, - anon_sym_LPAREN, - ACTIONS(2392), 1, - anon_sym_STAR_STAR, - ACTIONS(2394), 1, + [73567] = 6, + ACTIONS(279), 1, + anon_sym_COLON_EQ, + ACTIONS(2511), 1, anon_sym_LBRACK, + STATE(1983), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1332), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2458), 5, + ACTIONS(264), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2456), 25, + ACTIONS(262), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87683,17 +88857,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72835] = 3, + [73618] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(2515), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 31, + ACTIONS(2513), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -87725,30 +88899,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72880] = 3, + [73663] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(2486), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2484), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87767,19 +88941,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72925] = 3, + [73708] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 5, + ACTIONS(2519), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2479), 31, - sym_string_start, + ACTIONS(2517), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -87792,7 +88968,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -87808,36 +88983,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [72970] = 8, - ACTIONS(2382), 1, - anon_sym_DOT, - ACTIONS(2384), 1, - anon_sym_LPAREN, - ACTIONS(2392), 1, - anon_sym_STAR_STAR, - ACTIONS(2394), 1, + [73753] = 6, + ACTIONS(1603), 1, + anon_sym_COLON_EQ, + ACTIONS(2511), 1, anon_sym_LBRACK, + STATE(1984), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1332), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2419), 5, + ACTIONS(1601), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 25, + ACTIONS(1596), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87856,44 +89028,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73025] = 11, - ACTIONS(2382), 1, + [73804] = 10, + ACTIONS(2333), 1, anon_sym_DOT, - ACTIONS(2384), 1, + ACTIONS(2335), 1, anon_sym_LPAREN, - ACTIONS(2392), 1, + ACTIONS(2343), 1, anon_sym_STAR_STAR, - ACTIONS(2394), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2386), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2398), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1332), 2, + STATE(1400), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2396), 3, + ACTIONS(2347), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, + ACTIONS(2433), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 20, - anon_sym_RPAREN, + ACTIONS(2431), 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_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, @@ -87906,92 +89077,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73086] = 15, - ACTIONS(2382), 1, - anon_sym_DOT, - ACTIONS(2384), 1, - anon_sym_LPAREN, - ACTIONS(2392), 1, - anon_sym_STAR_STAR, - ACTIONS(2394), 1, - anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_PIPE, - ACTIONS(2402), 1, - anon_sym_AMP, - ACTIONS(2404), 1, - anon_sym_CARET, + [73863] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2386), 2, + ACTIONS(2523), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2388), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2398), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1332), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2396), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2423), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 15, - anon_sym_RPAREN, + ACTIONS(2521), 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, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73155] = 8, - ACTIONS(2382), 1, - anon_sym_DOT, - ACTIONS(2384), 1, - anon_sym_LPAREN, - ACTIONS(2392), 1, - anon_sym_STAR_STAR, - ACTIONS(2394), 1, - anon_sym_LBRACK, + [73908] = 4, + ACTIONS(279), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1332), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2419), 5, + ACTIONS(264), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 25, - anon_sym_RPAREN, + ACTIONS(262), 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, @@ -88007,46 +89161,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73210] = 10, - ACTIONS(2382), 1, - anon_sym_DOT, - ACTIONS(2384), 1, - anon_sym_LPAREN, - ACTIONS(2392), 1, - anon_sym_STAR_STAR, - ACTIONS(2394), 1, - anon_sym_LBRACK, + sym_type_conversion, + [73955] = 4, + ACTIONS(279), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2386), 2, + ACTIONS(264), 6, anon_sym_STAR, - anon_sym_SLASH, - STATE(1332), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2396), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, + anon_sym_COLON, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 22, - anon_sym_RPAREN, + ACTIONS(262), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -88056,173 +89204,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73269] = 14, - ACTIONS(2382), 1, - anon_sym_DOT, - ACTIONS(2384), 1, - anon_sym_LPAREN, - ACTIONS(2392), 1, - anon_sym_STAR_STAR, - ACTIONS(2394), 1, - anon_sym_LBRACK, - ACTIONS(2402), 1, - anon_sym_AMP, - ACTIONS(2404), 1, - anon_sym_CARET, + sym_type_conversion, + [74002] = 4, + ACTIONS(1603), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2386), 2, + ACTIONS(1601), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2388), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2398), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1332), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2396), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, + anon_sym_COLON, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 16, - anon_sym_RPAREN, + ACTIONS(1596), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73336] = 13, - ACTIONS(2382), 1, - anon_sym_DOT, - ACTIONS(2384), 1, - anon_sym_LPAREN, - ACTIONS(2392), 1, - anon_sym_STAR_STAR, - ACTIONS(2394), 1, - anon_sym_LBRACK, - ACTIONS(2404), 1, - anon_sym_CARET, + sym_type_conversion, + [74049] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2386), 2, + ACTIONS(2498), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2398), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1332), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2396), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 17, - anon_sym_RPAREN, + ACTIONS(2496), 31, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73401] = 12, - ACTIONS(2382), 1, + [74094] = 14, + ACTIONS(2333), 1, anon_sym_DOT, - ACTIONS(2384), 1, + ACTIONS(2335), 1, anon_sym_LPAREN, - ACTIONS(2392), 1, + ACTIONS(2343), 1, anon_sym_STAR_STAR, - ACTIONS(2394), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, + ACTIONS(2353), 1, + anon_sym_AMP, + ACTIONS(2355), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2386), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 2, + ACTIONS(2339), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2398), 2, + ACTIONS(2349), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1332), 2, + STATE(1400), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2396), 3, + ACTIONS(2347), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, + ACTIONS(2433), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 18, - anon_sym_RPAREN, + ACTIONS(2431), 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_AMP, - anon_sym_CARET, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73464] = 3, + [74161] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 5, + ACTIONS(2527), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 31, + ACTIONS(2525), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -88254,17 +89385,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73509] = 3, + [74206] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, + ACTIONS(2531), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 31, + ACTIONS(2529), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -88296,22 +89427,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73554] = 5, - ACTIONS(799), 1, - sym_string_start, + [74251] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1079), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1560), 4, + ACTIONS(2535), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 29, + ACTIONS(2533), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -88321,7 +89451,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -88340,75 +89469,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73603] = 3, + [74296] = 13, + ACTIONS(2333), 1, + anon_sym_DOT, + ACTIONS(2335), 1, + anon_sym_LPAREN, + ACTIONS(2343), 1, + anon_sym_STAR_STAR, + ACTIONS(2345), 1, + anon_sym_LBRACK, + ACTIONS(2355), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, + ACTIONS(2337), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2339), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2349), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1400), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2347), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2431), 17, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73648] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [74361] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 6, + ACTIONS(2539), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, + ACTIONS(2537), 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_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -88424,40 +89563,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [73695] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [74406] = 10, + ACTIONS(2389), 1, + anon_sym_DOT, + ACTIONS(2391), 1, + anon_sym_LPAREN, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 6, + ACTIONS(2393), 2, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, + STATE(1374), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2403), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2431), 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_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_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, @@ -88467,61 +89612,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [73742] = 4, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, + [74465] = 12, + ACTIONS(2333), 1, + anon_sym_DOT, + ACTIONS(2335), 1, + anon_sym_LPAREN, + ACTIONS(2343), 1, + anon_sym_STAR_STAR, + ACTIONS(2345), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 6, + ACTIONS(2337), 2, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2339), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2349), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1400), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2347), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2431), 18, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [73789] = 3, + [74528] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(264), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 31, + ACTIONS(262), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -88553,101 +89705,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73834] = 3, + [74573] = 13, + ACTIONS(2389), 1, + anon_sym_DOT, + ACTIONS(2391), 1, + anon_sym_LPAREN, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + anon_sym_LBRACK, + ACTIONS(2411), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(2393), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2395), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2405), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1374), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2403), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2431), 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_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73879] = 3, + [74638] = 12, + ACTIONS(2389), 1, + anon_sym_DOT, + ACTIONS(2391), 1, + anon_sym_LPAREN, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(2393), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2395), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2405), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1374), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2403), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2431), 18, + 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_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73924] = 3, + [74701] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2499), 5, + ACTIONS(2543), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 31, + ACTIONS(2541), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -88679,33 +89850,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73969] = 3, + [74746] = 6, + ACTIONS(279), 1, + anon_sym_COLON_EQ, + ACTIONS(659), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 5, + ACTIONS(650), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(652), 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, + ACTIONS(671), 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, @@ -88721,25 +89895,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74014] = 5, - ACTIONS(1557), 1, - anon_sym_COMMA, - ACTIONS(1562), 1, + [74797] = 6, + ACTIONS(279), 1, anon_sym_COLON_EQ, + ACTIONS(659), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 6, + ACTIONS(650), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(652), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 28, + ACTIONS(671), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_in, @@ -88764,29 +89940,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [74063] = 5, - ACTIONS(799), 1, - sym_string_start, + [74848] = 6, + ACTIONS(279), 1, + anon_sym_COLON_EQ, + ACTIONS(659), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1080), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2348), 4, + ACTIONS(650), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(652), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2346), 29, + ACTIONS(671), 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, @@ -88809,22 +89985,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74112] = 5, - ACTIONS(2501), 1, - sym_string_start, + [74899] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1080), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2412), 4, + ACTIONS(2547), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2410), 29, + ACTIONS(2545), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -88834,7 +90009,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -88853,77 +90027,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74161] = 5, + [74944] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 2, + ACTIONS(2551), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1629), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 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(1619), 17, + ACTIONS(2549), 31, 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_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [74210] = 6, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(2504), 1, - anon_sym_LBRACK, - STATE(1959), 1, - sym_type_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(259), 6, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(257), 27, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -88942,36 +90069,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74261] = 6, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, - ACTIONS(2504), 1, - anon_sym_LBRACK, - STATE(1960), 1, - sym_type_parameter, + [74989] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 6, + ACTIONS(2498), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 27, + ACTIONS(2496), 31, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -88987,30 +90111,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74312] = 3, + [75034] = 8, + ACTIONS(2361), 1, + anon_sym_DOT, + ACTIONS(2363), 1, + anon_sym_LPAREN, + ACTIONS(2371), 1, + anon_sym_STAR_STAR, + ACTIONS(2373), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2508), 5, + STATE(1365), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2433), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2506), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2431), 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, @@ -89029,17 +90158,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74357] = 3, + [75089] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 5, + ACTIONS(1668), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 31, + ACTIONS(1663), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89071,21 +90200,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74402] = 5, - ACTIONS(1562), 1, + [75134] = 5, + ACTIONS(279), 1, anon_sym_COLON_EQ, - ACTIONS(2510), 1, + ACTIONS(728), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 5, + ACTIONS(264), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 29, + ACTIONS(262), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89115,33 +90244,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74451] = 6, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(650), 1, - anon_sym_COLON, + [75183] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(643), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(645), 5, - anon_sym_as, + ACTIONS(1601), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 27, + ACTIONS(1596), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -89160,35 +90286,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74502] = 5, - ACTIONS(272), 1, + [75228] = 5, + ACTIONS(269), 1, + anon_sym_COMMA, + ACTIONS(279), 1, anon_sym_COLON_EQ, - ACTIONS(765), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, - anon_sym_as, + ACTIONS(264), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, + ACTIONS(262), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89204,33 +90329,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74551] = 3, + sym_type_conversion, + [75277] = 5, + ACTIONS(269), 1, + anon_sym_COMMA, + ACTIONS(279), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1686), 5, + ACTIONS(264), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(262), 28, 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, @@ -89246,17 +90373,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74596] = 3, + sym_type_conversion, + [75326] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1656), 5, + ACTIONS(1783), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 31, + ACTIONS(1781), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89288,33 +90416,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74641] = 6, - ACTIONS(272), 1, + [75371] = 5, + ACTIONS(279), 1, anon_sym_COLON_EQ, - ACTIONS(2512), 1, - anon_sym_LBRACK, - STATE(1911), 1, - sym_type_parameter, + ACTIONS(728), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 6, + ACTIONS(264), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 27, - sym__newline, - anon_sym_SEMI, + ACTIONS(262), 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, @@ -89333,159 +90460,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74692] = 6, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, - ACTIONS(2512), 1, - anon_sym_LBRACK, - STATE(1913), 1, - sym_type_parameter, + [75420] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 6, + ACTIONS(652), 2, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(659), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 27, - sym__newline, - anon_sym_SEMI, + ACTIONS(671), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [74743] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2516), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2514), 31, + ACTIONS(650), 17, 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, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74788] = 3, + [75469] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 5, + ACTIONS(652), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(659), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2518), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(671), 14, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(650), 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74833] = 3, + [75518] = 4, + ACTIONS(279), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2524), 5, + ACTIONS(264), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2522), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(262), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -89504,17 +90591,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74878] = 3, + [75565] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 5, + ACTIONS(2555), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2526), 31, + ACTIONS(2553), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89546,39 +90633,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74923] = 3, + [75610] = 11, + ACTIONS(2361), 1, + anon_sym_DOT, + ACTIONS(2363), 1, + anon_sym_LPAREN, + ACTIONS(2371), 1, + anon_sym_STAR_STAR, + ACTIONS(2373), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 5, + ACTIONS(2365), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2377), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1365), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2375), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2530), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2431), 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_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -89588,24 +90683,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74968] = 5, - ACTIONS(272), 1, + [75671] = 4, + ACTIONS(1603), 1, anon_sym_COLON_EQ, - ACTIONS(765), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, + ACTIONS(1601), 6, anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, + ACTIONS(1596), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -89614,6 +90707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -89632,80 +90726,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75017] = 8, - ACTIONS(2318), 1, + [75718] = 15, + ACTIONS(2361), 1, anon_sym_DOT, - ACTIONS(2320), 1, + ACTIONS(2363), 1, anon_sym_LPAREN, - ACTIONS(2328), 1, + ACTIONS(2371), 1, anon_sym_STAR_STAR, - ACTIONS(2330), 1, + ACTIONS(2373), 1, anon_sym_LBRACK, + ACTIONS(2379), 1, + anon_sym_PIPE, + ACTIONS(2381), 1, + anon_sym_AMP, + ACTIONS(2383), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1383), 2, + ACTIONS(2365), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2367), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2377), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1365), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2468), 5, + ACTIONS(2375), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2445), 3, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2466), 25, + ACTIONS(2443), 15, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75072] = 3, + [75787] = 4, + ACTIONS(279), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2474), 5, + ACTIONS(264), 6, anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2472), 31, - sym_string_start, + ACTIONS(262), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89721,33 +90823,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75117] = 3, + [75834] = 7, + ACTIONS(1603), 1, + anon_sym_COLON_EQ, + ACTIONS(1779), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2536), 5, + ACTIONS(1767), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1769), 4, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_PIPE, + ACTIONS(1774), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2534), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + ACTIONS(1771), 23, 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, @@ -89763,17 +90869,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75162] = 3, + [75887] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(2559), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 31, + ACTIONS(2557), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89805,38 +90911,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75207] = 8, - ACTIONS(2318), 1, - anon_sym_DOT, - ACTIONS(2320), 1, - anon_sym_LPAREN, - ACTIONS(2328), 1, - anon_sym_STAR_STAR, - ACTIONS(2330), 1, - anon_sym_LBRACK, + [75932] = 4, + ACTIONS(279), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1383), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2419), 5, + ACTIONS(264), 6, anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 25, - anon_sym_RPAREN, + ACTIONS(262), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89852,17 +90954,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75262] = 3, + [75979] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(2563), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 31, + ACTIONS(2561), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89894,47 +90996,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75307] = 11, - ACTIONS(2318), 1, - anon_sym_DOT, - ACTIONS(2320), 1, - anon_sym_LPAREN, - ACTIONS(2328), 1, - anon_sym_STAR_STAR, - ACTIONS(2330), 1, - anon_sym_LBRACK, + [76024] = 4, + ACTIONS(1603), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2322), 2, + ACTIONS(1601), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, - ACTIONS(2334), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1383), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2332), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 20, - anon_sym_RPAREN, + ACTIONS(1596), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -89944,82 +91039,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75368] = 15, - ACTIONS(2318), 1, - anon_sym_DOT, - ACTIONS(2320), 1, - anon_sym_LPAREN, - ACTIONS(2328), 1, - anon_sym_STAR_STAR, - ACTIONS(2330), 1, - anon_sym_LBRACK, - ACTIONS(2336), 1, - anon_sym_PIPE, - ACTIONS(2338), 1, - anon_sym_AMP, - ACTIONS(2340), 1, - anon_sym_CARET, + [76071] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2322), 2, + ACTIONS(2567), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2324), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2334), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1383), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2332), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2423), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 15, - anon_sym_RPAREN, + ACTIONS(2565), 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75437] = 8, - ACTIONS(2318), 1, + [76116] = 8, + ACTIONS(2361), 1, anon_sym_DOT, - ACTIONS(2320), 1, + ACTIONS(2363), 1, anon_sym_LPAREN, - ACTIONS(2328), 1, + ACTIONS(2371), 1, anon_sym_STAR_STAR, - ACTIONS(2330), 1, + ACTIONS(2373), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1383), 2, + STATE(1365), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2419), 5, + ACTIONS(2433), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 25, + ACTIONS(2431), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -90045,39 +91128,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75492] = 3, + [76171] = 10, + ACTIONS(2361), 1, + anon_sym_DOT, + ACTIONS(2363), 1, + anon_sym_LPAREN, + ACTIONS(2371), 1, + anon_sym_STAR_STAR, + ACTIONS(2373), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(2365), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + STATE(1365), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2375), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2431), 22, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -90087,108 +91177,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75537] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2552), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2550), 31, - sym__newline, - anon_sym_SEMI, + [76230] = 14, + ACTIONS(2389), 1, anon_sym_DOT, - anon_sym_from, + ACTIONS(2391), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, + ACTIONS(2399), 1, anon_sym_STAR_STAR, + ACTIONS(2401), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2409), 1, anon_sym_AMP, + ACTIONS(2411), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [75582] = 5, - ACTIONS(264), 1, - anon_sym_COMMA, - ACTIONS(272), 1, - anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 6, + ACTIONS(2393), 2, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2395), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2405), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1374), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2403), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 28, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2431), 16, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [75631] = 5, - ACTIONS(264), 1, + [76297] = 5, + ACTIONS(1598), 1, anon_sym_COMMA, - ACTIONS(272), 1, + ACTIONS(1603), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 6, + ACTIONS(1601), 6, anon_sym_STAR, anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 28, + ACTIONS(1596), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_as, @@ -90217,41 +91274,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [75680] = 5, + [76346] = 14, + ACTIONS(2361), 1, + anon_sym_DOT, + ACTIONS(2363), 1, + anon_sym_LPAREN, + ACTIONS(2371), 1, + anon_sym_STAR_STAR, + ACTIONS(2373), 1, + anon_sym_LBRACK, + ACTIONS(2381), 1, + anon_sym_AMP, + ACTIONS(2383), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(2365), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(650), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(686), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2367), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2377), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1365), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2375), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(643), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, + ACTIONS(2433), 3, anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2431), 16, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -90261,71 +91327,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75729] = 5, + [76413] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(1737), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(650), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(1732), 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, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75778] = 4, - ACTIONS(272), 1, + [76458] = 6, + ACTIONS(1603), 1, anon_sym_COLON_EQ, + ACTIONS(1777), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 6, + ACTIONS(1767), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1774), 5, anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, + ACTIONS(1771), 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, @@ -90348,30 +91414,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75825] = 3, + [76509] = 5, + ACTIONS(1603), 1, + anon_sym_COLON_EQ, + ACTIONS(2569), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 5, + ACTIONS(1601), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2479), 31, - sym_string_start, + ACTIONS(1596), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -90390,17 +91458,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75870] = 3, + [76558] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, + ACTIONS(2573), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 31, + ACTIONS(2571), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -90432,77 +91500,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75915] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [76603] = 13, + ACTIONS(2361), 1, + anon_sym_DOT, + ACTIONS(2363), 1, + anon_sym_LPAREN, + ACTIONS(2371), 1, + anon_sym_STAR_STAR, + ACTIONS(2373), 1, + anon_sym_LBRACK, + ACTIONS(2383), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 6, - anon_sym_as, + ACTIONS(2365), 2, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, + ACTIONS(2367), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2377), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1365), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2375), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2431), 17, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75962] = 4, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, + [76668] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 6, - anon_sym_as, + ACTIONS(2577), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 29, + ACTIONS(2575), 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_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90518,79 +91594,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76009] = 10, - ACTIONS(2318), 1, + [76713] = 12, + ACTIONS(2361), 1, anon_sym_DOT, - ACTIONS(2320), 1, + ACTIONS(2363), 1, anon_sym_LPAREN, - ACTIONS(2328), 1, + ACTIONS(2371), 1, anon_sym_STAR_STAR, - ACTIONS(2330), 1, + ACTIONS(2373), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2322), 2, + ACTIONS(2365), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1383), 2, + ACTIONS(2367), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2377), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1365), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2332), 3, + ACTIONS(2375), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, + ACTIONS(2433), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 22, + ACTIONS(2431), 18, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76068] = 3, + [76776] = 6, + ACTIONS(279), 1, + anon_sym_COLON_EQ, + ACTIONS(2579), 1, + anon_sym_LBRACK, + STATE(1957), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 5, + ACTIONS(264), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 31, + ACTIONS(262), 27, 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, @@ -90609,88 +91690,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76113] = 14, - ACTIONS(2318), 1, - anon_sym_DOT, - ACTIONS(2320), 1, - anon_sym_LPAREN, - ACTIONS(2328), 1, - anon_sym_STAR_STAR, - ACTIONS(2330), 1, + [76827] = 6, + ACTIONS(1603), 1, + anon_sym_COLON_EQ, + ACTIONS(2579), 1, anon_sym_LBRACK, - ACTIONS(2338), 1, - anon_sym_AMP, - ACTIONS(2340), 1, - anon_sym_CARET, + STATE(1958), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2322), 2, + ACTIONS(1601), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2324), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2334), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1383), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2332), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 16, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1596), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76180] = 8, - ACTIONS(2350), 1, - anon_sym_DOT, - ACTIONS(2352), 1, - anon_sym_LPAREN, - ACTIONS(2360), 1, - anon_sym_STAR_STAR, - ACTIONS(2362), 1, - anon_sym_LBRACK, + [76878] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1405), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2468), 5, + ACTIONS(1676), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2466), 25, + ACTIONS(1674), 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, @@ -90709,87 +91777,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76235] = 13, - ACTIONS(2318), 1, + [76923] = 8, + ACTIONS(2333), 1, anon_sym_DOT, - ACTIONS(2320), 1, + ACTIONS(2335), 1, anon_sym_LPAREN, - ACTIONS(2328), 1, + ACTIONS(2343), 1, anon_sym_STAR_STAR, - ACTIONS(2330), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2340), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2322), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2324), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2334), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1383), 2, + STATE(1400), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2332), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, - anon_sym_as, + ACTIONS(2441), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 17, - anon_sym_RPAREN, + ACTIONS(2439), 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_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76300] = 8, - ACTIONS(2350), 1, - anon_sym_DOT, - ACTIONS(2352), 1, - anon_sym_LPAREN, - ACTIONS(2360), 1, - anon_sym_STAR_STAR, - ACTIONS(2362), 1, - anon_sym_LBRACK, + [76978] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1405), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2458), 5, + ACTIONS(2583), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2456), 25, + ACTIONS(2581), 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, @@ -90808,84 +91866,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76355] = 12, - ACTIONS(2318), 1, + [77023] = 8, + ACTIONS(2361), 1, anon_sym_DOT, - ACTIONS(2320), 1, + ACTIONS(2363), 1, anon_sym_LPAREN, - ACTIONS(2328), 1, + ACTIONS(2371), 1, anon_sym_STAR_STAR, - ACTIONS(2330), 1, + ACTIONS(2373), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2322), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2324), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2334), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1383), 2, + STATE(1365), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2332), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, + ACTIONS(2441), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 18, + ACTIONS(2439), 25, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76418] = 3, + [77078] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2474), 5, - anon_sym_as, + ACTIONS(1694), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2472), 31, - sym_string_start, + ACTIONS(1692), 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_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90901,28 +91955,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76463] = 8, - ACTIONS(2318), 1, + [77123] = 8, + ACTIONS(2333), 1, + anon_sym_DOT, + ACTIONS(2335), 1, + anon_sym_LPAREN, + ACTIONS(2343), 1, + anon_sym_STAR_STAR, + ACTIONS(2345), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1400), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2437), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2435), 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_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [77178] = 8, + ACTIONS(2361), 1, anon_sym_DOT, - ACTIONS(2320), 1, + ACTIONS(2363), 1, anon_sym_LPAREN, - ACTIONS(2328), 1, + ACTIONS(2371), 1, anon_sym_STAR_STAR, - ACTIONS(2330), 1, + ACTIONS(2373), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1383), 2, + STATE(1365), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2458), 5, + ACTIONS(2437), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2456), 25, + ACTIONS(2435), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -90948,31 +92049,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76518] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [77233] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 6, - anon_sym_as, + ACTIONS(1694), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, + ACTIONS(1692), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -90991,31 +92091,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76565] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [77278] = 15, + ACTIONS(2333), 1, + anon_sym_DOT, + ACTIONS(2335), 1, + anon_sym_LPAREN, + ACTIONS(2343), 1, + anon_sym_STAR_STAR, + ACTIONS(2345), 1, + anon_sym_LBRACK, + ACTIONS(2351), 1, + anon_sym_PIPE, + ACTIONS(2353), 1, + anon_sym_AMP, + ACTIONS(2355), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 6, - anon_sym_as, + ACTIONS(2337), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2339), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2349), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1400), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2347), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2445), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2443), 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_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [77347] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1698), 5, + anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, + ACTIONS(1696), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -91034,27 +92187,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76612] = 4, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, + [77392] = 5, + ACTIONS(784), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 6, - anon_sym_as, + STATE(1047), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1601), 4, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 29, + ACTIONS(1596), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -91077,37 +92231,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76659] = 7, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, - ACTIONS(1631), 1, - anon_sym_COLON, + [77441] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1621), 4, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_PIPE, - ACTIONS(1626), 5, - anon_sym_as, + ACTIONS(2486), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 23, + ACTIONS(2484), 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, @@ -91123,30 +92272,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76712] = 3, + sym_type_conversion, + [77486] = 6, + ACTIONS(279), 1, + anon_sym_COLON_EQ, + ACTIONS(659), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2564), 5, + ACTIONS(650), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(652), 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, + ACTIONS(671), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -91165,30 +92318,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76757] = 3, + [77537] = 8, + ACTIONS(2389), 1, + anon_sym_DOT, + ACTIONS(2391), 1, + anon_sym_LPAREN, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 5, + STATE(1374), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2433), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2566), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2431), 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, @@ -91207,42 +92365,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76802] = 6, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(650), 1, - anon_sym_COLON, + [77592] = 11, + ACTIONS(2389), 1, + anon_sym_DOT, + ACTIONS(2391), 1, + anon_sym_LPAREN, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(643), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(645), 5, - anon_sym_as, + ACTIONS(2393), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2405), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1374), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2403), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2431), 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_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_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, @@ -91252,29 +92415,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76853] = 6, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(650), 1, - anon_sym_COLON, + [77653] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(643), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(645), 5, - anon_sym_as, + ACTIONS(2498), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 27, + ACTIONS(2496), 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, @@ -91297,62 +92456,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76904] = 6, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, - ACTIONS(1629), 1, - anon_sym_COLON, + sym_type_conversion, + [77698] = 15, + ACTIONS(2389), 1, + anon_sym_DOT, + ACTIONS(2391), 1, + anon_sym_LPAREN, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + anon_sym_LBRACK, + ACTIONS(2407), 1, + anon_sym_PIPE, + ACTIONS(2409), 1, + anon_sym_AMP, + ACTIONS(2411), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1626), 5, - anon_sym_as, + ACTIONS(2393), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2395), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2405), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1374), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2403), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2445), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2443), 15, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76955] = 3, + [77767] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, + ACTIONS(1730), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 31, + ACTIONS(1728), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -91384,17 +92553,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77000] = 3, + [77812] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, + ACTIONS(2587), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 31, + ACTIONS(2585), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -91426,33 +92595,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77045] = 3, + [77857] = 8, + ACTIONS(2389), 1, + anon_sym_DOT, + ACTIONS(2391), 1, + anon_sym_LPAREN, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 5, - anon_sym_as, + STATE(1374), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2433), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2479), 31, - sym_string_start, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2431), 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_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91468,30 +92642,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77090] = 3, + [77912] = 8, + ACTIONS(2333), 1, + anon_sym_DOT, + ACTIONS(2335), 1, + anon_sym_LPAREN, + ACTIONS(2343), 1, + anon_sym_STAR_STAR, + ACTIONS(2345), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 5, + STATE(1400), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2433), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2574), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2431), 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, @@ -91510,39 +92689,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77135] = 3, + [77967] = 11, + ACTIONS(2333), 1, + anon_sym_DOT, + ACTIONS(2335), 1, + anon_sym_LPAREN, + ACTIONS(2343), 1, + anon_sym_STAR_STAR, + ACTIONS(2345), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, + ACTIONS(2337), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2349), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1400), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2347), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2431), 20, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -91552,23 +92739,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77180] = 3, + [78028] = 4, + ACTIONS(279), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2564), 5, + ACTIONS(264), 6, anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 30, + ACTIONS(262), 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, @@ -91593,31 +92782,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77224] = 3, + [78075] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 5, + ACTIONS(2563), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2518), 30, + ACTIONS(2561), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91633,18 +92823,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77268] = 3, + [78119] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2474), 5, + ACTIONS(2498), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2472), 30, + ACTIONS(2496), 30, sym_string_start, anon_sym_DOT, anon_sym_LPAREN, @@ -91675,18 +92864,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77312] = 5, + [78163] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 2, + ACTIONS(1774), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1629), 3, + ACTIONS(1777), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 14, + ACTIONS(1771), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -91701,7 +92890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1619), 16, + ACTIONS(1767), 16, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -91718,17 +92907,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [77360] = 3, + [78211] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(1737), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 30, + ACTIONS(1732), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91759,31 +92948,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [77404] = 3, + [78255] = 8, + ACTIONS(2447), 1, + anon_sym_DOT, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + anon_sym_STAR_STAR, + ACTIONS(2459), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 5, + STATE(1439), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2441), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2439), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91799,28 +92994,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77448] = 8, - ACTIONS(2428), 1, + [78309] = 8, + ACTIONS(2447), 1, anon_sym_DOT, - ACTIONS(2430), 1, + ACTIONS(2449), 1, anon_sym_LPAREN, - ACTIONS(2438), 1, + ACTIONS(2457), 1, anon_sym_STAR_STAR, - ACTIONS(2440), 1, + ACTIONS(2459), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1421), 2, + STATE(1439), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2468), 4, + ACTIONS(2437), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2466), 25, + ACTIONS(2435), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -91846,37 +93040,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77502] = 8, - ACTIONS(2428), 1, + [78363] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1730), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1728), 30, anon_sym_DOT, - ACTIONS(2430), 1, anon_sym_LPAREN, - ACTIONS(2438), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(2440), 1, anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [78407] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1421), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2458), 4, + ACTIONS(1698), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2456), 25, + ACTIONS(1696), 30, + 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, @@ -91892,24 +93121,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77556] = 3, + sym_type_conversion, + [78451] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(2519), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 30, + ACTIONS(2517), 30, 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, @@ -91932,18 +93163,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77600] = 3, + [78495] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 5, + ACTIONS(2567), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 30, + ACTIONS(2565), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91955,10 +93185,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91974,17 +93204,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77644] = 3, + [78539] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 5, + ACTIONS(2486), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2479), 30, + ACTIONS(2484), 30, sym_string_start, anon_sym_DOT, anon_sym_LPAREN, @@ -92015,17 +93245,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77688] = 3, + [78583] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1686), 5, + ACTIONS(1657), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 30, + ACTIONS(1652), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92056,17 +93286,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [77732] = 3, + [78627] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1656), 5, + ACTIONS(1668), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 30, + ACTIONS(1663), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92097,27 +93327,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [77776] = 8, - ACTIONS(2428), 1, + [78671] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2509), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2507), 30, anon_sym_DOT, - ACTIONS(2430), 1, anon_sym_LPAREN, - ACTIONS(2438), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(2440), 1, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [78715] = 8, + ACTIONS(2447), 1, + anon_sym_DOT, + ACTIONS(2449), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + anon_sym_STAR_STAR, + ACTIONS(2459), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1421), 2, + STATE(1439), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2419), 4, + ACTIONS(2433), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 25, + ACTIONS(2431), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -92143,35 +93414,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77830] = 11, - ACTIONS(2428), 1, + [78769] = 11, + ACTIONS(2447), 1, anon_sym_DOT, - ACTIONS(2430), 1, + ACTIONS(2449), 1, anon_sym_LPAREN, - ACTIONS(2438), 1, + ACTIONS(2457), 1, anon_sym_STAR_STAR, - ACTIONS(2440), 1, + ACTIONS(2459), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2419), 2, + ACTIONS(2433), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2432), 2, + ACTIONS(2451), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2444), 2, + ACTIONS(2463), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1421), 2, + STATE(1439), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2442), 3, + ACTIONS(2461), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2417), 20, + ACTIONS(2431), 20, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -92192,44 +93463,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77890] = 15, - ACTIONS(2428), 1, + [78829] = 15, + ACTIONS(2447), 1, anon_sym_DOT, - ACTIONS(2430), 1, + ACTIONS(2449), 1, anon_sym_LPAREN, - ACTIONS(2438), 1, + ACTIONS(2457), 1, anon_sym_STAR_STAR, - ACTIONS(2440), 1, + ACTIONS(2459), 1, anon_sym_LBRACK, - ACTIONS(2446), 1, + ACTIONS(2465), 1, anon_sym_PIPE, - ACTIONS(2448), 1, + ACTIONS(2467), 1, anon_sym_AMP, - ACTIONS(2450), 1, + ACTIONS(2469), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2423), 2, + ACTIONS(2445), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2432), 2, + ACTIONS(2451), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2434), 2, + ACTIONS(2453), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2444), 2, + ACTIONS(2463), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1421), 2, + STATE(1439), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2442), 3, + ACTIONS(2461), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2421), 15, + ACTIONS(2443), 15, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -92245,27 +93516,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77958] = 8, - ACTIONS(2428), 1, + [78897] = 8, + ACTIONS(2447), 1, anon_sym_DOT, - ACTIONS(2430), 1, + ACTIONS(2449), 1, anon_sym_LPAREN, - ACTIONS(2438), 1, + ACTIONS(2457), 1, anon_sym_STAR_STAR, - ACTIONS(2440), 1, + ACTIONS(2459), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1421), 2, + STATE(1439), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2419), 4, + ACTIONS(2433), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 25, + ACTIONS(2431), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -92291,32 +93562,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78012] = 10, - ACTIONS(2428), 1, + [78951] = 10, + ACTIONS(2447), 1, anon_sym_DOT, - ACTIONS(2430), 1, + ACTIONS(2449), 1, anon_sym_LPAREN, - ACTIONS(2438), 1, + ACTIONS(2457), 1, anon_sym_STAR_STAR, - ACTIONS(2440), 1, + ACTIONS(2459), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2419), 2, + ACTIONS(2433), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2432), 2, + ACTIONS(2451), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1421), 2, + STATE(1439), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2442), 3, + ACTIONS(2461), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2417), 22, + ACTIONS(2431), 22, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -92339,42 +93610,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78070] = 14, - ACTIONS(2428), 1, + [79009] = 14, + ACTIONS(2447), 1, anon_sym_DOT, - ACTIONS(2430), 1, + ACTIONS(2449), 1, anon_sym_LPAREN, - ACTIONS(2438), 1, + ACTIONS(2457), 1, anon_sym_STAR_STAR, - ACTIONS(2440), 1, + ACTIONS(2459), 1, anon_sym_LBRACK, - ACTIONS(2448), 1, + ACTIONS(2467), 1, anon_sym_AMP, - ACTIONS(2450), 1, + ACTIONS(2469), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2419), 2, + ACTIONS(2433), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2432), 2, + ACTIONS(2451), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2434), 2, + ACTIONS(2453), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2444), 2, + ACTIONS(2463), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1421), 2, + STATE(1439), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2442), 3, + ACTIONS(2461), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2417), 16, + ACTIONS(2431), 16, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -92391,40 +93662,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78136] = 13, - ACTIONS(2428), 1, + [79075] = 13, + ACTIONS(2447), 1, anon_sym_DOT, - ACTIONS(2430), 1, + ACTIONS(2449), 1, anon_sym_LPAREN, - ACTIONS(2438), 1, + ACTIONS(2457), 1, anon_sym_STAR_STAR, - ACTIONS(2440), 1, + ACTIONS(2459), 1, anon_sym_LBRACK, - ACTIONS(2450), 1, + ACTIONS(2469), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2419), 2, + ACTIONS(2433), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2432), 2, + ACTIONS(2451), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2434), 2, + ACTIONS(2453), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2444), 2, + ACTIONS(2463), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1421), 2, + STATE(1439), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2442), 3, + ACTIONS(2461), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2417), 17, + ACTIONS(2431), 17, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -92442,38 +93713,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78200] = 12, - ACTIONS(2428), 1, + [79139] = 12, + ACTIONS(2447), 1, anon_sym_DOT, - ACTIONS(2430), 1, + ACTIONS(2449), 1, anon_sym_LPAREN, - ACTIONS(2438), 1, + ACTIONS(2457), 1, anon_sym_STAR_STAR, - ACTIONS(2440), 1, + ACTIONS(2459), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2419), 2, + ACTIONS(2433), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2432), 2, + ACTIONS(2451), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2434), 2, + ACTIONS(2453), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2444), 2, + ACTIONS(2463), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1421), 2, + STATE(1439), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2442), 3, + ACTIONS(2461), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2417), 18, + ACTIONS(2431), 18, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -92492,18 +93763,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78262] = 5, + [79201] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(652), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(650), 3, + ACTIONS(659), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(671), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -92518,7 +93789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 16, + ACTIONS(650), 16, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, @@ -92535,18 +93806,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78310] = 5, + [79249] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(652), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(650), 3, + ACTIONS(659), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(671), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -92561,7 +93832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 16, + ACTIONS(650), 16, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, @@ -92578,18 +93849,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78358] = 5, + [79297] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(652), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(650), 3, + ACTIONS(659), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(671), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -92604,7 +93875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 16, + ACTIONS(650), 16, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, @@ -92621,104 +93892,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78406] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(645), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(650), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(686), 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(643), 16, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [78454] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1626), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1629), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1623), 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(1619), 16, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [78502] = 5, + [79345] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 2, + ACTIONS(652), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1629), 3, + ACTIONS(659), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 14, + ACTIONS(671), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -92733,7 +93918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1619), 16, + ACTIONS(650), 16, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, @@ -92750,279 +93935,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78550] = 4, - ACTIONS(272), 1, + [79393] = 5, + ACTIONS(279), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 6, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(257), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_else, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [78596] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(259), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(257), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [78642] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(259), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(257), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(269), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [78688] = 4, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1560), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1555), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [78734] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2508), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2506), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - sym_type_conversion, - [78778] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2524), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2522), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - sym_type_conversion, - [78822] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(259), 5, + ACTIONS(264), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 30, + ACTIONS(262), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -93041,19 +93978,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78866] = 3, + [79441] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, + ACTIONS(1676), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 30, + ACTIONS(1674), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -93063,7 +94001,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -93082,17 +94019,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78910] = 3, + [79485] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(2577), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 30, + ACTIONS(2575), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93104,10 +94041,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93123,107 +94060,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78954] = 3, + [79529] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, - anon_sym_as, + ACTIONS(1774), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1777), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 30, + ACTIONS(1771), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1767), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78998] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [79577] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 6, + ACTIONS(1774), 2, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1777), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 28, + ACTIONS(1771), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1767), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79044] = 3, + [79625] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2516), 5, + ACTIONS(2539), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2514), 30, + ACTIONS(2537), 30, 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, @@ -93246,34 +94187,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79088] = 4, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, + [79669] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 6, + ACTIONS(2583), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 28, + ACTIONS(2581), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_else, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93289,24 +94228,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79134] = 3, + [79713] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 5, + ACTIONS(1694), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2479), 30, - sym_string_start, + ACTIONS(1692), 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, @@ -93330,31 +94269,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79178] = 5, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, + [79757] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1626), 5, + ACTIONS(1698), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 27, + ACTIONS(1696), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -93373,26 +94310,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79226] = 5, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [79801] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(264), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(259), 5, + ACTIONS(1698), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 27, + ACTIONS(1696), 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, @@ -93416,31 +94351,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79274] = 3, + [79845] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 5, + ACTIONS(1694), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2526), 30, + ACTIONS(1692), 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, @@ -93456,18 +94392,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79318] = 3, + [79889] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2536), 5, + ACTIONS(1730), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2534), 30, + ACTIONS(1728), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93498,17 +94433,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79362] = 3, + [79933] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, + ACTIONS(2547), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 30, + ACTIONS(2545), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93520,10 +94455,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93539,17 +94474,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79406] = 3, + [79977] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 5, + ACTIONS(2519), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 30, + ACTIONS(2517), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93580,17 +94515,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79450] = 3, + [80021] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 5, + ACTIONS(1601), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2574), 30, + ACTIONS(1596), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93621,17 +94556,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79494] = 3, + [80065] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 5, + ACTIONS(2567), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2566), 30, + ACTIONS(2565), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93662,17 +94597,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79538] = 3, + [80109] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2499), 5, + ACTIONS(2543), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 30, + ACTIONS(2541), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93684,10 +94619,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93703,31 +94638,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79582] = 3, + [80153] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 5, + ACTIONS(2509), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2530), 30, + ACTIONS(2507), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93743,18 +94679,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79626] = 3, + [80197] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(2555), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 30, + ACTIONS(2553), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93766,10 +94701,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93785,17 +94720,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79670] = 3, + [80241] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, + ACTIONS(2531), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 30, + ACTIONS(2529), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93807,10 +94742,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93826,17 +94761,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79714] = 3, + [80285] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 5, + ACTIONS(2527), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2518), 30, + ACTIONS(2525), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93848,10 +94783,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93867,17 +94802,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79758] = 3, + [80329] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(2515), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 30, + ACTIONS(2513), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93889,10 +94824,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93908,17 +94843,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79802] = 3, + [80373] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(2535), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 30, + ACTIONS(2533), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93930,10 +94865,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93949,20 +94884,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79846] = 3, + [80417] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 5, + ACTIONS(2587), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 30, + ACTIONS(2585), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -93975,6 +94909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93990,17 +94925,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79890] = 3, + [80461] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2508), 5, + ACTIONS(1783), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2506), 30, + ACTIONS(1781), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94031,17 +94966,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79934] = 3, + [80505] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2524), 5, + ACTIONS(2559), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2522), 30, + ACTIONS(2557), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94053,10 +94988,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94072,17 +95007,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79978] = 3, + [80549] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2516), 5, + ACTIONS(2502), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2514), 30, + ACTIONS(2500), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94094,10 +95029,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94113,17 +95048,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80022] = 3, + [80593] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 5, + ACTIONS(2523), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2526), 30, + ACTIONS(2521), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94135,10 +95070,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94154,17 +95089,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80066] = 3, + [80637] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 5, + ACTIONS(1676), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2530), 30, + ACTIONS(1674), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94195,17 +95130,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80110] = 3, + [80681] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(1694), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 30, + ACTIONS(1692), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94236,17 +95171,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80154] = 3, + [80725] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(1694), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 30, + ACTIONS(1692), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94277,17 +95212,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80198] = 3, + [80769] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 5, + ACTIONS(2551), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 30, + ACTIONS(2549), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94318,20 +95253,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80242] = 3, + [80813] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, + ACTIONS(2573), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 30, + ACTIONS(2571), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -94344,6 +95278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94359,32 +95294,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80286] = 4, - ACTIONS(1642), 1, - anon_sym_COMMA, + [80857] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 5, + ACTIONS(1698), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 29, + ACTIONS(1696), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94400,21 +95335,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80332] = 3, + [80901] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, + ACTIONS(1698), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 30, + ACTIONS(1696), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -94424,6 +95357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -94442,21 +95376,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80376] = 4, - ACTIONS(1557), 1, - anon_sym_COMMA, + [80945] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 5, + ACTIONS(1601), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 29, + ACTIONS(1596), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -94484,25 +95417,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [80422] = 4, - ACTIONS(1683), 1, - anon_sym_COMMA, + [80989] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1686), 5, + ACTIONS(1657), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 29, + ACTIONS(1652), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -94525,113 +95458,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80468] = 5, + [81033] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(1767), 3, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + ACTIONS(1774), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(650), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(1771), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(643), 16, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - sym_type_conversion, - [80516] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(645), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(650), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(686), 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(643), 16, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80564] = 4, + [81079] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 3, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - ACTIONS(1626), 5, + ACTIONS(1737), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 27, + ACTIONS(1732), 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, @@ -94654,31 +95541,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80610] = 5, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, + [81123] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1557), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1560), 5, + ACTIONS(2577), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 27, + ACTIONS(2575), 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, @@ -94697,30 +95582,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80658] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [81167] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 6, + ACTIONS(2539), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 28, + ACTIONS(2537), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -94739,30 +95623,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80704] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [81211] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 6, + ACTIONS(2583), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 28, + ACTIONS(2581), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -94781,33 +95664,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80750] = 4, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, + [81255] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 6, + ACTIONS(1668), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 28, + ACTIONS(1663), 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, @@ -94823,32 +95705,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80796] = 3, + [81299] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 5, - anon_sym_as, + ACTIONS(264), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1647), 30, + ACTIONS(262), 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, @@ -94864,21 +95745,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80840] = 4, - ACTIONS(1653), 1, - anon_sym_COMMA, + sym_type_conversion, + [81343] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1656), 5, + ACTIONS(264), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 29, + ACTIONS(262), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -94906,25 +95787,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [80886] = 3, + [81387] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, - anon_sym_as, + ACTIONS(2563), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 30, + ACTIONS(2561), 30, 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, @@ -94947,17 +95827,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80930] = 3, + sym_type_conversion, + [81431] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, + ACTIONS(2547), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 30, + ACTIONS(2545), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94969,10 +95850,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94988,23 +95869,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80974] = 3, + [81475] = 4, + ACTIONS(279), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(264), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 30, + ACTIONS(262), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -95013,7 +95896,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95029,24 +95911,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81018] = 5, - ACTIONS(1562), 1, + [81521] = 4, + ACTIONS(279), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1557), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1560), 5, + ACTIONS(264), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 27, + ACTIONS(262), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -95072,31 +95953,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81066] = 5, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [81567] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(643), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(645), 5, + ACTIONS(2543), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 27, + ACTIONS(2541), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -95115,31 +95994,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81114] = 3, + [81611] = 4, + ACTIONS(1603), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(1601), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 30, + ACTIONS(1596), 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, @@ -95155,32 +96036,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [81158] = 3, + [81657] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 5, + ACTIONS(2555), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1647), 30, + ACTIONS(2553), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95196,35 +96077,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [81202] = 5, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [81701] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(643), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(645), 5, - anon_sym_as, + ACTIONS(2519), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 27, + ACTIONS(2517), 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, @@ -95240,32 +96117,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81250] = 6, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(1569), 1, - anon_sym_LBRACK, - STATE(2095), 1, - sym_type_parameter, + sym_type_conversion, + [81745] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 6, + ACTIONS(2531), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 26, + ACTIONS(2529), 30, 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, @@ -95284,31 +96159,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81300] = 5, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, + [81789] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1626), 5, + ACTIONS(2527), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 27, + ACTIONS(2525), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -95327,23 +96200,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81348] = 3, + [81833] = 5, + ACTIONS(279), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 5, + ACTIONS(269), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(264), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 30, + ACTIONS(262), 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, @@ -95352,7 +96228,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95368,23 +96243,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81392] = 3, + [81881] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2536), 5, + ACTIONS(2486), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2534), 30, + ACTIONS(2484), 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, @@ -95393,7 +96269,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95409,32 +96284,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81436] = 3, + [81925] = 6, + ACTIONS(279), 1, + anon_sym_COLON_EQ, + ACTIONS(1610), 1, + anon_sym_LBRACK, + STATE(2113), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, - anon_sym_as, + ACTIONS(264), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 30, + ACTIONS(262), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95450,25 +96328,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81480] = 3, + [81975] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 5, - anon_sym_as, + ACTIONS(1698), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 30, + ACTIONS(1696), 30, 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, @@ -95491,17 +96368,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81524] = 3, + sym_type_conversion, + [82019] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(2509), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 30, + ACTIONS(2507), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95532,31 +96410,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [81568] = 3, + [82063] = 6, + ACTIONS(1603), 1, + anon_sym_COLON_EQ, + ACTIONS(1610), 1, + anon_sym_LBRACK, + STATE(2004), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(1601), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 30, + ACTIONS(1596), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95572,18 +96454,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [81612] = 3, + [82113] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 5, + ACTIONS(1657), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2574), 30, + ACTIONS(1652), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95595,10 +96476,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95614,17 +96495,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81656] = 3, + [82157] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 5, + ACTIONS(1668), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2566), 30, + ACTIONS(1663), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95636,10 +96517,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95655,25 +96536,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81700] = 3, + [82201] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2564), 5, - anon_sym_as, + ACTIONS(2577), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 30, + ACTIONS(2575), 30, 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, @@ -95696,17 +96576,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81744] = 3, + sym_type_conversion, + [82245] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(2539), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 30, + ACTIONS(2537), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95737,32 +96618,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [81788] = 3, + [82289] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 5, - anon_sym_as, + ACTIONS(2583), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1647), 30, + ACTIONS(2581), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95778,17 +96658,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81832] = 3, + sym_type_conversion, + [82333] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2499), 5, + ACTIONS(2515), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 30, + ACTIONS(2513), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95800,10 +96681,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95819,35 +96700,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81876] = 6, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, - ACTIONS(1569), 1, - anon_sym_LBRACK, - STATE(2096), 1, - sym_type_parameter, + [82377] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 6, + ACTIONS(2547), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 26, + ACTIONS(2545), 30, 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, @@ -95863,31 +96740,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81926] = 6, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(2470), 1, - anon_sym_LBRACK, - STATE(2092), 1, - sym_type_parameter, + sym_type_conversion, + [82421] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, + ACTIONS(2535), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 27, + ACTIONS(2533), 30, 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, @@ -95907,31 +96782,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81976] = 6, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, - ACTIONS(2470), 1, - anon_sym_LBRACK, - STATE(2094), 1, - sym_type_parameter, + [82465] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 5, + ACTIONS(2587), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 27, + ACTIONS(2585), 30, 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, @@ -95951,17 +96823,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82026] = 3, + [82509] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(2559), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 30, + ACTIONS(2557), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95973,10 +96845,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95992,17 +96864,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82070] = 3, + [82553] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, + ACTIONS(2502), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 30, + ACTIONS(2500), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96014,10 +96886,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96033,17 +96905,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82114] = 3, + [82597] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 5, + ACTIONS(2523), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2518), 30, + ACTIONS(2521), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96055,10 +96927,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96074,25 +96946,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82158] = 3, + [82641] = 5, + ACTIONS(1603), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(1767), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1774), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 30, + ACTIONS(1771), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [82689] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2543), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2541), 30, 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, @@ -96115,25 +97029,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82202] = 3, + sym_type_conversion, + [82733] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, - anon_sym_as, + ACTIONS(2555), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 30, + ACTIONS(2553), 30, 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, @@ -96156,25 +97070,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82246] = 3, + sym_type_conversion, + [82777] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2508), 5, - anon_sym_as, + ACTIONS(2531), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2506), 30, + ACTIONS(2529), 30, 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, @@ -96197,25 +97111,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82290] = 3, + sym_type_conversion, + [82821] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2524), 5, + ACTIONS(2527), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2525), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [82865] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2515), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2522), 30, + ACTIONS(2513), 30, 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, @@ -96238,17 +97193,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82334] = 3, + sym_type_conversion, + [82909] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(2551), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 30, + ACTIONS(2549), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96279,25 +97235,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82378] = 3, + [82953] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2516), 5, - anon_sym_as, + ACTIONS(2535), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2514), 30, + ACTIONS(2533), 30, 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, @@ -96320,25 +97275,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82422] = 3, + sym_type_conversion, + [82997] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 5, - anon_sym_as, + ACTIONS(2587), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2526), 30, + ACTIONS(2585), 30, 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, @@ -96361,17 +97316,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82466] = 3, + sym_type_conversion, + [83041] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 5, + ACTIONS(2573), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2530), 30, + ACTIONS(2571), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96383,10 +97339,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96402,32 +97358,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82510] = 3, + [83085] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 5, - anon_sym_as, + ACTIONS(2559), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 30, + ACTIONS(2557), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96443,32 +97398,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82554] = 3, + sym_type_conversion, + [83129] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, - anon_sym_as, + ACTIONS(2502), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 30, + ACTIONS(2500), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96484,32 +97439,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82598] = 3, + sym_type_conversion, + [83173] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, - anon_sym_as, + ACTIONS(2523), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 30, + ACTIONS(2521), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96525,25 +97480,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82642] = 3, + sym_type_conversion, + [83217] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, - anon_sym_as, + ACTIONS(2551), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 30, + ACTIONS(2549), 30, 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, @@ -96566,25 +97521,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82686] = 3, + sym_type_conversion, + [83261] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, - anon_sym_as, + ACTIONS(2573), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 30, + ACTIONS(2571), 30, 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, @@ -96607,17 +97562,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82730] = 3, + sym_type_conversion, + [83305] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(1601), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 30, + ACTIONS(1596), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96629,10 +97585,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96648,29 +97604,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82774] = 3, + [83349] = 5, + ACTIONS(279), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(650), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(652), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 30, + ACTIONS(671), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96689,34 +97647,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82818] = 5, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [83397] = 4, + ACTIONS(1734), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(264), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(259), 5, - anon_sym_as, + ACTIONS(1737), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 27, + ACTIONS(1732), 29, anon_sym_DOT, anon_sym_LPAREN, + 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, @@ -96732,20 +97688,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82866] = 3, + sym_type_conversion, + [83443] = 4, + ACTIONS(1598), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 5, + ACTIONS(1601), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 30, + ACTIONS(1596), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -96773,22 +97731,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [82910] = 5, - ACTIONS(272), 1, + [83489] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2486), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2484), 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_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [83533] = 5, + ACTIONS(1603), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(264), 2, - anon_sym_RPAREN, + ACTIONS(1598), 2, anon_sym_COMMA, - ACTIONS(259), 5, + anon_sym_RBRACK, + ACTIONS(1601), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 27, + ACTIONS(1596), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -96816,33 +97815,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82958] = 4, + [83581] = 4, + ACTIONS(1654), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 3, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - ACTIONS(1626), 5, + ACTIONS(1657), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1652), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [83627] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2498), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 27, + ACTIONS(2496), 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_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, @@ -96858,17 +97898,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83004] = 3, + [83671] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 5, + ACTIONS(264), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 30, + ACTIONS(262), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96899,40 +97939,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83048] = 3, + [83715] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, + ACTIONS(652), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(659), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 30, + ACTIONS(671), 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(650), 16, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [83763] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(652), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(659), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(671), 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_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(650), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -96940,31 +98025,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [83092] = 3, + [83811] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, + ACTIONS(1767), 3, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + ACTIONS(1774), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 30, + ACTIONS(1771), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96980,32 +98067,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [83136] = 3, + [83857] = 5, + ACTIONS(279), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, + ACTIONS(650), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(652), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 30, + ACTIONS(671), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97021,32 +98110,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [83180] = 3, + [83905] = 4, + ACTIONS(279), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(264), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 30, + ACTIONS(262), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97062,32 +98152,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [83224] = 3, + [83951] = 4, + ACTIONS(279), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(264), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 30, + ACTIONS(262), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97103,27 +98194,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [83268] = 3, + [83997] = 4, + ACTIONS(1603), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2474), 5, - anon_sym_as, + ACTIONS(1601), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2472), 30, - sym_string_start, + ACTIONS(1596), 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, @@ -97145,26 +98236,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83312] = 3, + [84043] = 5, + ACTIONS(1603), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(1767), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1774), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 30, + ACTIONS(1771), 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, @@ -97186,20 +98279,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83356] = 3, + [84091] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(1737), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 30, + ACTIONS(1732), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -97212,6 +98304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97227,29 +98320,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83400] = 3, + [84135] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 5, + ACTIONS(264), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2479), 30, - sym_string_start, + ACTIONS(262), 30, 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, @@ -97268,31 +98361,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83444] = 3, + [84179] = 5, + ACTIONS(1603), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 5, + ACTIONS(1598), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1601), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 30, + ACTIONS(1596), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97308,32 +98404,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [83488] = 3, + [84227] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, + ACTIONS(2498), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 30, + ACTIONS(2496), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97349,32 +98445,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [83532] = 3, + [84271] = 5, + ACTIONS(279), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2536), 5, + ACTIONS(269), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(264), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2534), 30, + ACTIONS(262), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [84319] = 5, + ACTIONS(279), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(264), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(262), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97390,32 +98531,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [83576] = 3, + [84367] = 4, + ACTIONS(279), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, + ACTIONS(264), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 30, + ACTIONS(262), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97431,32 +98573,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [83620] = 3, + [84413] = 4, + ACTIONS(279), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, + ACTIONS(264), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 30, + ACTIONS(262), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97472,32 +98615,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [83664] = 3, + [84459] = 4, + ACTIONS(1603), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 5, + ACTIONS(1601), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 30, + ACTIONS(1596), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97513,33 +98657,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [83708] = 3, + [84505] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1686), 5, - anon_sym_as, + ACTIONS(1730), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 30, + ACTIONS(1728), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97555,28 +98697,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83752] = 3, + sym_type_conversion, + [84549] = 6, + ACTIONS(279), 1, + anon_sym_COLON_EQ, + ACTIONS(2494), 1, + anon_sym_LBRACK, + STATE(2077), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1656), 5, - anon_sym_as, + ACTIONS(264), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 30, + ACTIONS(262), 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, @@ -97596,20 +98742,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83796] = 3, + [84599] = 4, + ACTIONS(1665), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 5, + ACTIONS(1668), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2574), 30, + ACTIONS(1663), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -97637,24 +98784,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [83840] = 3, + [84645] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 5, + ACTIONS(264), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2566), 30, + ACTIONS(262), 30, 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, @@ -97677,32 +98825,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [83884] = 3, + [84689] = 6, + ACTIONS(1603), 1, + anon_sym_COLON_EQ, + ACTIONS(2494), 1, + anon_sym_LBRACK, + STATE(2078), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2564), 5, + ACTIONS(1601), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 30, + ACTIONS(1596), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97718,25 +98869,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [83928] = 3, + [84739] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2499), 5, + ACTIONS(264), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 30, + ACTIONS(262), 30, 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, @@ -97759,18 +98910,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [83972] = 3, + [84783] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1686), 5, + ACTIONS(2563), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 30, + ACTIONS(2561), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97801,19 +98951,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84016] = 3, + [84827] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1656), 5, + ACTIONS(1783), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 30, + ACTIONS(1781), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -97826,7 +98977,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97842,34 +98992,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84060] = 5, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [84871] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(264), 2, + ACTIONS(1783), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1781), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(259), 5, anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [84915] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1676), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 27, + ACTIONS(1674), 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, @@ -97885,17 +99073,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84108] = 3, + sym_type_conversion, + [84959] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(1694), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 30, + ACTIONS(1692), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97926,18 +99115,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [84152] = 3, + [85003] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2474), 5, + ACTIONS(1694), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2472), 30, - sym_string_start, + ACTIONS(1692), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97945,13 +99133,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97967,17 +99155,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84196] = 3, + sym_type_conversion, + [85047] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, + ACTIONS(2567), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 29, + ACTIONS(2565), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97985,13 +99174,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -98007,22 +99196,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84239] = 4, + sym_type_conversion, + [85091] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1645), 5, + ACTIONS(2547), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 27, + ACTIONS(2545), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -98048,67 +99237,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84284] = 5, + [85134] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(1657), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(650), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(1652), 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_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 15, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [85177] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1657), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1652), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84331] = 3, + [85220] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 5, + ACTIONS(2577), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1647), 29, + ACTIONS(2575), 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, @@ -98130,25 +99357,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84374] = 3, + [85263] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1686), 5, + ACTIONS(2539), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 29, + ACTIONS(2537), 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, @@ -98170,25 +99397,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84417] = 3, + [85306] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1656), 5, + ACTIONS(1657), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 29, + ACTIONS(1652), 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, @@ -98210,25 +99437,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84460] = 3, + [85349] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, + ACTIONS(1668), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 29, + 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98250,66 +99477,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84503] = 7, - ACTIONS(1631), 1, - anon_sym_EQ, + [85392] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 2, + ACTIONS(1668), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1629), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 5, + ACTIONS(1663), 29, anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(1619), 12, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(1623), 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, - [84554] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1653), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1656), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1651), 27, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -98335,25 +99517,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84599] = 7, - ACTIONS(1631), 1, + [85435] = 7, + ACTIONS(1779), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 2, + ACTIONS(1774), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1629), 2, + ACTIONS(1777), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 5, - sym__newline, - anon_sym_SEMI, + ACTIONS(1769), 5, anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(1619), 12, + ACTIONS(1767), 12, anon_sym_as, anon_sym_if, anon_sym_in, @@ -98366,7 +99548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1623), 12, + ACTIONS(1771), 12, anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -98379,137 +99561,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [84650] = 3, + [85486] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 5, + ACTIONS(652), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(659), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2518), 29, + ACTIONS(671), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [84693] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2491), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2489), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(650), 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_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84736] = 3, + [85533] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, - anon_sym_as, + ACTIONS(652), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(659), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, + ACTIONS(671), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(650), 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84779] = 3, + [85580] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(2543), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(2541), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -98539,67 +99685,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84822] = 5, + [85623] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(1734), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1737), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(650), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(1732), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84869] = 3, + [85668] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 5, + ACTIONS(1783), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1647), 29, + ACTIONS(1781), 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, @@ -98621,105 +99766,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84912] = 3, + [85711] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2508), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2506), 29, + ACTIONS(262), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_LBRACK, + ACTIONS(264), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [84955] = 3, + ACTIONS(305), 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, + [85756] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(262), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_LBRACK, + ACTIONS(264), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [84998] = 3, + ACTIONS(305), 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, + [85801] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, - anon_sym_as, + ACTIONS(1676), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, + ACTIONS(1674), 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, @@ -98741,25 +99888,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85041] = 3, + [85844] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 5, - anon_sym_as, + ACTIONS(1694), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2574), 29, + ACTIONS(1692), 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, @@ -98781,17 +99928,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85084] = 3, + [85887] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 5, + ACTIONS(2583), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2566), 29, + ACTIONS(2581), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98821,21 +99968,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85127] = 3, + [85930] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2564), 5, + ACTIONS(1598), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1601), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 29, + ACTIONS(1596), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -98861,25 +100009,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85170] = 3, + [85975] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2524), 5, + ACTIONS(1694), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2522), 29, + ACTIONS(1692), 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, @@ -98901,25 +100049,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85213] = 3, + [86018] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2516), 5, - anon_sym_as, + ACTIONS(1730), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2514), 29, + ACTIONS(1728), 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, @@ -98941,25 +100089,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85256] = 3, + [86061] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 5, - anon_sym_as, + ACTIONS(2555), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2526), 29, + ACTIONS(2553), 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, @@ -98981,21 +100129,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85299] = 3, + [86104] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 5, + ACTIONS(1654), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1657), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2530), 29, + ACTIONS(1652), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -99021,17 +100170,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85342] = 3, + [86149] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(2531), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(2529), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99061,25 +100210,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85385] = 3, + [86192] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, + ACTIONS(2527), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, + ACTIONS(2525), 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, @@ -99101,17 +100250,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85428] = 3, + [86235] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(2515), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 29, + ACTIONS(2513), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99141,17 +100290,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85471] = 3, + [86278] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 5, + ACTIONS(2547), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 29, + ACTIONS(2545), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99181,25 +100330,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85514] = 3, + [86321] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 5, + ACTIONS(1737), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2574), 29, + ACTIONS(1732), 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, @@ -99221,25 +100370,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85557] = 3, + [86364] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, + ACTIONS(1698), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 29, + ACTIONS(1696), 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, @@ -99261,25 +100410,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85600] = 3, + [86407] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 5, - anon_sym_as, + ACTIONS(1698), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2518), 29, + ACTIONS(1696), 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, @@ -99301,25 +100450,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85643] = 3, + [86450] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(2543), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(2541), 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, @@ -99341,17 +100490,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85686] = 3, + [86493] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(2498), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(2496), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99359,10 +100508,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -99381,25 +100530,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85729] = 3, + [86536] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(2502), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 29, + ACTIONS(2500), 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, @@ -99421,65 +100570,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85772] = 3, + [86579] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, - anon_sym_as, + ACTIONS(1774), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1777), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 29, + ACTIONS(1771), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1767), 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85815] = 3, + [86626] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2536), 5, + ACTIONS(1668), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2534), 29, + 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99501,20 +100652,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85858] = 3, + [86669] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 5, + ACTIONS(2486), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 29, + ACTIONS(2484), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -99523,6 +100673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -99541,25 +100692,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85901] = 3, + [86712] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 5, - anon_sym_as, + ACTIONS(2535), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 29, + ACTIONS(2533), 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, @@ -99581,25 +100732,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85944] = 3, + [86755] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, + ACTIONS(1732), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1737), 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(1612), 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, + [86800] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1596), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1601), 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(1612), 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, + [86845] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1652), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1657), 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(1661), 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, + [86890] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1783), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 29, + ACTIONS(1781), 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, @@ -99621,25 +100895,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85987] = 3, + [86933] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, + ACTIONS(2583), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 29, + ACTIONS(2581), 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, @@ -99661,65 +100935,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86030] = 3, + [86976] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 5, - anon_sym_as, + ACTIONS(1774), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1777), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 29, + ACTIONS(1771), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1767), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86073] = 3, + [87023] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(1676), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(1674), 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, @@ -99741,25 +101017,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86116] = 3, + [87066] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(1663), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1668), 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(1672), 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, + [87111] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1694), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(1692), 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, @@ -99781,17 +101098,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86159] = 3, + [87154] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2516), 5, + ACTIONS(1694), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2514), 29, + ACTIONS(1692), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99821,25 +101138,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86202] = 3, + [87197] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2499), 5, - anon_sym_as, + ACTIONS(2551), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 29, + ACTIONS(2549), 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, @@ -99861,27 +101178,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86245] = 5, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(765), 1, - anon_sym_EQ, + [87240] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 4, + ACTIONS(1698), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 28, + ACTIONS(1696), 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, @@ -99903,17 +101218,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86292] = 3, + [87283] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2474), 4, + ACTIONS(1698), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2472), 30, - sym_string_start, + ACTIONS(1696), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99921,10 +101236,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -99943,20 +101258,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86335] = 5, - ACTIONS(272), 1, + [87326] = 5, + ACTIONS(279), 1, anon_sym_COLON_EQ, - ACTIONS(765), 1, + ACTIONS(728), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 4, + ACTIONS(264), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 28, + ACTIONS(262), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99985,20 +101300,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86382] = 5, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, - ACTIONS(2510), 1, - anon_sym_EQ, + [87373] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 4, + ACTIONS(1601), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 28, + ACTIONS(1596), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100006,6 +101318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100027,29 +101340,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86429] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [87416] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, + ACTIONS(2555), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 28, + ACTIONS(2553), 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, @@ -100068,25 +101380,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86474] = 3, + [87459] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, + ACTIONS(2587), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 29, + ACTIONS(2585), 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, @@ -100108,25 +101420,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86517] = 3, + [87502] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 5, + ACTIONS(2531), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 29, + ACTIONS(2529), 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, @@ -100148,18 +101460,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86560] = 5, + [87545] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 2, + ACTIONS(652), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1629), 3, - anon_sym_EQ, + ACTIONS(659), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 14, + ACTIONS(671), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -100174,12 +101486,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1619), 15, + ACTIONS(650), 15, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_not, anon_sym_and, @@ -100190,105 +101502,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86607] = 3, + [87592] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 5, + ACTIONS(652), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(659), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 29, + ACTIONS(671), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [86650] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2576), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2574), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(650), 15, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86693] = 3, + [87639] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 5, + ACTIONS(2527), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2566), 29, + ACTIONS(2525), 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, @@ -100310,25 +101584,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86736] = 3, + [87682] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2564), 5, + ACTIONS(2515), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 29, + ACTIONS(2513), 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, @@ -100350,28 +101624,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86779] = 3, + [87725] = 4, + ACTIONS(279), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 5, + ACTIONS(264), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2526), 29, + ACTIONS(262), 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, @@ -100390,24 +101665,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86822] = 3, + [87770] = 4, + ACTIONS(279), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 4, + ACTIONS(264), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2479), 30, - sym_string_start, + ACTIONS(262), 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, @@ -100430,28 +101706,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86865] = 3, + [87815] = 4, + ACTIONS(1603), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2499), 5, + ACTIONS(1601), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 29, + ACTIONS(1596), 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, @@ -100470,67 +101747,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86908] = 5, + [87860] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1629), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1623), 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(1619), 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_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [86955] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(264), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(262), 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, @@ -100552,106 +101787,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86998] = 4, + [87903] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1640), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1645), 13, + ACTIONS(1737), 5, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1571), 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, - [87043] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1686), 5, - anon_sym_as, - anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 29, + ACTIONS(1732), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [87086] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1656), 5, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1651), 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_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100673,66 +101827,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87129] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1555), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1560), 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(1571), 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, - [87174] = 3, + [87946] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 5, + ACTIONS(264), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2566), 29, + ACTIONS(262), 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, @@ -100754,149 +101867,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87217] = 4, + [87989] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 3, + ACTIONS(2559), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2557), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1686), 13, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1688), 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, - [87262] = 5, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [88032] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 2, + ACTIONS(2563), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(1629), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 14, + ACTIONS(2561), 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_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1619), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87309] = 4, + [88075] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1651), 3, + ACTIONS(2519), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2517), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1656), 13, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1658), 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, - [87354] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [88118] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 5, + ACTIONS(1665), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1668), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 29, + ACTIONS(1663), 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, @@ -100918,25 +102028,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87397] = 3, + [88163] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1686), 5, + ACTIONS(2551), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 29, + ACTIONS(2549), 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, @@ -100958,25 +102068,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87440] = 3, + [88206] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1656), 5, + ACTIONS(2573), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 29, + ACTIONS(2571), 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, @@ -100998,25 +102108,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87483] = 3, + [88249] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, + ACTIONS(2523), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, + ACTIONS(2521), 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, @@ -101038,25 +102148,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87526] = 3, + [88292] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, + ACTIONS(1737), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, + ACTIONS(1732), 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, @@ -101078,65 +102188,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87569] = 3, + [88335] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(1774), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1777), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 29, + ACTIONS(1771), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1767), 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87612] = 3, + [88382] = 5, + ACTIONS(279), 1, + anon_sym_COLON_EQ, + ACTIONS(728), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 5, + ACTIONS(264), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2530), 29, + ACTIONS(262), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101158,26 +102272,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87655] = 4, + [88429] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1557), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1560), 5, - anon_sym_as, + ACTIONS(2573), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 27, + ACTIONS(2571), 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, @@ -101199,25 +102312,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87700] = 3, + [88472] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, - anon_sym_as, + ACTIONS(2519), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 29, + ACTIONS(2517), 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, @@ -101239,25 +102352,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87743] = 3, + [88515] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(2502), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(2500), 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, @@ -101279,26 +102392,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87786] = 4, + [88558] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1686), 5, - anon_sym_as, + ACTIONS(2567), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 27, + ACTIONS(2565), 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, @@ -101320,17 +102432,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87831] = 3, + [88601] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(1601), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(1596), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101360,24 +102472,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87874] = 4, + [88644] = 5, + ACTIONS(1603), 1, + anon_sym_COLON_EQ, + ACTIONS(2569), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1626), 5, - anon_sym_as, + ACTIONS(1601), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 27, + ACTIONS(1596), 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, @@ -101401,29 +102514,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87919] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [88691] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, + ACTIONS(1734), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1737), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 28, + ACTIONS(1732), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -101442,29 +102555,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87964] = 4, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, + [88736] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 5, + ACTIONS(2509), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 28, + ACTIONS(2507), 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, @@ -101483,25 +102595,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88009] = 3, + [88779] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, + ACTIONS(1598), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1601), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, + ACTIONS(1596), 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, @@ -101523,21 +102636,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88052] = 3, + [88824] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2536), 5, + ACTIONS(1654), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1657), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2534), 29, + ACTIONS(1652), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -101563,25 +102677,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88095] = 3, + [88869] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 5, + ACTIONS(2509), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 29, + ACTIONS(2507), 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, @@ -101603,17 +102717,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88138] = 3, + [88912] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, + ACTIONS(2577), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 29, + ACTIONS(2575), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101643,25 +102757,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88181] = 3, + [88955] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 5, + ACTIONS(2577), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2518), 29, + ACTIONS(2575), 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, @@ -101683,18 +102797,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88224] = 5, + [88998] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(652), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(650), 3, + ACTIONS(659), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(671), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -101709,12 +102823,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 15, - anon_sym_RPAREN, + ACTIONS(650), 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, @@ -101725,18 +102839,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88271] = 5, + [89045] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(652), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(650), 3, + ACTIONS(659), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(671), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -101751,12 +102865,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 15, - anon_sym_RPAREN, + ACTIONS(650), 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, @@ -101767,25 +102881,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88318] = 3, + [89092] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(1767), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1774), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 29, + ACTIONS(1771), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101807,17 +102922,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88361] = 3, + [89137] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(2539), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(2537), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101847,17 +102962,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88404] = 3, + [89180] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2508), 5, + ACTIONS(2583), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2506), 29, + ACTIONS(2581), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101887,107 +103002,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88447] = 4, + [89223] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(257), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(259), 13, + ACTIONS(2523), 5, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(300), 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, - [88492] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(257), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2521), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(259), 13, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(300), 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, - [88537] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [89266] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2524), 5, + ACTIONS(2567), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2522), 29, + ACTIONS(2565), 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, @@ -102009,25 +103082,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88580] = 3, + [89309] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2508), 5, - anon_sym_as, + ACTIONS(2547), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2506), 29, + ACTIONS(2545), 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, @@ -102049,17 +103122,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88623] = 3, + [89352] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2564), 5, + ACTIONS(264), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 29, + ACTIONS(262), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102089,21 +103162,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88666] = 3, + [89395] = 7, + ACTIONS(1779), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, - anon_sym_as, + ACTIONS(1774), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1777), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(1769), 5, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(1767), 12, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1771), 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, + [89446] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1665), 2, anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(1668), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1663), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -102129,26 +103247,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88709] = 4, + [89491] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1645), 5, - anon_sym_as, + ACTIONS(264), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 27, + ACTIONS(262), 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, @@ -102170,17 +103287,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88754] = 3, + [89534] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, + ACTIONS(264), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 29, + ACTIONS(262), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102210,22 +103327,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88797] = 4, + [89577] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1656), 5, + ACTIONS(264), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 27, + ACTIONS(262), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -102251,26 +103367,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88842] = 4, + [89620] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1557), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1560), 5, - anon_sym_as, + ACTIONS(2519), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 27, + ACTIONS(2517), 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, @@ -102292,25 +103407,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88887] = 3, + [89663] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2516), 5, + ACTIONS(2563), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2514), 29, + ACTIONS(2561), 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, @@ -102332,17 +103447,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88930] = 3, + [89706] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(2563), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(2561), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102372,17 +103487,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88973] = 3, + [89749] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(2539), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(2537), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102412,25 +103527,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89016] = 3, + [89792] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2536), 5, + ACTIONS(2567), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2534), 29, + ACTIONS(2565), 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, @@ -102452,17 +103567,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89059] = 3, + [89835] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(2543), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 29, + ACTIONS(2541), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102492,17 +103607,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89102] = 3, + [89878] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2524), 5, + ACTIONS(2535), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2522), 29, + ACTIONS(2533), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102532,25 +103647,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89145] = 3, + [89921] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 5, + ACTIONS(2587), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2526), 29, + ACTIONS(2585), 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, @@ -102572,17 +103687,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89188] = 3, + [89964] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 5, + ACTIONS(2555), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2530), 29, + ACTIONS(2553), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102612,17 +103727,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89231] = 3, + [90007] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(2531), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(2529), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102652,109 +103767,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89274] = 5, + [90050] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(2527), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(650), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(2525), 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_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 15, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [90093] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2509), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2507), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89321] = 5, + [90136] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(2515), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(650), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(2513), 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_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89368] = 3, + [90179] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, + ACTIONS(2559), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 29, + ACTIONS(2557), 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, @@ -102776,17 +103927,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89411] = 3, + [90222] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(2535), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(2533), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102816,25 +103967,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89454] = 3, + [90265] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 5, + ACTIONS(2587), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 29, + ACTIONS(2585), 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, @@ -102856,25 +104007,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89497] = 3, + [90308] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 5, + ACTIONS(2559), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 29, + ACTIONS(2557), 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, @@ -102896,26 +104047,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89540] = 4, + [90351] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1686), 5, - anon_sym_as, + ACTIONS(2502), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 27, + ACTIONS(2500), 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, @@ -102937,25 +104087,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89585] = 3, + [90394] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, - anon_sym_as, + ACTIONS(2523), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 29, + ACTIONS(2521), 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, @@ -102977,25 +104127,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89628] = 3, + [90437] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 5, - anon_sym_as, + ACTIONS(1730), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 29, + ACTIONS(1728), 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, @@ -103017,25 +104167,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89671] = 3, + [90480] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2499), 5, + ACTIONS(2551), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 29, + ACTIONS(2549), 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, @@ -103057,18 +104207,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89714] = 3, + [90523] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2536), 4, + ACTIONS(2573), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2534), 29, + ACTIONS(2571), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -103077,7 +104229,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -103096,16 +104247,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89756] = 3, + [90566] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 4, + ACTIONS(1601), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(1596), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103113,10 +104265,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -103135,24 +104287,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89798] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [90609] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 4, + ACTIONS(264), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 28, + ACTIONS(262), 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, @@ -103175,24 +104326,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89842] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [90651] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 4, + ACTIONS(1601), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 28, + ACTIONS(1596), 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, @@ -103215,17 +104365,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89886] = 5, + [90693] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(1774), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(650), 2, + ACTIONS(1777), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(1771), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -103240,7 +104390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 15, + ACTIONS(1767), 15, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -103256,18 +104406,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89932] = 4, - ACTIONS(1562), 1, + [90739] = 4, + ACTIONS(279), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 4, + ACTIONS(652), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 28, + ACTIONS(671), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103296,24 +104446,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89976] = 7, - ACTIONS(1631), 1, + [90783] = 7, + ACTIONS(1779), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 2, + ACTIONS(1774), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1629), 2, + ACTIONS(1777), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 4, + ACTIONS(1769), 4, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(1619), 12, + ACTIONS(1767), 12, anon_sym_as, anon_sym_if, anon_sym_in, @@ -103326,7 +104476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1623), 12, + ACTIONS(1771), 12, anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -103339,16 +104489,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [90026] = 3, + [90833] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 4, + ACTIONS(2551), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(2549), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103378,16 +104528,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90068] = 3, + [90875] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 4, + ACTIONS(2535), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(2533), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103417,57 +104567,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90110] = 5, + [90917] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(2543), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(650), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(2541), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90156] = 3, + [90959] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2499), 4, + ACTIONS(1737), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 29, + ACTIONS(1732), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103497,28 +104645,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90198] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [91001] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 4, + ACTIONS(2587), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 28, + ACTIONS(2585), 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, @@ -103537,16 +104684,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90242] = 3, + [91043] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 4, + ACTIONS(2573), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 29, + ACTIONS(2571), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103576,23 +104723,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90284] = 3, + [91085] = 4, + ACTIONS(279), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2508), 4, + ACTIONS(652), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2506), 29, + ACTIONS(671), 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, @@ -103615,28 +104763,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90326] = 4, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, + [91129] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 4, + ACTIONS(2555), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 28, + ACTIONS(2553), 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, @@ -103655,16 +104802,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90370] = 3, + [91171] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 4, + ACTIONS(2531), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 29, + ACTIONS(2529), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103694,21 +104841,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90412] = 4, - ACTIONS(272), 1, + [91213] = 4, + ACTIONS(1603), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 4, + ACTIONS(1774), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 28, + ACTIONS(1771), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -103716,6 +104862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -103734,16 +104881,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90456] = 3, + [91257] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2524), 4, + ACTIONS(2559), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2522), 29, + ACTIONS(2557), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103773,16 +104920,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90498] = 3, + [91299] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 4, + ACTIONS(2519), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 29, + ACTIONS(2517), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103812,16 +104959,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90540] = 3, + [91341] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 4, + ACTIONS(2502), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 29, + ACTIONS(2500), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103851,30 +104998,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90582] = 3, + [91383] = 4, + ACTIONS(279), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 4, + ACTIONS(652), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 29, + ACTIONS(671), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -103890,16 +105038,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90624] = 3, + [91427] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 4, + ACTIONS(2567), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2526), 29, + ACTIONS(2565), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103929,16 +105077,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90666] = 3, + [91469] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 4, + ACTIONS(2547), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2530), 29, + ACTIONS(2545), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103968,30 +105116,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90708] = 3, + [91511] = 4, + ACTIONS(279), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 4, + ACTIONS(652), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, + ACTIONS(671), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -104007,30 +105156,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90750] = 3, + [91555] = 4, + ACTIONS(1603), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1686), 4, + ACTIONS(1774), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 29, + ACTIONS(1771), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -104046,16 +105196,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90792] = 3, + [91599] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1656), 4, + ACTIONS(2527), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 29, + ACTIONS(2525), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104085,16 +105235,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90834] = 3, + [91641] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 4, + ACTIONS(2515), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(2513), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104124,16 +105274,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90876] = 3, + [91683] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2564), 4, + ACTIONS(2523), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 29, + ACTIONS(2521), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104163,55 +105313,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90918] = 3, + [91725] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 4, + ACTIONS(652), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(659), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 29, + ACTIONS(671), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(650), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90960] = 3, + [91771] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 4, + ACTIONS(1730), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 29, + ACTIONS(1728), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104241,31 +105393,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91002] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [91813] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 4, + ACTIONS(1657), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 28, + ACTIONS(1652), 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, @@ -104281,31 +105432,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91046] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [91855] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 4, + ACTIONS(1668), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 28, + ACTIONS(1663), 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, @@ -104321,31 +105471,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91090] = 4, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, + [91897] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 4, + ACTIONS(1783), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 28, + ACTIONS(1781), 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, @@ -104361,16 +105510,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91134] = 3, + [91939] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 4, + ACTIONS(1676), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 29, + ACTIONS(1674), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104400,16 +105549,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91176] = 3, + [91981] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 4, + ACTIONS(1694), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, + ACTIONS(1692), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104439,57 +105588,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91218] = 5, + [92023] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 2, + ACTIONS(1694), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1629), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 14, + ACTIONS(1692), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1619), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91264] = 3, + [92065] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 4, + ACTIONS(1698), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2574), 29, + ACTIONS(1696), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104519,16 +105666,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91306] = 3, + [92107] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 4, + ACTIONS(1698), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2566), 29, + ACTIONS(1696), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104558,27 +105705,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91348] = 3, + [92149] = 4, + ACTIONS(279), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 4, + ACTIONS(652), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2518), 29, + ACTIONS(671), 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, @@ -104597,27 +105745,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91390] = 3, + [92193] = 4, + ACTIONS(279), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 4, + ACTIONS(652), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 29, + ACTIONS(671), 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, @@ -104636,27 +105785,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91432] = 3, + [92237] = 4, + ACTIONS(1603), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 4, + ACTIONS(1774), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(1771), 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, @@ -104675,16 +105825,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91474] = 3, + [92281] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 4, + ACTIONS(2577), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(2575), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104714,55 +105864,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91516] = 3, + [92323] = 6, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 4, + ACTIONS(1774), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1777), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1647), 29, + ACTIONS(1769), 5, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + ACTIONS(1767), 12, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1771), 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, + [92371] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(652), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(659), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(671), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(650), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91558] = 3, + [92417] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 4, + ACTIONS(2563), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 29, + ACTIONS(2561), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104792,58 +105986,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91600] = 6, + [92459] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 2, + ACTIONS(2539), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1629), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 5, + ACTIONS(2537), 29, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - ACTIONS(1619), 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1623), 12, + [92501] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2583), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2581), 29, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [91648] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [92543] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 4, + ACTIONS(264), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 29, + ACTIONS(262), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104873,16 +106103,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91690] = 3, + [92585] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2516), 4, + ACTIONS(2509), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2514), 29, + ACTIONS(2507), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104912,15 +106142,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91732] = 4, + [92627] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1686), 13, + ACTIONS(1676), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104934,10 +106160,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1688), 16, + ACTIONS(1674), 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, @@ -104951,15 +106180,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91775] = 4, + [92668] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(257), 3, + ACTIONS(671), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(259), 13, + ACTIONS(652), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104973,7 +106202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(300), 16, + ACTIONS(650), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -104990,11 +106219,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91818] = 3, + [92711] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 13, + ACTIONS(671), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(652), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105008,13 +106241,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1647), 19, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(650), 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, @@ -105028,15 +106258,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91859] = 4, + [92754] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(257), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(259), 13, + ACTIONS(1694), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105050,10 +106276,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(300), 16, + ACTIONS(1692), 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, @@ -105067,11 +106296,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91902] = 3, + [92795] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 13, + ACTIONS(1732), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1737), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105085,13 +106318,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1666), 19, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1612), 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, @@ -105105,11 +106335,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91943] = 3, + [92838] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 13, + ACTIONS(1698), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105123,7 +106353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1611), 19, + ACTIONS(1696), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -105143,11 +106373,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91984] = 3, + [92879] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 13, + ACTIONS(1596), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1601), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105161,13 +106395,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1615), 19, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1612), 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, @@ -105181,15 +106412,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92025] = 4, + [92922] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1640), 3, + ACTIONS(1771), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1645), 13, + ACTIONS(1774), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105203,7 +106434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1571), 16, + ACTIONS(1767), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -105220,11 +106451,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92068] = 3, + [92965] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 13, + ACTIONS(1652), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1657), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105238,13 +106473,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1615), 19, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1661), 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, @@ -105258,11 +106490,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92109] = 3, + [93008] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 13, + ACTIONS(262), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(264), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105276,13 +106512,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1670), 19, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(305), 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, @@ -105296,11 +106529,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92150] = 3, + [93051] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 13, + ACTIONS(1698), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105314,7 +106547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1670), 19, + ACTIONS(1696), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -105334,54 +106567,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92191] = 4, + [93092] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(686), 3, + ACTIONS(1774), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1771), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(645), 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_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 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, - [92234] = 4, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [93133] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(686), 3, + ACTIONS(262), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(645), 13, + ACTIONS(264), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105395,7 +106627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 16, + ACTIONS(305), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -105412,54 +106644,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92277] = 4, + [93176] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1555), 3, + ACTIONS(1774), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1771), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1560), 13, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1571), 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, - [92320] = 4, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [93217] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1651), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1656), 13, + ACTIONS(1694), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105473,10 +106700,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1658), 16, + ACTIONS(1692), 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, @@ -105490,15 +106720,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92363] = 4, + [93258] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1623), 3, + ACTIONS(1663), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1626), 13, + ACTIONS(1668), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105512,7 +106742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1619), 16, + ACTIONS(1672), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -105529,19 +106759,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92406] = 3, + [93301] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 4, + ACTIONS(1774), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 28, + ACTIONS(1771), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -105552,6 +106781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -105567,127 +106797,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [92447] = 3, + [93342] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 4, + ACTIONS(1783), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1623), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [92488] = 3, + ACTIONS(1781), 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, + [93383] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 4, + ACTIONS(1730), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1623), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [92529] = 20, - ACTIONS(308), 1, + ACTIONS(1728), 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, + [93424] = 20, + ACTIONS(313), 1, sym_string_start, - ACTIONS(2578), 1, + ACTIONS(2589), 1, sym_identifier, - ACTIONS(2580), 1, + ACTIONS(2591), 1, anon_sym_LPAREN, - ACTIONS(2582), 1, + ACTIONS(2593), 1, anon_sym_STAR, - ACTIONS(2584), 1, + ACTIONS(2595), 1, anon_sym_if, - ACTIONS(2586), 1, + ACTIONS(2597), 1, anon_sym_COLON, - ACTIONS(2588), 1, + ACTIONS(2599), 1, anon_sym_STAR_STAR, - ACTIONS(2590), 1, + ACTIONS(2601), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2603), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2607), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2609), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2611), 1, sym_float, - STATE(1789), 1, + STATE(1799), 1, sym_string, - STATE(1905), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2199), 1, + STATE(2169), 1, sym_case_pattern, - STATE(2631), 1, + STATE(2661), 1, sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2143), 2, + STATE(2118), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2594), 4, + ACTIONS(2605), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1925), 9, + STATE(1962), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105697,51 +106927,51 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92603] = 20, - ACTIONS(308), 1, + [93498] = 20, + ACTIONS(313), 1, sym_string_start, - ACTIONS(2578), 1, + ACTIONS(2589), 1, sym_identifier, - ACTIONS(2580), 1, + ACTIONS(2591), 1, anon_sym_LPAREN, - ACTIONS(2582), 1, + ACTIONS(2593), 1, anon_sym_STAR, - ACTIONS(2584), 1, + ACTIONS(2595), 1, anon_sym_if, - ACTIONS(2588), 1, + ACTIONS(2599), 1, anon_sym_STAR_STAR, - ACTIONS(2590), 1, + ACTIONS(2601), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2603), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2607), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2609), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2611), 1, sym_float, - ACTIONS(2602), 1, + ACTIONS(2613), 1, anon_sym_COLON, - STATE(1789), 1, + STATE(1799), 1, sym_string, - STATE(1905), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2199), 1, + STATE(2169), 1, sym_case_pattern, - STATE(2740), 1, + STATE(2752), 1, sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2143), 2, + STATE(2118), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2594), 4, + ACTIONS(2605), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1925), 9, + STATE(1962), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105751,97 +106981,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92677] = 18, - ACTIONS(799), 1, + [93572] = 18, + ACTIONS(784), 1, sym_string_start, - ACTIONS(2604), 1, + ACTIONS(2615), 1, sym_identifier, - ACTIONS(2606), 1, + ACTIONS(2617), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, + ACTIONS(2619), 1, anon_sym_STAR, - ACTIONS(2610), 1, + ACTIONS(2621), 1, anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2623), 1, anon_sym_LBRACK, - ACTIONS(2614), 1, + ACTIONS(2625), 1, anon_sym_RBRACK, - ACTIONS(2616), 1, - anon_sym_DASH, - ACTIONS(2620), 1, - anon_sym_LBRACE, - ACTIONS(2622), 1, - sym_integer, - ACTIONS(2624), 1, - sym_float, - STATE(1843), 1, - sym_string, - STATE(2015), 1, - sym_dotted_name, - STATE(2328), 1, - sym_case_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2294), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2618), 4, - anon_sym__, - sym_true, - sym_false, - sym_none, - STATE(2016), 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, - [92745] = 18, - ACTIONS(709), 1, - sym_string_start, - ACTIONS(2626), 1, - sym_identifier, - ACTIONS(2628), 1, - anon_sym_LPAREN, - ACTIONS(2630), 1, - anon_sym_RPAREN, - ACTIONS(2632), 1, - anon_sym_STAR, - ACTIONS(2634), 1, - anon_sym_STAR_STAR, - ACTIONS(2636), 1, - anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2627), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2631), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2633), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2635), 1, sym_float, - STATE(1886), 1, + STATE(1884), 1, sym_string, - STATE(2111), 1, + STATE(2020), 1, sym_dotted_name, - STATE(2179), 1, + STATE(2335), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2301), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2629), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2021), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105851,47 +107031,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92813] = 18, - ACTIONS(799), 1, + [93640] = 18, + ACTIONS(784), 1, sym_string_start, - ACTIONS(2604), 1, + ACTIONS(2615), 1, sym_identifier, - ACTIONS(2606), 1, + ACTIONS(2617), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, + ACTIONS(2619), 1, anon_sym_STAR, - ACTIONS(2610), 1, + ACTIONS(2621), 1, anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2623), 1, anon_sym_LBRACK, - ACTIONS(2616), 1, + ACTIONS(2627), 1, anon_sym_DASH, - ACTIONS(2620), 1, + ACTIONS(2631), 1, anon_sym_LBRACE, - ACTIONS(2622), 1, + ACTIONS(2633), 1, sym_integer, - ACTIONS(2624), 1, + ACTIONS(2635), 1, sym_float, - ACTIONS(2648), 1, + ACTIONS(2637), 1, anon_sym_RBRACK, - STATE(1843), 1, + STATE(1884), 1, sym_string, - STATE(2015), 1, + STATE(2020), 1, sym_dotted_name, - STATE(2237), 1, + STATE(2152), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2294), 2, + STATE(2301), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2618), 4, + ACTIONS(2629), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2016), 9, + STATE(2021), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105901,47 +107081,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92881] = 18, - ACTIONS(709), 1, + [93708] = 18, + ACTIONS(762), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2639), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2641), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2643), 1, + anon_sym_RPAREN, + ACTIONS(2645), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2647), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2649), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2651), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2655), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2657), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2659), 1, sym_float, - ACTIONS(2650), 1, - anon_sym_RPAREN, - STATE(1886), 1, + STATE(1870), 1, sym_string, - STATE(2111), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2260), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2322), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2653), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105951,47 +107131,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92949] = 18, - ACTIONS(709), 1, + [93776] = 18, + ACTIONS(762), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2639), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2641), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2645), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2647), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2649), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2651), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2655), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2657), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2659), 1, sym_float, - ACTIONS(2652), 1, + ACTIONS(2661), 1, anon_sym_RPAREN, - STATE(1886), 1, + STATE(1870), 1, sym_string, - STATE(2111), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2260), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2322), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2653), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106001,47 +107181,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93017] = 18, - ACTIONS(799), 1, + [93844] = 18, + ACTIONS(784), 1, sym_string_start, - ACTIONS(2604), 1, + ACTIONS(2615), 1, sym_identifier, - ACTIONS(2606), 1, + ACTIONS(2617), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, + ACTIONS(2619), 1, anon_sym_STAR, - ACTIONS(2610), 1, + ACTIONS(2621), 1, anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2623), 1, anon_sym_LBRACK, - ACTIONS(2616), 1, + ACTIONS(2627), 1, anon_sym_DASH, - ACTIONS(2620), 1, + ACTIONS(2631), 1, anon_sym_LBRACE, - ACTIONS(2622), 1, + ACTIONS(2633), 1, sym_integer, - ACTIONS(2624), 1, + ACTIONS(2635), 1, sym_float, - ACTIONS(2654), 1, + ACTIONS(2663), 1, anon_sym_RBRACK, - STATE(1843), 1, + STATE(1884), 1, sym_string, - STATE(2015), 1, + STATE(2020), 1, sym_dotted_name, - STATE(2328), 1, + STATE(2335), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2294), 2, + STATE(2301), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2618), 4, + ACTIONS(2629), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2016), 9, + STATE(2021), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106051,47 +107231,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93085] = 18, - ACTIONS(709), 1, + [93912] = 18, + ACTIONS(762), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2639), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2641), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2645), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2647), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2649), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2651), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2655), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2657), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2659), 1, sym_float, - ACTIONS(2656), 1, + ACTIONS(2665), 1, anon_sym_RPAREN, - STATE(1886), 1, + STATE(1870), 1, sym_string, - STATE(2111), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2174), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2322), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2653), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106101,47 +107281,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93153] = 18, - ACTIONS(799), 1, + [93980] = 18, + ACTIONS(762), 1, sym_string_start, - ACTIONS(2604), 1, + ACTIONS(2639), 1, sym_identifier, - ACTIONS(2606), 1, + ACTIONS(2641), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, + ACTIONS(2645), 1, anon_sym_STAR, - ACTIONS(2610), 1, + ACTIONS(2647), 1, anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2649), 1, anon_sym_LBRACK, - ACTIONS(2616), 1, + ACTIONS(2651), 1, anon_sym_DASH, - ACTIONS(2620), 1, + ACTIONS(2655), 1, anon_sym_LBRACE, - ACTIONS(2622), 1, + ACTIONS(2657), 1, sym_integer, - ACTIONS(2624), 1, + ACTIONS(2659), 1, sym_float, - ACTIONS(2658), 1, - anon_sym_RBRACK, - STATE(1843), 1, + ACTIONS(2667), 1, + anon_sym_RPAREN, + STATE(1870), 1, sym_string, - STATE(2015), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2328), 1, + STATE(2227), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2294), 2, + STATE(2322), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2618), 4, + ACTIONS(2653), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2016), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106151,47 +107331,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93221] = 18, - ACTIONS(709), 1, + [94048] = 18, + ACTIONS(784), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2615), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2617), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2619), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2621), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2623), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2627), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2631), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2633), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2635), 1, sym_float, - ACTIONS(2660), 1, - anon_sym_RPAREN, - STATE(1886), 1, + ACTIONS(2669), 1, + anon_sym_RBRACK, + STATE(1884), 1, sym_string, - STATE(2111), 1, + STATE(2020), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2157), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2301), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2629), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2021), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106201,47 +107381,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93289] = 18, - ACTIONS(709), 1, + [94116] = 18, + ACTIONS(762), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2639), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2641), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2645), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2647), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2649), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2651), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2655), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2657), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2659), 1, sym_float, - ACTIONS(2662), 1, + ACTIONS(2671), 1, anon_sym_RPAREN, - STATE(1886), 1, + STATE(1870), 1, sym_string, - STATE(2111), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2162), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2322), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2653), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106251,47 +107431,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93357] = 18, - ACTIONS(709), 1, + [94184] = 18, + ACTIONS(762), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2639), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2641), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2645), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2647), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2649), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2651), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2655), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2657), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2659), 1, sym_float, - ACTIONS(2664), 1, + ACTIONS(2673), 1, anon_sym_RPAREN, - STATE(1886), 1, + STATE(1870), 1, sym_string, - STATE(2111), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2260), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2322), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2653), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106301,47 +107481,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93425] = 18, - ACTIONS(709), 1, + [94252] = 18, + ACTIONS(762), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2639), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2641), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2645), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2647), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2649), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2651), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2655), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2657), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2659), 1, sym_float, - ACTIONS(2666), 1, + ACTIONS(2675), 1, anon_sym_RPAREN, - STATE(1886), 1, + STATE(1870), 1, sym_string, - STATE(2111), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2149), 1, + STATE(2260), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2322), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2653), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106351,47 +107531,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93493] = 18, - ACTIONS(799), 1, + [94320] = 18, + ACTIONS(762), 1, sym_string_start, - ACTIONS(2604), 1, + ACTIONS(2639), 1, sym_identifier, - ACTIONS(2606), 1, + ACTIONS(2641), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, + ACTIONS(2645), 1, anon_sym_STAR, - ACTIONS(2610), 1, + ACTIONS(2647), 1, anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2649), 1, anon_sym_LBRACK, - ACTIONS(2616), 1, + ACTIONS(2651), 1, anon_sym_DASH, - ACTIONS(2620), 1, + ACTIONS(2655), 1, anon_sym_LBRACE, - ACTIONS(2622), 1, + ACTIONS(2657), 1, sym_integer, - ACTIONS(2624), 1, + ACTIONS(2659), 1, sym_float, - ACTIONS(2668), 1, - anon_sym_RBRACK, - STATE(1843), 1, + ACTIONS(2677), 1, + anon_sym_RPAREN, + STATE(1870), 1, sym_string, - STATE(2015), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2150), 1, + STATE(2142), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2294), 2, + STATE(2322), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2618), 4, + ACTIONS(2653), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2016), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106401,47 +107581,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93561] = 18, - ACTIONS(709), 1, + [94388] = 18, + ACTIONS(762), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2639), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2641), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2645), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2647), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2649), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2651), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2655), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2657), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2659), 1, sym_float, - ACTIONS(2670), 1, + ACTIONS(2679), 1, anon_sym_RPAREN, - STATE(1886), 1, + STATE(1870), 1, sym_string, - STATE(2111), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2205), 1, + STATE(2260), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2322), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2653), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106451,47 +107631,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93629] = 18, - ACTIONS(709), 1, + [94456] = 18, + ACTIONS(784), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2615), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2617), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2619), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2621), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2623), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2627), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2631), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2633), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2635), 1, sym_float, - ACTIONS(2672), 1, - anon_sym_RPAREN, - STATE(1886), 1, + ACTIONS(2681), 1, + anon_sym_RBRACK, + STATE(1884), 1, sym_string, - STATE(2111), 1, + STATE(2020), 1, sym_dotted_name, - STATE(2164), 1, + STATE(2335), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2301), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2629), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2021), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106501,47 +107681,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93697] = 18, - ACTIONS(709), 1, + [94524] = 18, + ACTIONS(762), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2639), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2641), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2645), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2647), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2649), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2651), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2655), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2657), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2659), 1, sym_float, - ACTIONS(2674), 1, + ACTIONS(2683), 1, anon_sym_RPAREN, - STATE(1886), 1, + STATE(1870), 1, sym_string, - STATE(2111), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2172), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2322), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2653), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106551,47 +107731,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93765] = 18, - ACTIONS(709), 1, + [94592] = 18, + ACTIONS(762), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2639), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2641), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2645), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2647), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2649), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2651), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2655), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2657), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2659), 1, sym_float, - ACTIONS(2676), 1, + ACTIONS(2685), 1, anon_sym_RPAREN, - STATE(1886), 1, + STATE(1870), 1, sym_string, - STATE(2111), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2260), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2322), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2653), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106601,47 +107781,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93833] = 18, - ACTIONS(799), 1, + [94660] = 18, + ACTIONS(762), 1, sym_string_start, - ACTIONS(2604), 1, + ACTIONS(2639), 1, sym_identifier, - ACTIONS(2606), 1, + ACTIONS(2641), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, + ACTIONS(2645), 1, anon_sym_STAR, - ACTIONS(2610), 1, + ACTIONS(2647), 1, anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2649), 1, anon_sym_LBRACK, - ACTIONS(2616), 1, + ACTIONS(2651), 1, anon_sym_DASH, - ACTIONS(2620), 1, + ACTIONS(2655), 1, anon_sym_LBRACE, - ACTIONS(2622), 1, + ACTIONS(2657), 1, sym_integer, - ACTIONS(2624), 1, + ACTIONS(2659), 1, sym_float, - ACTIONS(2678), 1, - anon_sym_RBRACK, - STATE(1843), 1, + ACTIONS(2687), 1, + anon_sym_RPAREN, + STATE(1870), 1, sym_string, - STATE(2015), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2328), 1, + STATE(2141), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2294), 2, + STATE(2322), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2618), 4, + ACTIONS(2653), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2016), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106651,47 +107831,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93901] = 18, - ACTIONS(709), 1, + [94728] = 18, + ACTIONS(784), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2615), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2617), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2619), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2621), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2623), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2627), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2631), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2633), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2635), 1, sym_float, - ACTIONS(2680), 1, - anon_sym_RPAREN, - STATE(1886), 1, + ACTIONS(2689), 1, + anon_sym_RBRACK, + STATE(1884), 1, sym_string, - STATE(2111), 1, + STATE(2020), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2335), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2301), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2629), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2021), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106701,47 +107881,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93969] = 18, - ACTIONS(709), 1, + [94796] = 18, + ACTIONS(784), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2615), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2617), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2619), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2621), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2623), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2627), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2631), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2633), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2635), 1, sym_float, - ACTIONS(2682), 1, - anon_sym_RPAREN, - STATE(1886), 1, + ACTIONS(2691), 1, + anon_sym_RBRACK, + STATE(1884), 1, sym_string, - STATE(2111), 1, + STATE(2020), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2147), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2301), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2629), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2021), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106751,47 +107931,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94037] = 18, - ACTIONS(799), 1, + [94864] = 18, + ACTIONS(762), 1, sym_string_start, - ACTIONS(2604), 1, + ACTIONS(2639), 1, sym_identifier, - ACTIONS(2606), 1, + ACTIONS(2641), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, + ACTIONS(2645), 1, anon_sym_STAR, - ACTIONS(2610), 1, + ACTIONS(2647), 1, anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2649), 1, anon_sym_LBRACK, - ACTIONS(2616), 1, + ACTIONS(2651), 1, anon_sym_DASH, - ACTIONS(2620), 1, + ACTIONS(2655), 1, anon_sym_LBRACE, - ACTIONS(2622), 1, + ACTIONS(2657), 1, sym_integer, - ACTIONS(2624), 1, + ACTIONS(2659), 1, sym_float, - ACTIONS(2684), 1, - anon_sym_RBRACK, - STATE(1843), 1, + ACTIONS(2693), 1, + anon_sym_RPAREN, + STATE(1870), 1, sym_string, - STATE(2015), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2328), 1, + STATE(2260), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2294), 2, + STATE(2322), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2618), 4, + ACTIONS(2653), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2016), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106801,47 +107981,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94105] = 18, - ACTIONS(709), 1, + [94932] = 18, + ACTIONS(762), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2639), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2641), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2645), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2647), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2649), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2651), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2655), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2657), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2659), 1, sym_float, - ACTIONS(2686), 1, + ACTIONS(2695), 1, anon_sym_RPAREN, - STATE(1886), 1, + STATE(1870), 1, sym_string, - STATE(2111), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2260), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2322), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2653), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106851,47 +108031,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94173] = 18, - ACTIONS(709), 1, + [95000] = 18, + ACTIONS(762), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2639), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2641), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2645), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2647), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2649), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2651), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2655), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2657), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2659), 1, sym_float, - ACTIONS(2688), 1, + ACTIONS(2697), 1, anon_sym_RPAREN, - STATE(1886), 1, + STATE(1870), 1, sym_string, - STATE(2111), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2260), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2322), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2653), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106901,47 +108081,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94241] = 18, - ACTIONS(799), 1, + [95068] = 18, + ACTIONS(784), 1, sym_string_start, - ACTIONS(2604), 1, + ACTIONS(2615), 1, sym_identifier, - ACTIONS(2606), 1, + ACTIONS(2617), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, + ACTIONS(2619), 1, anon_sym_STAR, - ACTIONS(2610), 1, + ACTIONS(2621), 1, anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2623), 1, anon_sym_LBRACK, - ACTIONS(2616), 1, + ACTIONS(2627), 1, anon_sym_DASH, - ACTIONS(2620), 1, + ACTIONS(2631), 1, anon_sym_LBRACE, - ACTIONS(2622), 1, + ACTIONS(2633), 1, sym_integer, - ACTIONS(2624), 1, + ACTIONS(2635), 1, sym_float, - ACTIONS(2690), 1, + ACTIONS(2699), 1, anon_sym_RBRACK, - STATE(1843), 1, + STATE(1884), 1, sym_string, - STATE(2015), 1, + STATE(2020), 1, sym_dotted_name, - STATE(2188), 1, + STATE(2335), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2294), 2, + STATE(2301), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2618), 4, + ACTIONS(2629), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2016), 9, + STATE(2021), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106951,47 +108131,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94309] = 18, - ACTIONS(709), 1, + [95136] = 18, + ACTIONS(762), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2639), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2641), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2645), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2647), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2649), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2651), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2655), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2657), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2659), 1, sym_float, - ACTIONS(2692), 1, + ACTIONS(2701), 1, anon_sym_RPAREN, - STATE(1886), 1, + STATE(1870), 1, sym_string, - STATE(2111), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2170), 1, + STATE(2168), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2322), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2653), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107001,47 +108181,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94377] = 18, - ACTIONS(799), 1, + [95204] = 18, + ACTIONS(762), 1, sym_string_start, - ACTIONS(2604), 1, + ACTIONS(2639), 1, sym_identifier, - ACTIONS(2606), 1, + ACTIONS(2641), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, + ACTIONS(2645), 1, anon_sym_STAR, - ACTIONS(2610), 1, + ACTIONS(2647), 1, anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2649), 1, anon_sym_LBRACK, - ACTIONS(2616), 1, + ACTIONS(2651), 1, anon_sym_DASH, - ACTIONS(2620), 1, + ACTIONS(2655), 1, anon_sym_LBRACE, - ACTIONS(2622), 1, + ACTIONS(2657), 1, sym_integer, - ACTIONS(2624), 1, + ACTIONS(2659), 1, sym_float, - ACTIONS(2694), 1, - anon_sym_RBRACK, - STATE(1843), 1, + ACTIONS(2703), 1, + anon_sym_RPAREN, + STATE(1870), 1, sym_string, - STATE(2015), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2174), 1, + STATE(2260), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2294), 2, + STATE(2322), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2618), 4, + ACTIONS(2653), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2016), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107051,47 +108231,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94445] = 18, - ACTIONS(709), 1, + [95272] = 18, + ACTIONS(762), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2639), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2641), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2645), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2647), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2649), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2651), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2655), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2657), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2659), 1, sym_float, - ACTIONS(2696), 1, + ACTIONS(2705), 1, anon_sym_RPAREN, - STATE(1886), 1, + STATE(1870), 1, sym_string, - STATE(2111), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2260), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2322), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2653), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107101,47 +108281,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94513] = 18, - ACTIONS(709), 1, + [95340] = 18, + ACTIONS(784), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2615), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2617), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2619), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2621), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2623), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2627), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2631), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2633), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2635), 1, sym_float, - ACTIONS(2698), 1, - anon_sym_RPAREN, - STATE(1886), 1, + ACTIONS(2707), 1, + anon_sym_RBRACK, + STATE(1884), 1, sym_string, - STATE(2111), 1, + STATE(2020), 1, sym_dotted_name, - STATE(2197), 1, + STATE(2335), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2301), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2629), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2021), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107151,47 +108331,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94581] = 18, - ACTIONS(799), 1, + [95408] = 18, + ACTIONS(762), 1, sym_string_start, - ACTIONS(2604), 1, + ACTIONS(2639), 1, sym_identifier, - ACTIONS(2606), 1, + ACTIONS(2641), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, + ACTIONS(2645), 1, anon_sym_STAR, - ACTIONS(2610), 1, + ACTIONS(2647), 1, anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2649), 1, anon_sym_LBRACK, - ACTIONS(2616), 1, + ACTIONS(2651), 1, anon_sym_DASH, - ACTIONS(2620), 1, + ACTIONS(2655), 1, anon_sym_LBRACE, - ACTIONS(2622), 1, + ACTIONS(2657), 1, sym_integer, - ACTIONS(2624), 1, + ACTIONS(2659), 1, sym_float, - ACTIONS(2700), 1, - anon_sym_RBRACK, - STATE(1843), 1, + ACTIONS(2709), 1, + anon_sym_RPAREN, + STATE(1870), 1, sym_string, - STATE(2015), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2328), 1, + STATE(2260), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2294), 2, + STATE(2322), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2618), 4, + ACTIONS(2653), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2016), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107201,47 +108381,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94649] = 18, - ACTIONS(709), 1, + [95476] = 18, + ACTIONS(762), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2639), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2641), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2645), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2647), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2649), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2651), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2655), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2657), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2659), 1, sym_float, - ACTIONS(2702), 1, + ACTIONS(2711), 1, anon_sym_RPAREN, - STATE(1886), 1, + STATE(1870), 1, sym_string, - STATE(2111), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2116), 1, + STATE(2260), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2322), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2653), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107251,47 +108431,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94717] = 18, - ACTIONS(709), 1, + [95544] = 18, + ACTIONS(784), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2615), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2617), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2619), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2621), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2623), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2627), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2631), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2633), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2635), 1, sym_float, - ACTIONS(2704), 1, - anon_sym_RPAREN, - STATE(1886), 1, + ACTIONS(2713), 1, + anon_sym_RBRACK, + STATE(1884), 1, sym_string, - STATE(2111), 1, + STATE(2020), 1, sym_dotted_name, - STATE(2186), 1, + STATE(2335), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2301), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2629), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2021), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107301,47 +108481,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94785] = 18, - ACTIONS(709), 1, + [95612] = 18, + ACTIONS(784), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2615), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2617), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2619), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2621), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2623), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2627), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2631), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2633), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2635), 1, sym_float, - ACTIONS(2706), 1, - anon_sym_RPAREN, - STATE(1886), 1, + ACTIONS(2715), 1, + anon_sym_RBRACK, + STATE(1884), 1, sym_string, - STATE(2111), 1, + STATE(2020), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2335), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2301), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2629), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2021), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107351,47 +108531,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94853] = 18, - ACTIONS(799), 1, + [95680] = 18, + ACTIONS(762), 1, sym_string_start, - ACTIONS(2604), 1, + ACTIONS(2639), 1, sym_identifier, - ACTIONS(2606), 1, + ACTIONS(2641), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, + ACTIONS(2645), 1, anon_sym_STAR, - ACTIONS(2610), 1, + ACTIONS(2647), 1, anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2649), 1, anon_sym_LBRACK, - ACTIONS(2616), 1, + ACTIONS(2651), 1, anon_sym_DASH, - ACTIONS(2620), 1, + ACTIONS(2655), 1, anon_sym_LBRACE, - ACTIONS(2622), 1, + ACTIONS(2657), 1, sym_integer, - ACTIONS(2624), 1, + ACTIONS(2659), 1, sym_float, - ACTIONS(2708), 1, - anon_sym_RBRACK, - STATE(1843), 1, + ACTIONS(2717), 1, + anon_sym_RPAREN, + STATE(1870), 1, sym_string, - STATE(2015), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2328), 1, + STATE(2260), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2294), 2, + STATE(2322), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2618), 4, + ACTIONS(2653), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2016), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107401,47 +108581,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94921] = 18, - ACTIONS(709), 1, + [95748] = 18, + ACTIONS(762), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2639), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2641), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2645), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2647), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2649), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2651), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2655), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2657), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2659), 1, sym_float, - ACTIONS(2710), 1, + ACTIONS(2719), 1, anon_sym_RPAREN, - STATE(1886), 1, + STATE(1870), 1, sym_string, - STATE(2111), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2148), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2322), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2653), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107451,47 +108631,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94989] = 18, - ACTIONS(709), 1, + [95816] = 18, + ACTIONS(762), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2639), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2641), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2645), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2647), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2649), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2651), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2655), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2657), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2659), 1, sym_float, - ACTIONS(2712), 1, + ACTIONS(2721), 1, anon_sym_RPAREN, - STATE(1886), 1, + STATE(1870), 1, sym_string, - STATE(2111), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2260), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2322), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2653), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107501,47 +108681,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95057] = 18, - ACTIONS(799), 1, + [95884] = 18, + ACTIONS(784), 1, sym_string_start, - ACTIONS(2604), 1, + ACTIONS(2615), 1, sym_identifier, - ACTIONS(2606), 1, + ACTIONS(2617), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, + ACTIONS(2619), 1, anon_sym_STAR, - ACTIONS(2610), 1, + ACTIONS(2621), 1, anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2623), 1, anon_sym_LBRACK, - ACTIONS(2616), 1, + ACTIONS(2627), 1, anon_sym_DASH, - ACTIONS(2620), 1, + ACTIONS(2631), 1, anon_sym_LBRACE, - ACTIONS(2622), 1, + ACTIONS(2633), 1, sym_integer, - ACTIONS(2624), 1, + ACTIONS(2635), 1, sym_float, - ACTIONS(2714), 1, + ACTIONS(2723), 1, anon_sym_RBRACK, - STATE(1843), 1, + STATE(1884), 1, sym_string, - STATE(2015), 1, + STATE(2020), 1, sym_dotted_name, - STATE(2328), 1, + STATE(2150), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2294), 2, + STATE(2301), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2618), 4, + ACTIONS(2629), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2016), 9, + STATE(2021), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107551,45 +108731,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95125] = 17, - ACTIONS(709), 1, + [95952] = 18, + ACTIONS(762), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2639), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2641), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2645), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2647), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2649), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2651), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2655), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2657), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2659), 1, sym_float, - STATE(1886), 1, + ACTIONS(2725), 1, + anon_sym_RPAREN, + STATE(1870), 1, sym_string, - STATE(2111), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2260), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2322), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2653), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107599,45 +108781,45 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95190] = 17, - ACTIONS(799), 1, + [96020] = 17, + ACTIONS(694), 1, sym_string_start, - ACTIONS(2604), 1, + ACTIONS(2727), 1, sym_identifier, - ACTIONS(2606), 1, + ACTIONS(2729), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, + ACTIONS(2731), 1, anon_sym_STAR, - ACTIONS(2610), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2735), 1, anon_sym_LBRACK, - ACTIONS(2616), 1, + ACTIONS(2737), 1, anon_sym_DASH, - ACTIONS(2620), 1, + ACTIONS(2741), 1, anon_sym_LBRACE, - ACTIONS(2622), 1, + ACTIONS(2743), 1, sym_integer, - ACTIONS(2624), 1, + ACTIONS(2745), 1, sym_float, - STATE(1843), 1, + STATE(1857), 1, sym_string, - STATE(2015), 1, + STATE(2103), 1, sym_dotted_name, - STATE(2328), 1, + STATE(2321), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2294), 2, + STATE(2426), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2618), 4, + ACTIONS(2739), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2016), 9, + STATE(2104), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107647,45 +108829,45 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95255] = 17, - ACTIONS(684), 1, + [96085] = 17, + ACTIONS(784), 1, sym_string_start, - ACTIONS(2716), 1, + ACTIONS(2615), 1, sym_identifier, - ACTIONS(2718), 1, + ACTIONS(2617), 1, anon_sym_LPAREN, - ACTIONS(2720), 1, + ACTIONS(2619), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2621), 1, anon_sym_STAR_STAR, - ACTIONS(2724), 1, + ACTIONS(2623), 1, anon_sym_LBRACK, - ACTIONS(2726), 1, + ACTIONS(2627), 1, anon_sym_DASH, - ACTIONS(2730), 1, + ACTIONS(2631), 1, anon_sym_LBRACE, - ACTIONS(2732), 1, + ACTIONS(2633), 1, sym_integer, - ACTIONS(2734), 1, + ACTIONS(2635), 1, sym_float, - STATE(1863), 1, + STATE(1884), 1, sym_string, - STATE(2007), 1, + STATE(2020), 1, sym_dotted_name, - STATE(2313), 1, + STATE(2335), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2416), 2, + STATE(2301), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2728), 4, + ACTIONS(2629), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2014), 9, + STATE(2021), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107695,45 +108877,45 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95320] = 17, - ACTIONS(308), 1, + [96150] = 17, + ACTIONS(762), 1, sym_string_start, - ACTIONS(2578), 1, + ACTIONS(2639), 1, sym_identifier, - ACTIONS(2580), 1, + ACTIONS(2641), 1, anon_sym_LPAREN, - ACTIONS(2582), 1, + ACTIONS(2645), 1, anon_sym_STAR, - ACTIONS(2588), 1, + ACTIONS(2647), 1, anon_sym_STAR_STAR, - ACTIONS(2590), 1, + ACTIONS(2649), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2651), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2655), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2657), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2659), 1, sym_float, - STATE(1789), 1, + STATE(1870), 1, sym_string, - STATE(1905), 1, + STATE(2039), 1, sym_dotted_name, - STATE(2199), 1, + STATE(2260), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2143), 2, + STATE(2322), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2594), 4, + ACTIONS(2653), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1925), 9, + STATE(2049), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107743,45 +108925,45 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95385] = 17, - ACTIONS(308), 1, + [96215] = 17, + ACTIONS(313), 1, sym_string_start, - ACTIONS(2578), 1, + ACTIONS(2589), 1, sym_identifier, - ACTIONS(2580), 1, + ACTIONS(2591), 1, anon_sym_LPAREN, - ACTIONS(2582), 1, + ACTIONS(2593), 1, anon_sym_STAR, - ACTIONS(2588), 1, + ACTIONS(2599), 1, anon_sym_STAR_STAR, - ACTIONS(2590), 1, + ACTIONS(2601), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2603), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2607), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2609), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2611), 1, sym_float, - STATE(1789), 1, + STATE(1799), 1, sym_string, - STATE(1905), 1, + STATE(1960), 1, sym_dotted_name, - STATE(1919), 1, + STATE(1961), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2143), 2, + STATE(2118), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2594), 4, + ACTIONS(2605), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1925), 9, + STATE(1962), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107791,94 +108973,94 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95450] = 18, - ACTIONS(308), 1, + [96280] = 17, + ACTIONS(313), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2589), 1, + sym_identifier, + ACTIONS(2591), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2593), 1, + anon_sym_STAR, + ACTIONS(2599), 1, + anon_sym_STAR_STAR, + ACTIONS(2601), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2603), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2607), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2609), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2611), 1, sym_float, - ACTIONS(2720), 1, - anon_sym_STAR, - ACTIONS(2722), 1, - anon_sym_STAR_STAR, - ACTIONS(2736), 1, - sym_identifier, - ACTIONS(2740), 1, - anon_sym_RBRACE, - STATE(1789), 1, + STATE(1799), 1, sym_string, - STATE(1905), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2030), 1, - sym_splat_pattern, - STATE(2317), 1, - sym__key_value_pattern, + STATE(2169), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + STATE(2118), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2605), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(1962), 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, - [95516] = 18, - ACTIONS(308), 1, + [96345] = 18, + ACTIONS(313), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2591), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2601), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2603), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2607), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2609), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2611), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2731), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2742), 1, + ACTIONS(2751), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1799), 1, sym_string, - STATE(1905), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2211), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2557), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2749), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2302), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107887,46 +109069,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95582] = 18, - ACTIONS(308), 1, + [96411] = 18, + ACTIONS(313), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2591), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2601), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2603), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2607), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2609), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2611), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2731), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2744), 1, + ACTIONS(2753), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1799), 1, sym_string, - STATE(1905), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2211), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2557), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2749), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2302), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107935,46 +109117,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95648] = 18, - ACTIONS(308), 1, + [96477] = 18, + ACTIONS(313), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2591), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2601), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2603), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2607), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2609), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2611), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2731), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2746), 1, + ACTIONS(2755), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1799), 1, sym_string, - STATE(1905), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2211), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2557), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2749), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2302), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107983,46 +109165,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95714] = 18, - ACTIONS(308), 1, + [96543] = 18, + ACTIONS(313), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2591), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2601), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2603), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2607), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2609), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2611), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2731), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2748), 1, + ACTIONS(2757), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1799), 1, sym_string, - STATE(1905), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2211), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2557), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2749), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2302), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108031,46 +109213,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95780] = 18, - ACTIONS(308), 1, + [96609] = 18, + ACTIONS(313), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2591), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2601), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2603), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2607), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2609), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2611), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2731), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2750), 1, + ACTIONS(2759), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1799), 1, sym_string, - STATE(1905), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2034), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2303), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2749), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2302), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108079,46 +109261,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95846] = 18, - ACTIONS(308), 1, + [96675] = 18, + ACTIONS(313), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2591), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2601), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2603), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2607), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2609), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2611), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2731), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2752), 1, + ACTIONS(2761), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1799), 1, sym_string, - STATE(1905), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2211), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2557), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2749), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2302), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108127,46 +109309,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95912] = 18, - ACTIONS(308), 1, + [96741] = 18, + ACTIONS(313), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2591), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2601), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2603), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2607), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2609), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2611), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2731), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2754), 1, + ACTIONS(2763), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1799), 1, sym_string, - STATE(1905), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2211), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2557), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2749), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2302), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108175,46 +109357,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95978] = 18, - ACTIONS(308), 1, + [96807] = 18, + ACTIONS(313), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2591), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2601), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2603), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2607), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2609), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2611), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2731), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2756), 1, + ACTIONS(2765), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1799), 1, sym_string, - STATE(1905), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2211), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2557), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2749), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2302), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108223,46 +109405,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96044] = 18, - ACTIONS(308), 1, + [96873] = 18, + ACTIONS(313), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2591), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2601), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2603), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2607), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2609), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2611), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2731), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2758), 1, + ACTIONS(2767), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1799), 1, sym_string, - STATE(1905), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2211), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2557), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2749), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2302), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108271,46 +109453,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96110] = 18, - ACTIONS(308), 1, + [96939] = 18, + ACTIONS(313), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2591), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2601), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2603), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2607), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2609), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2611), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2731), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2760), 1, + ACTIONS(2769), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1799), 1, sym_string, - STATE(1905), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2211), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2557), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2749), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2302), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108319,46 +109501,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96176] = 18, - ACTIONS(308), 1, + [97005] = 18, + ACTIONS(313), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2591), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2601), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2603), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2607), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2609), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2611), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2731), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2762), 1, + ACTIONS(2771), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1799), 1, sym_string, - STATE(1905), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2211), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2557), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2749), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2302), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108367,46 +109549,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96242] = 18, - ACTIONS(308), 1, + [97071] = 18, + ACTIONS(313), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2591), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2601), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2603), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2607), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2609), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2611), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2731), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2764), 1, + ACTIONS(2773), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1799), 1, sym_string, - STATE(1905), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2006), 1, + STATE(2040), 1, sym_splat_pattern, - STATE(2277), 1, + STATE(2326), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2749), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2302), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108415,46 +109597,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96308] = 18, - ACTIONS(308), 1, + [97137] = 18, + ACTIONS(313), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2591), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2601), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2603), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2607), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2609), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2611), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2731), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2766), 1, + ACTIONS(2775), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1799), 1, sym_string, - STATE(1905), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2068), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2469), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2749), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2302), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108463,46 +109645,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96374] = 18, - ACTIONS(308), 1, + [97203] = 18, + ACTIONS(313), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2591), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2601), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2603), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2607), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2609), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2611), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2731), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2768), 1, + ACTIONS(2777), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1799), 1, sym_string, - STATE(1905), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2091), 1, + STATE(2211), 1, sym_splat_pattern, - STATE(2468), 1, + STATE(2557), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2749), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2302), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108511,46 +109693,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96440] = 18, - ACTIONS(308), 1, + [97269] = 18, + ACTIONS(313), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2591), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2601), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2603), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2607), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2609), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2611), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2731), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2770), 1, + ACTIONS(2779), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1799), 1, sym_string, - STATE(1905), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2013), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2282), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2749), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2302), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108559,46 +109741,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96506] = 18, - ACTIONS(308), 1, + [97335] = 18, + ACTIONS(313), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2591), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2601), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2603), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2607), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2609), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2611), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2731), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2772), 1, + ACTIONS(2781), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1799), 1, sym_string, - STATE(1905), 1, + STATE(1960), 1, sym_dotted_name, - STATE(1999), 1, + STATE(2211), 1, sym_splat_pattern, - STATE(2296), 1, + STATE(2557), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2749), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2302), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108607,46 +109789,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96572] = 18, - ACTIONS(308), 1, + [97401] = 18, + ACTIONS(313), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2591), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2601), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2603), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2607), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2609), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2611), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2731), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2774), 1, + ACTIONS(2783), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1799), 1, sym_string, - STATE(1905), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2211), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2557), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2749), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2302), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108655,46 +109837,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96638] = 18, - ACTIONS(308), 1, + [97467] = 18, + ACTIONS(313), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2591), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2601), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2603), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2607), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2609), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2611), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2731), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2776), 1, + ACTIONS(2785), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1799), 1, sym_string, - STATE(1905), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2211), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2557), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2749), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2302), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108703,46 +109885,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96704] = 18, - ACTIONS(308), 1, + [97533] = 18, + ACTIONS(313), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2591), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2601), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2603), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2607), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2609), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2611), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2731), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2778), 1, + ACTIONS(2787), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1799), 1, sym_string, - STATE(1905), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2211), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2557), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2749), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2302), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108751,44 +109933,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96770] = 17, - ACTIONS(308), 1, + [97599] = 18, + ACTIONS(313), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2591), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2601), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2603), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2607), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2609), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2611), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2731), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2747), 1, sym_identifier, - STATE(1789), 1, + ACTIONS(2789), 1, + anon_sym_RBRACE, + STATE(1799), 1, sym_string, - STATE(1905), 1, + STATE(1960), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2211), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2557), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2749), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2302), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108797,83 +109981,86 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96833] = 15, - ACTIONS(799), 1, + [97665] = 17, + ACTIONS(313), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2591), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, - anon_sym_STAR, - ACTIONS(2610), 1, - anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2601), 1, anon_sym_LBRACK, - ACTIONS(2616), 1, + ACTIONS(2603), 1, anon_sym_DASH, - ACTIONS(2620), 1, + ACTIONS(2607), 1, anon_sym_LBRACE, - ACTIONS(2622), 1, + ACTIONS(2609), 1, sym_integer, - ACTIONS(2624), 1, + ACTIONS(2611), 1, sym_float, - ACTIONS(2780), 1, + ACTIONS(2731), 1, + anon_sym_STAR, + ACTIONS(2733), 1, + anon_sym_STAR_STAR, + ACTIONS(2747), 1, sym_identifier, - STATE(1843), 1, + STATE(1799), 1, sym_string, - STATE(2015), 1, + STATE(1960), 1, sym_dotted_name, + STATE(2211), 1, + sym_splat_pattern, + STATE(2557), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2782), 4, + ACTIONS(2749), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2032), 9, + STATE(2302), 8, 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, - [96891] = 15, - ACTIONS(799), 1, + [97728] = 15, + ACTIONS(762), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2641), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, + ACTIONS(2645), 1, anon_sym_STAR, - ACTIONS(2610), 1, + ACTIONS(2647), 1, anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2649), 1, anon_sym_LBRACK, - ACTIONS(2616), 1, + ACTIONS(2651), 1, anon_sym_DASH, - ACTIONS(2620), 1, + ACTIONS(2655), 1, anon_sym_LBRACE, - ACTIONS(2622), 1, + ACTIONS(2657), 1, sym_integer, - ACTIONS(2624), 1, + ACTIONS(2659), 1, sym_float, - ACTIONS(2780), 1, + ACTIONS(2791), 1, sym_identifier, - STATE(1843), 1, + STATE(1870), 1, sym_string, - STATE(2015), 1, + STATE(2039), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2784), 4, + ACTIONS(2793), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2033), 9, + STATE(2097), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108883,32 +110070,32 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96949] = 9, - ACTIONS(2124), 1, + [97786] = 9, + ACTIONS(2225), 1, anon_sym_not, - ACTIONS(2130), 1, + ACTIONS(2231), 1, anon_sym_is, - ACTIONS(2788), 1, + ACTIONS(2797), 1, anon_sym_EQ, - STATE(1559), 1, + STATE(1561), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2132), 2, + ACTIONS(2233), 2, anon_sym_LT, anon_sym_GT, - STATE(873), 2, + STATE(912), 2, sym__not_in, sym__is_not, - ACTIONS(2110), 6, + ACTIONS(2211), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2786), 11, + ACTIONS(2795), 11, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -108920,40 +110107,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [96995] = 15, - ACTIONS(308), 1, + [97832] = 15, + ACTIONS(784), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2617), 1, anon_sym_LPAREN, - ACTIONS(2582), 1, + ACTIONS(2619), 1, anon_sym_STAR, - ACTIONS(2588), 1, + ACTIONS(2621), 1, anon_sym_STAR_STAR, - ACTIONS(2590), 1, + ACTIONS(2623), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2627), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2631), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2633), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2635), 1, sym_float, - ACTIONS(2736), 1, + ACTIONS(2799), 1, sym_identifier, - STATE(1789), 1, + STATE(1884), 1, sym_string, - STATE(1905), 1, + STATE(2020), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2790), 4, + ACTIONS(2801), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1968), 9, + STATE(2044), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108963,40 +110150,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [97053] = 15, - ACTIONS(709), 1, + [97890] = 15, + ACTIONS(762), 1, sym_string_start, - ACTIONS(2628), 1, + ACTIONS(2641), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2645), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2647), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2649), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2651), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2655), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2657), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2659), 1, sym_float, - ACTIONS(2792), 1, + ACTIONS(2791), 1, sym_identifier, - STATE(1886), 1, + STATE(1870), 1, sym_string, - STATE(2111), 1, + STATE(2039), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2794), 4, + ACTIONS(2803), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2048), 9, + STATE(2098), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -109006,40 +110193,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [97111] = 15, - ACTIONS(684), 1, + [97948] = 15, + ACTIONS(313), 1, sym_string_start, - ACTIONS(2718), 1, + ACTIONS(2591), 1, anon_sym_LPAREN, - ACTIONS(2720), 1, + ACTIONS(2593), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2599), 1, anon_sym_STAR_STAR, - ACTIONS(2724), 1, + ACTIONS(2601), 1, anon_sym_LBRACK, - ACTIONS(2726), 1, + ACTIONS(2603), 1, anon_sym_DASH, - ACTIONS(2730), 1, + ACTIONS(2607), 1, anon_sym_LBRACE, - ACTIONS(2732), 1, + ACTIONS(2609), 1, sym_integer, - ACTIONS(2734), 1, + ACTIONS(2611), 1, sym_float, - ACTIONS(2796), 1, + ACTIONS(2747), 1, sym_identifier, - STATE(1863), 1, + STATE(1799), 1, sym_string, - STATE(2007), 1, + STATE(1960), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2798), 4, + ACTIONS(2805), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2037), 9, + STATE(1921), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -109049,40 +110236,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [97169] = 15, - ACTIONS(308), 1, + [98006] = 15, + ACTIONS(313), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2591), 1, anon_sym_LPAREN, - ACTIONS(2582), 1, + ACTIONS(2593), 1, anon_sym_STAR, - ACTIONS(2588), 1, + ACTIONS(2599), 1, anon_sym_STAR_STAR, - ACTIONS(2590), 1, + ACTIONS(2601), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2603), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2607), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2609), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2611), 1, sym_float, - ACTIONS(2736), 1, + ACTIONS(2747), 1, sym_identifier, - STATE(1789), 1, + STATE(1799), 1, sym_string, - STATE(1905), 1, + STATE(1960), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2800), 4, + ACTIONS(2807), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1982), 9, + STATE(1926), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -109092,40 +110279,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [97227] = 15, - ACTIONS(709), 1, + [98064] = 15, + ACTIONS(694), 1, sym_string_start, - ACTIONS(2628), 1, + ACTIONS(2729), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2731), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2735), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2737), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2741), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2743), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2745), 1, sym_float, - ACTIONS(2792), 1, + ACTIONS(2809), 1, sym_identifier, - STATE(1886), 1, + STATE(1857), 1, sym_string, - STATE(2111), 1, + STATE(2103), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2802), 4, + ACTIONS(2811), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2055), 9, + STATE(2027), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -109135,32 +110322,75 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [97285] = 9, - ACTIONS(2809), 1, + [98122] = 15, + ACTIONS(784), 1, + sym_string_start, + ACTIONS(2617), 1, + anon_sym_LPAREN, + ACTIONS(2619), 1, + anon_sym_STAR, + ACTIONS(2621), 1, + anon_sym_STAR_STAR, + ACTIONS(2623), 1, + anon_sym_LBRACK, + ACTIONS(2627), 1, + anon_sym_DASH, + ACTIONS(2631), 1, + anon_sym_LBRACE, + ACTIONS(2633), 1, + sym_integer, + ACTIONS(2635), 1, + sym_float, + ACTIONS(2799), 1, + sym_identifier, + STATE(1884), 1, + sym_string, + STATE(2020), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2813), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2045), 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, + [98180] = 9, + ACTIONS(2820), 1, anon_sym_EQ, - ACTIONS(2811), 1, + ACTIONS(2822), 1, anon_sym_not, - ACTIONS(2814), 1, + ACTIONS(2825), 1, anon_sym_is, - STATE(1559), 1, + STATE(1561), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2817), 2, + ACTIONS(2828), 2, anon_sym_LT, anon_sym_GT, - STATE(873), 2, + STATE(912), 2, sym__not_in, sym__is_not, - ACTIONS(2806), 6, + ACTIONS(2817), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2804), 11, + ACTIONS(2815), 11, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -109172,40 +110402,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97331] = 15, - ACTIONS(684), 1, + [98226] = 15, + ACTIONS(694), 1, sym_string_start, - ACTIONS(2718), 1, + ACTIONS(2729), 1, anon_sym_LPAREN, - ACTIONS(2720), 1, + ACTIONS(2731), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - ACTIONS(2724), 1, + ACTIONS(2735), 1, anon_sym_LBRACK, - ACTIONS(2726), 1, + ACTIONS(2737), 1, anon_sym_DASH, - ACTIONS(2730), 1, + ACTIONS(2741), 1, anon_sym_LBRACE, - ACTIONS(2732), 1, + ACTIONS(2743), 1, sym_integer, - ACTIONS(2734), 1, + ACTIONS(2745), 1, sym_float, - ACTIONS(2796), 1, + ACTIONS(2809), 1, sym_identifier, - STATE(1863), 1, + STATE(1857), 1, sym_string, - STATE(2007), 1, + STATE(2103), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2820), 4, + ACTIONS(2831), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2018), 9, + STATE(2022), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -109215,32 +110445,32 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [97389] = 9, - ACTIONS(2809), 1, + [98284] = 9, + ACTIONS(2820), 1, anon_sym_as, - ACTIONS(2811), 1, + ACTIONS(2822), 1, anon_sym_not, - ACTIONS(2825), 1, + ACTIONS(2836), 1, anon_sym_is, - STATE(1561), 1, + STATE(1563), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2828), 2, + ACTIONS(2839), 2, anon_sym_LT, anon_sym_GT, - STATE(919), 2, + STATE(903), 2, sym__not_in, sym__is_not, - ACTIONS(2822), 6, + ACTIONS(2833), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2804), 10, + ACTIONS(2815), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_if, @@ -109251,32 +110481,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97434] = 9, - ACTIONS(2124), 1, + [98329] = 9, + ACTIONS(2225), 1, anon_sym_not, - ACTIONS(2158), 1, + ACTIONS(2325), 1, anon_sym_is, - ACTIONS(2788), 1, + ACTIONS(2797), 1, anon_sym_as, - STATE(1561), 1, + STATE(1563), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2160), 2, + ACTIONS(2327), 2, anon_sym_LT, anon_sym_GT, - STATE(919), 2, + STATE(903), 2, sym__not_in, sym__is_not, - ACTIONS(2142), 6, + ACTIONS(2309), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2786), 10, + ACTIONS(2795), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_if, @@ -109287,206 +110517,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97479] = 9, - ACTIONS(2809), 1, + [98374] = 9, + ACTIONS(2820), 1, anon_sym_EQ, - ACTIONS(2811), 1, + ACTIONS(2822), 1, anon_sym_not, - ACTIONS(2834), 1, + ACTIONS(2845), 1, anon_sym_is, - STATE(1563), 1, + STATE(1565), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2837), 2, + ACTIONS(2848), 2, anon_sym_LT, anon_sym_GT, - STATE(947), 2, + STATE(948), 2, sym__not_in, sym__is_not, - ACTIONS(2831), 6, + ACTIONS(2842), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2804), 9, + ACTIONS(2815), 9, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97523] = 9, - ACTIONS(2124), 1, + [98418] = 9, + ACTIONS(2225), 1, anon_sym_not, - ACTIONS(2406), 1, + ACTIONS(2357), 1, anon_sym_is, - ACTIONS(2788), 1, + ACTIONS(2797), 1, anon_sym_EQ, - STATE(1563), 1, + STATE(1565), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2408), 2, + ACTIONS(2359), 2, anon_sym_LT, anon_sym_GT, - STATE(947), 2, + STATE(948), 2, sym__not_in, sym__is_not, - ACTIONS(2390), 6, + ACTIONS(2341), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2786), 9, + ACTIONS(2795), 9, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97567] = 9, - ACTIONS(2809), 1, + [98462] = 9, + ACTIONS(2820), 1, anon_sym_EQ, - ACTIONS(2811), 1, + ACTIONS(2822), 1, anon_sym_not, - ACTIONS(2843), 1, + ACTIONS(2854), 1, anon_sym_is, - STATE(1565), 1, + STATE(1567), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2846), 2, + ACTIONS(2857), 2, anon_sym_LT, anon_sym_GT, - STATE(936), 2, + STATE(871), 2, sym__not_in, sym__is_not, - ACTIONS(2840), 6, + 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(2804), 9, + ACTIONS(2815), 9, anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97611] = 9, - ACTIONS(2124), 1, + [98506] = 9, + ACTIONS(2225), 1, anon_sym_not, - ACTIONS(2374), 1, + ACTIONS(2413), 1, anon_sym_is, - ACTIONS(2788), 1, + ACTIONS(2797), 1, anon_sym_EQ, - STATE(1565), 1, + STATE(1567), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2376), 2, + ACTIONS(2415), 2, anon_sym_LT, anon_sym_GT, - STATE(936), 2, + STATE(871), 2, sym__not_in, sym__is_not, - ACTIONS(2358), 6, + ACTIONS(2397), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2786), 9, + ACTIONS(2795), 9, anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97655] = 9, - ACTIONS(2124), 1, - anon_sym_not, - ACTIONS(2314), 1, - anon_sym_is, - ACTIONS(2788), 1, - anon_sym_EQ, - STATE(1570), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2316), 2, - anon_sym_LT, - anon_sym_GT, - STATE(901), 2, - sym__not_in, - sym__is_not, - ACTIONS(2298), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2786), 8, - anon_sym_COMMA, + [98550] = 9, + ACTIONS(2820), 1, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [97698] = 9, - ACTIONS(2124), 1, + ACTIONS(2822), 1, anon_sym_not, - ACTIONS(2286), 1, + ACTIONS(2863), 1, anon_sym_is, - ACTIONS(2788), 1, - anon_sym_as, - STATE(1571), 1, + STATE(1569), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2288), 2, + ACTIONS(2866), 2, anon_sym_LT, anon_sym_GT, - STATE(950), 2, + STATE(921), 2, sym__not_in, sym__is_not, - ACTIONS(2270), 6, + ACTIONS(2860), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2786), 8, + ACTIONS(2815), 8, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, @@ -109495,30 +110691,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [97741] = 8, - ACTIONS(2811), 1, + [98593] = 8, + ACTIONS(2822), 1, anon_sym_not, - ACTIONS(2852), 1, + ACTIONS(2872), 1, anon_sym_is, - STATE(1569), 1, + STATE(1570), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2855), 2, + ACTIONS(2875), 2, anon_sym_LT, anon_sym_GT, - STATE(886), 2, + STATE(882), 2, sym__not_in, sym__is_not, - ACTIONS(2849), 6, + ACTIONS(2869), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2804), 9, + ACTIONS(2815), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -109528,154 +110724,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97782] = 9, - ACTIONS(2809), 1, - anon_sym_EQ, - ACTIONS(2811), 1, + [98634] = 9, + ACTIONS(2225), 1, anon_sym_not, - ACTIONS(2861), 1, + ACTIONS(2297), 1, anon_sym_is, - STATE(1570), 1, + ACTIONS(2797), 1, + anon_sym_as, + STATE(1569), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2864), 2, + ACTIONS(2299), 2, anon_sym_LT, anon_sym_GT, - STATE(901), 2, + STATE(921), 2, sym__not_in, sym__is_not, - ACTIONS(2858), 6, + ACTIONS(2281), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2804), 8, + ACTIONS(2795), 8, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - sym_type_conversion, - [97825] = 9, - ACTIONS(2809), 1, - anon_sym_as, - ACTIONS(2811), 1, + [98677] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2880), 10, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(2878), 12, + anon_sym_lazy, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [98708] = 8, + ACTIONS(2225), 1, anon_sym_not, - ACTIONS(2870), 1, + ACTIONS(2471), 1, anon_sym_is, - STATE(1571), 1, + STATE(1570), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2873), 2, + ACTIONS(2473), 2, anon_sym_LT, anon_sym_GT, - STATE(950), 2, + STATE(882), 2, sym__not_in, sym__is_not, - ACTIONS(2867), 6, + ACTIONS(2455), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2804), 8, + ACTIONS(2795), 9, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97868] = 8, - ACTIONS(2124), 1, + [98749] = 9, + ACTIONS(2820), 1, + anon_sym_EQ, + ACTIONS(2822), 1, anon_sym_not, - ACTIONS(2452), 1, + ACTIONS(2885), 1, anon_sym_is, - STATE(1569), 1, + STATE(1574), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2454), 2, + ACTIONS(2888), 2, anon_sym_LT, anon_sym_GT, - STATE(886), 2, + STATE(953), 2, sym__not_in, sym__is_not, - ACTIONS(2436), 6, + ACTIONS(2882), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2786), 9, - anon_sym_DOT, + ACTIONS(2815), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [97909] = 9, - ACTIONS(2809), 1, - anon_sym_as, - ACTIONS(2811), 1, + sym_type_conversion, + [98792] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2893), 10, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(2891), 12, + anon_sym_lazy, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [98823] = 9, + ACTIONS(2225), 1, anon_sym_not, - ACTIONS(2879), 1, + ACTIONS(2269), 1, anon_sym_is, - STATE(1573), 1, + ACTIONS(2797), 1, + anon_sym_EQ, + STATE(1574), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2882), 2, + ACTIONS(2271), 2, anon_sym_LT, anon_sym_GT, - STATE(864), 2, + STATE(953), 2, sym__not_in, sym__is_not, - ACTIONS(2876), 6, + ACTIONS(2253), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2804), 7, - anon_sym_RPAREN, + ACTIONS(2795), 8, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [97951] = 4, + sym_type_conversion, + [98866] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 2, + ACTIONS(1737), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1571), 5, + ACTIONS(1612), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1555), 14, + ACTIONS(1732), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109690,20 +110943,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97983] = 4, + [98898] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 2, + ACTIONS(1601), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1571), 5, + ACTIONS(1612), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1640), 14, + ACTIONS(1596), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109718,20 +110971,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98015] = 4, + [98930] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, + ACTIONS(1668), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(300), 5, + ACTIONS(1672), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(257), 14, + ACTIONS(1663), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109746,47 +110999,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98047] = 3, + [98962] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2887), 10, - sym_string_start, + ACTIONS(264), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(305), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(262), 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, + [98994] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1657), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1661), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1652), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(2885), 11, - anon_sym_print, - anon_sym_match, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [99026] = 9, + ACTIONS(2225), 1, + anon_sym_not, + ACTIONS(2385), 1, + anon_sym_is, + ACTIONS(2797), 1, + anon_sym_as, + STATE(1584), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2387), 2, + anon_sym_LT, + anon_sym_GT, + STATE(877), 2, + sym__not_in, + sym__is_not, + ACTIONS(2369), 6, + 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_exec, - anon_sym_type, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [98077] = 4, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [99068] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1686), 2, + ACTIONS(264), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1688), 5, + ACTIONS(305), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1681), 14, + ACTIONS(262), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109801,32 +111116,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98109] = 9, - ACTIONS(2124), 1, + [99100] = 9, + ACTIONS(2820), 1, + anon_sym_as, + ACTIONS(2822), 1, anon_sym_not, - ACTIONS(2342), 1, + ACTIONS(2898), 1, anon_sym_is, - ACTIONS(2788), 1, - anon_sym_as, - STATE(1573), 1, + STATE(1584), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2344), 2, + ACTIONS(2901), 2, anon_sym_LT, anon_sym_GT, - STATE(864), 2, + STATE(877), 2, sym__not_in, sym__is_not, - ACTIONS(2326), 6, + ACTIONS(2895), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2786), 7, + ACTIONS(2815), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -109834,98 +111149,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_and, anon_sym_or, - [98151] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1658), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(1651), 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, - [98183] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(259), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(300), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(257), 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, - [98215] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2891), 10, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(2889), 11, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_type, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [98245] = 4, - ACTIONS(2895), 1, + [99142] = 4, + ACTIONS(2906), 1, anon_sym_COMMA, - STATE(1583), 1, + STATE(1585), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2893), 17, + ACTIONS(2904), 17, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -109943,15 +111175,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [98275] = 4, - ACTIONS(2898), 1, + [99172] = 4, + ACTIONS(2909), 1, anon_sym_COMMA, - STATE(1583), 1, + STATE(1585), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(971), 17, + ACTIONS(964), 17, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -109969,18 +111201,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [98305] = 4, + [99202] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, + ACTIONS(264), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1407), 3, + ACTIONS(1422), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(257), 14, + ACTIONS(262), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109995,18 +111227,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98335] = 4, + [99232] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, + ACTIONS(264), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1407), 3, + ACTIONS(1422), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(257), 14, + ACTIONS(262), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110021,18 +111253,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98365] = 4, + [99262] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 2, + ACTIONS(1601), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2900), 3, + ACTIONS(2911), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1555), 14, + ACTIONS(1596), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110047,18 +111279,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98395] = 4, + [99292] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, + ACTIONS(264), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(643), 3, + ACTIONS(650), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(257), 14, + ACTIONS(262), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110073,18 +111305,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98425] = 4, + [99322] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, + ACTIONS(264), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(643), 3, + ACTIONS(650), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(257), 14, + ACTIONS(262), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110099,18 +111331,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98455] = 4, + [99352] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 2, + ACTIONS(1601), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1619), 3, + ACTIONS(1767), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1555), 14, + ACTIONS(1596), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110125,36 +111357,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98485] = 4, + [99382] = 13, + ACTIONS(2273), 1, + anon_sym_DOT, + ACTIONS(2285), 1, + anon_sym_LBRACK, + ACTIONS(2335), 1, + anon_sym_LPAREN, + ACTIONS(2343), 1, + anon_sym_STAR_STAR, + ACTIONS(2351), 1, + anon_sym_PIPE, + ACTIONS(2353), 1, + anon_sym_AMP, + ACTIONS(2355), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(300), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(257), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2339), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2349), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1400), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2347), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [98514] = 2, + [99429] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2913), 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, + [99454] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2893), 18, + ACTIONS(2904), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -110173,17 +111437,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [98539] = 4, + [99479] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, + ACTIONS(264), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(300), 2, + ACTIONS(305), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(257), 14, + ACTIONS(262), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110198,11 +111462,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98568] = 2, + [99508] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 18, + ACTIONS(1612), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -110221,17 +111485,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [98593] = 4, + [99533] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(300), 2, + ACTIONS(1612), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(257), 14, + ACTIONS(1737), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1732), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110246,17 +111510,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98622] = 4, + [99562] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1645), 2, + ACTIONS(1601), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1640), 14, + ACTIONS(1612), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1596), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110271,17 +111535,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98651] = 4, + [99591] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 2, + ACTIONS(1657), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1571), 2, + ACTIONS(1661), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1555), 14, + ACTIONS(1652), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110296,17 +111560,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98680] = 4, + [99620] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1686), 2, + ACTIONS(1668), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1688), 2, + ACTIONS(1672), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1681), 14, + ACTIONS(1663), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110321,17 +111585,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98709] = 4, + [99649] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1656), 2, + ACTIONS(1601), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 2, - anon_sym_RPAREN, + ACTIONS(1767), 2, anon_sym_COMMA, - ACTIONS(1651), 14, + anon_sym_COLON, + ACTIONS(1596), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110346,17 +111610,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98738] = 4, + [99678] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 2, + ACTIONS(264), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1619), 2, + ACTIONS(1422), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1555), 14, + ACTIONS(262), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110371,17 +111635,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98767] = 4, + [99707] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, + ACTIONS(264), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1407), 2, + ACTIONS(1422), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(257), 14, + ACTIONS(262), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110396,17 +111660,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98796] = 4, + [99736] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, + ACTIONS(1601), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1407), 2, + ACTIONS(2911), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(257), 14, + ACTIONS(1596), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110421,17 +111685,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98825] = 4, + [99765] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 2, + ACTIONS(1612), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1737), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2900), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1555), 14, + ACTIONS(1732), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110446,17 +111710,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98854] = 4, + [99794] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1645), 2, + ACTIONS(1601), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1640), 14, + ACTIONS(1612), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1596), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110471,17 +111735,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98883] = 4, + [99823] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 2, + ACTIONS(1657), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1571), 2, + ACTIONS(1661), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1555), 14, + ACTIONS(1652), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110496,17 +111760,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98912] = 4, + [99852] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1686), 2, + ACTIONS(1668), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1688), 2, + ACTIONS(1672), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1681), 14, + ACTIONS(1663), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110521,17 +111785,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98941] = 4, + [99881] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1656), 2, + ACTIONS(264), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 2, + ACTIONS(305), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1651), 14, + anon_sym_in, + ACTIONS(262), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110546,17 +111810,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98970] = 4, + [99910] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(300), 2, + ACTIONS(2915), 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, + [99935] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1612), 2, anon_sym_COMMA, anon_sym_in, - ACTIONS(257), 14, + ACTIONS(1737), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1732), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110571,17 +111858,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98999] = 4, + [99964] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1645), 2, + ACTIONS(1601), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1640), 14, + ACTIONS(1612), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1596), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110596,17 +111883,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99028] = 4, + [99993] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 2, + ACTIONS(1657), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1571), 2, + ACTIONS(1661), 2, anon_sym_COMMA, anon_sym_in, - ACTIONS(1555), 14, + ACTIONS(1652), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110621,40 +111908,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99057] = 2, + [100022] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2902), 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, - [99082] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1686), 2, + ACTIONS(1668), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1688), 2, + ACTIONS(1672), 2, anon_sym_COMMA, anon_sym_in, - ACTIONS(1681), 14, + ACTIONS(1663), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110669,17 +111933,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99111] = 4, + [100051] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1656), 2, + ACTIONS(264), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 2, + ACTIONS(305), 2, anon_sym_COMMA, anon_sym_in, - ACTIONS(1651), 14, + ACTIONS(262), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110694,74 +111958,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99140] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2904), 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, - [99165] = 13, - ACTIONS(2352), 1, + [100080] = 13, + ACTIONS(2329), 1, + anon_sym_DOT, + ACTIONS(2331), 1, + anon_sym_LBRACK, + ACTIONS(2335), 1, anon_sym_LPAREN, - ACTIONS(2360), 1, + ACTIONS(2343), 1, anon_sym_STAR_STAR, - ACTIONS(2368), 1, + ACTIONS(2351), 1, anon_sym_PIPE, - ACTIONS(2370), 1, + ACTIONS(2353), 1, anon_sym_AMP, - ACTIONS(2372), 1, + ACTIONS(2355), 1, anon_sym_CARET, - ACTIONS(2378), 1, - anon_sym_DOT, - ACTIONS(2380), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2354), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2356), 2, + ACTIONS(2339), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2366), 2, + ACTIONS(2349), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1405), 2, + STATE(1400), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2364), 3, + ACTIONS(2347), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99212] = 4, + [100127] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, + ACTIONS(264), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(643), 2, + ACTIONS(650), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(257), 14, + ACTIONS(262), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110776,17 +112017,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99241] = 4, + [100156] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, + ACTIONS(264), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(643), 2, + ACTIONS(650), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(257), 14, + ACTIONS(262), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110801,17 +112042,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99270] = 4, + [100185] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, + ACTIONS(264), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(300), 2, + ACTIONS(305), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(257), 14, + ACTIONS(262), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110826,17 +112067,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99299] = 4, + [100214] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, + ACTIONS(264), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(300), 2, + ACTIONS(305), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(257), 14, + ACTIONS(262), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110851,377 +112092,344 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99328] = 13, - ACTIONS(2350), 1, + [100243] = 13, + ACTIONS(2333), 1, anon_sym_DOT, - ACTIONS(2352), 1, + ACTIONS(2335), 1, anon_sym_LPAREN, - ACTIONS(2360), 1, + ACTIONS(2343), 1, anon_sym_STAR_STAR, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2368), 1, - anon_sym_PIPE, - ACTIONS(2370), 1, - anon_sym_AMP, - ACTIONS(2372), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2354), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2356), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2366), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1405), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2364), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [99375] = 13, - ACTIONS(2102), 1, - anon_sym_DOT, - ACTIONS(2116), 1, + ACTIONS(2345), 1, anon_sym_LBRACK, - ACTIONS(2352), 1, - anon_sym_LPAREN, - ACTIONS(2360), 1, - anon_sym_STAR_STAR, - ACTIONS(2368), 1, + ACTIONS(2351), 1, anon_sym_PIPE, - ACTIONS(2370), 1, + ACTIONS(2353), 1, anon_sym_AMP, - ACTIONS(2372), 1, + ACTIONS(2355), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2354), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2356), 2, + ACTIONS(2339), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2366), 2, + ACTIONS(2349), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1405), 2, + STATE(1400), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2364), 3, + ACTIONS(2347), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99422] = 13, - ACTIONS(2318), 1, + [100290] = 13, + ACTIONS(2203), 1, anon_sym_DOT, - ACTIONS(2330), 1, + ACTIONS(2217), 1, anon_sym_LBRACK, - ACTIONS(2352), 1, + ACTIONS(2335), 1, anon_sym_LPAREN, - ACTIONS(2360), 1, + ACTIONS(2343), 1, anon_sym_STAR_STAR, - ACTIONS(2368), 1, + ACTIONS(2351), 1, anon_sym_PIPE, - ACTIONS(2370), 1, + ACTIONS(2353), 1, anon_sym_AMP, - ACTIONS(2372), 1, + ACTIONS(2355), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2354), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2356), 2, + ACTIONS(2339), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2366), 2, + ACTIONS(2349), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1405), 2, + STATE(1400), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2364), 3, + ACTIONS(2347), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99469] = 13, - ACTIONS(2352), 1, + [100337] = 13, + ACTIONS(2335), 1, anon_sym_LPAREN, - ACTIONS(2360), 1, + ACTIONS(2343), 1, anon_sym_STAR_STAR, - ACTIONS(2368), 1, + ACTIONS(2351), 1, anon_sym_PIPE, - ACTIONS(2370), 1, + ACTIONS(2353), 1, anon_sym_AMP, - ACTIONS(2372), 1, + ACTIONS(2355), 1, anon_sym_CARET, - ACTIONS(2906), 1, + ACTIONS(2361), 1, anon_sym_DOT, - ACTIONS(2908), 1, + ACTIONS(2373), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2354), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2356), 2, + ACTIONS(2339), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2366), 2, + ACTIONS(2349), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1405), 2, + STATE(1400), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2364), 3, + ACTIONS(2347), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99516] = 13, - ACTIONS(2290), 1, - anon_sym_DOT, - ACTIONS(2302), 1, - anon_sym_LBRACK, - ACTIONS(2352), 1, + [100384] = 13, + ACTIONS(2335), 1, anon_sym_LPAREN, - ACTIONS(2360), 1, + ACTIONS(2343), 1, anon_sym_STAR_STAR, - ACTIONS(2368), 1, + ACTIONS(2351), 1, anon_sym_PIPE, - ACTIONS(2370), 1, + ACTIONS(2353), 1, anon_sym_AMP, - ACTIONS(2372), 1, + ACTIONS(2355), 1, anon_sym_CARET, + ACTIONS(2917), 1, + anon_sym_DOT, + ACTIONS(2919), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2354), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2356), 2, + ACTIONS(2339), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2366), 2, + ACTIONS(2349), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1405), 2, + STATE(1400), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2364), 3, + ACTIONS(2347), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99563] = 13, - ACTIONS(2352), 1, + [100431] = 13, + ACTIONS(2245), 1, + anon_sym_DOT, + ACTIONS(2257), 1, + anon_sym_LBRACK, + ACTIONS(2335), 1, anon_sym_LPAREN, - ACTIONS(2360), 1, + ACTIONS(2343), 1, anon_sym_STAR_STAR, - ACTIONS(2368), 1, + ACTIONS(2351), 1, anon_sym_PIPE, - ACTIONS(2370), 1, + ACTIONS(2353), 1, anon_sym_AMP, - ACTIONS(2372), 1, + ACTIONS(2355), 1, anon_sym_CARET, - ACTIONS(2382), 1, - anon_sym_DOT, - ACTIONS(2394), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2354), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2356), 2, + ACTIONS(2339), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2366), 2, + ACTIONS(2349), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1405), 2, + STATE(1400), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2364), 3, + ACTIONS(2347), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99610] = 13, - ACTIONS(2352), 1, + [100478] = 13, + ACTIONS(2335), 1, anon_sym_LPAREN, - ACTIONS(2360), 1, + ACTIONS(2343), 1, anon_sym_STAR_STAR, - ACTIONS(2368), 1, + ACTIONS(2351), 1, anon_sym_PIPE, - ACTIONS(2370), 1, + ACTIONS(2353), 1, anon_sym_AMP, - ACTIONS(2372), 1, + ACTIONS(2355), 1, anon_sym_CARET, - ACTIONS(2428), 1, + ACTIONS(2389), 1, anon_sym_DOT, - ACTIONS(2440), 1, + ACTIONS(2401), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2354), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2356), 2, + ACTIONS(2339), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2366), 2, + ACTIONS(2349), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1405), 2, + STATE(1400), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2364), 3, + ACTIONS(2347), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99657] = 13, - ACTIONS(2134), 1, - anon_sym_DOT, - ACTIONS(2146), 1, - anon_sym_LBRACK, - ACTIONS(2352), 1, + [100525] = 13, + ACTIONS(2335), 1, anon_sym_LPAREN, - ACTIONS(2360), 1, + ACTIONS(2343), 1, anon_sym_STAR_STAR, - ACTIONS(2368), 1, + ACTIONS(2351), 1, anon_sym_PIPE, - ACTIONS(2370), 1, + ACTIONS(2353), 1, anon_sym_AMP, - ACTIONS(2372), 1, + ACTIONS(2355), 1, anon_sym_CARET, + ACTIONS(2447), 1, + anon_sym_DOT, + ACTIONS(2459), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2354), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2356), 2, + ACTIONS(2339), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2366), 2, + ACTIONS(2349), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1405), 2, + STATE(1400), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2364), 3, + ACTIONS(2347), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99704] = 13, - ACTIONS(2262), 1, + [100572] = 13, + ACTIONS(2301), 1, anon_sym_DOT, - ACTIONS(2274), 1, + ACTIONS(2313), 1, anon_sym_LBRACK, - ACTIONS(2352), 1, + ACTIONS(2335), 1, anon_sym_LPAREN, - ACTIONS(2360), 1, + ACTIONS(2343), 1, anon_sym_STAR_STAR, - ACTIONS(2368), 1, + ACTIONS(2351), 1, anon_sym_PIPE, - ACTIONS(2370), 1, + ACTIONS(2353), 1, anon_sym_AMP, - ACTIONS(2372), 1, + ACTIONS(2355), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2354), 2, + ACTIONS(2337), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2356), 2, + ACTIONS(2339), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2366), 2, + ACTIONS(2349), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1405), 2, + STATE(1400), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2364), 3, + ACTIONS(2347), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99751] = 2, + [100619] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2893), 17, + ACTIONS(264), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(305), 2, + 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, - [99775] = 13, - ACTIONS(2910), 1, + ACTIONS(262), 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, + [100648] = 13, + ACTIONS(2921), 1, sym_identifier, - ACTIONS(2912), 1, + ACTIONS(2923), 1, anon_sym_LPAREN, - ACTIONS(2914), 1, + ACTIONS(2925), 1, anon_sym_STAR, - ACTIONS(2916), 1, + ACTIONS(2927), 1, anon_sym_COLON, - ACTIONS(2918), 1, + ACTIONS(2929), 1, anon_sym_STAR_STAR, - ACTIONS(2920), 1, + ACTIONS(2931), 1, anon_sym_SLASH, - STATE(2299), 1, + STATE(2320), 1, sym_parameter, - STATE(2301), 1, + STATE(2324), 1, sym_tuple_pattern, - STATE(2745), 1, + STATE(2601), 1, sym_lambda_parameters, - STATE(2786), 1, + STATE(2777), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2513), 2, + STATE(2542), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2507), 5, + STATE(2530), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99821] = 4, - ACTIONS(2922), 1, - anon_sym_COMMA, - STATE(1640), 1, - aux_sym__patterns_repeat1, + [100694] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(971), 15, + ACTIONS(2913), 17, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_in, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -111236,52 +112444,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99849] = 13, - ACTIONS(2910), 1, - sym_identifier, - ACTIONS(2912), 1, - anon_sym_LPAREN, - ACTIONS(2914), 1, - anon_sym_STAR, - ACTIONS(2918), 1, - anon_sym_STAR_STAR, - ACTIONS(2920), 1, - anon_sym_SLASH, - ACTIONS(2924), 1, - anon_sym_COLON, - STATE(2299), 1, - sym_parameter, - STATE(2301), 1, - sym_tuple_pattern, - STATE(2725), 1, - sym_lambda_parameters, - STATE(2786), 1, - sym__parameters, + [100718] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2513), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2507), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [99895] = 6, - ACTIONS(2926), 1, + ACTIONS(2915), 17, anon_sym_COMMA, - ACTIONS(2928), 1, anon_sym_COLON, - ACTIONS(2930), 1, + anon_sym_in, anon_sym_EQ, - STATE(1631), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2932), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111295,15 +112466,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99927] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1571), 17, + [100742] = 6, + ACTIONS(2933), 1, anon_sym_COMMA, + ACTIONS(2935), 1, anon_sym_COLON, - anon_sym_in, + ACTIONS(2937), 1, anon_sym_EQ, + STATE(1586), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2939), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111317,110 +112492,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99951] = 13, - ACTIONS(2910), 1, - sym_identifier, - ACTIONS(2912), 1, - anon_sym_LPAREN, - ACTIONS(2914), 1, - anon_sym_STAR, - ACTIONS(2918), 1, - anon_sym_STAR_STAR, - ACTIONS(2920), 1, - anon_sym_SLASH, - ACTIONS(2934), 1, - anon_sym_COLON, - STATE(2299), 1, - sym_parameter, - STATE(2301), 1, - sym_tuple_pattern, - STATE(2731), 1, - sym_lambda_parameters, - STATE(2786), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2513), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2507), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [99997] = 13, - ACTIONS(2910), 1, - sym_identifier, - ACTIONS(2912), 1, - anon_sym_LPAREN, - ACTIONS(2914), 1, - anon_sym_STAR, - ACTIONS(2918), 1, - anon_sym_STAR_STAR, - ACTIONS(2920), 1, - anon_sym_SLASH, - ACTIONS(2936), 1, + [100774] = 6, + ACTIONS(2935), 1, anon_sym_COLON, - STATE(2299), 1, - sym_parameter, - STATE(2301), 1, - sym_tuple_pattern, - STATE(2713), 1, - sym_lambda_parameters, - STATE(2786), 1, - sym__parameters, + ACTIONS(2937), 1, + anon_sym_EQ, + ACTIONS(2941), 1, + anon_sym_COMMA, + STATE(1639), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2513), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2507), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [100043] = 13, - ACTIONS(2910), 1, + ACTIONS(2939), 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, + [100806] = 13, + ACTIONS(2921), 1, sym_identifier, - ACTIONS(2912), 1, + ACTIONS(2923), 1, anon_sym_LPAREN, - ACTIONS(2914), 1, + ACTIONS(2925), 1, anon_sym_STAR, - ACTIONS(2918), 1, + ACTIONS(2929), 1, anon_sym_STAR_STAR, - ACTIONS(2920), 1, + ACTIONS(2931), 1, anon_sym_SLASH, - ACTIONS(2938), 1, + ACTIONS(2943), 1, anon_sym_COLON, - STATE(2299), 1, + STATE(2320), 1, sym_parameter, - STATE(2301), 1, + STATE(2324), 1, sym_tuple_pattern, - STATE(2765), 1, + STATE(2637), 1, sym_lambda_parameters, - STATE(2786), 1, + STATE(2777), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2513), 2, + STATE(2542), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2507), 5, + STATE(2530), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100089] = 2, + [100852] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2904), 17, + ACTIONS(1612), 17, anon_sym_COMMA, anon_sym_COLON, anon_sym_in, @@ -111438,40 +112573,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100113] = 5, - ACTIONS(2928), 1, + [100876] = 13, + ACTIONS(2921), 1, + sym_identifier, + ACTIONS(2923), 1, + anon_sym_LPAREN, + ACTIONS(2925), 1, + anon_sym_STAR, + ACTIONS(2929), 1, + anon_sym_STAR_STAR, + ACTIONS(2931), 1, + anon_sym_SLASH, + ACTIONS(2945), 1, anon_sym_COLON, - ACTIONS(2930), 1, - anon_sym_EQ, + STATE(2320), 1, + sym_parameter, + STATE(2324), 1, + sym_tuple_pattern, + STATE(2747), 1, + sym_lambda_parameters, + STATE(2777), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2940), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(2932), 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, - [100143] = 4, - ACTIONS(2942), 1, + STATE(2542), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2530), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [100922] = 4, + ACTIONS(2947), 1, anon_sym_COMMA, - STATE(1640), 1, + STATE(1650), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2893), 15, + ACTIONS(964), 15, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, @@ -111487,239 +112630,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100171] = 13, - ACTIONS(2910), 1, + [100950] = 13, + ACTIONS(2921), 1, sym_identifier, - ACTIONS(2912), 1, + ACTIONS(2923), 1, anon_sym_LPAREN, - ACTIONS(2914), 1, + ACTIONS(2925), 1, anon_sym_STAR, - ACTIONS(2918), 1, + ACTIONS(2929), 1, anon_sym_STAR_STAR, - ACTIONS(2920), 1, + ACTIONS(2931), 1, anon_sym_SLASH, - ACTIONS(2945), 1, + ACTIONS(2949), 1, anon_sym_COLON, - STATE(2299), 1, + STATE(2320), 1, sym_parameter, - STATE(2301), 1, + STATE(2324), 1, sym_tuple_pattern, - STATE(2681), 1, + STATE(2635), 1, sym_lambda_parameters, - STATE(2786), 1, + STATE(2777), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2513), 2, + STATE(2542), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2507), 5, + STATE(2530), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100217] = 13, - ACTIONS(2910), 1, + [100996] = 13, + ACTIONS(2921), 1, sym_identifier, - ACTIONS(2912), 1, + ACTIONS(2923), 1, anon_sym_LPAREN, - ACTIONS(2914), 1, + ACTIONS(2925), 1, anon_sym_STAR, - ACTIONS(2918), 1, + ACTIONS(2929), 1, anon_sym_STAR_STAR, - ACTIONS(2920), 1, + ACTIONS(2931), 1, anon_sym_SLASH, - ACTIONS(2947), 1, + ACTIONS(2951), 1, anon_sym_COLON, - STATE(2299), 1, + STATE(2320), 1, sym_parameter, - STATE(2301), 1, + STATE(2324), 1, sym_tuple_pattern, - STATE(2608), 1, + STATE(2753), 1, sym_lambda_parameters, - STATE(2786), 1, + STATE(2777), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2513), 2, + STATE(2542), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2507), 5, + STATE(2530), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100263] = 2, + [101042] = 13, + ACTIONS(2921), 1, + sym_identifier, + ACTIONS(2923), 1, + anon_sym_LPAREN, + ACTIONS(2925), 1, + anon_sym_STAR, + ACTIONS(2929), 1, + anon_sym_STAR_STAR, + ACTIONS(2931), 1, + anon_sym_SLASH, + ACTIONS(2953), 1, + anon_sym_COLON, + STATE(2320), 1, + sym_parameter, + STATE(2324), 1, + sym_tuple_pattern, + STATE(2723), 1, + sym_lambda_parameters, + STATE(2777), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2902), 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, - [100287] = 13, - ACTIONS(2910), 1, + STATE(2542), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2530), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [101088] = 13, + ACTIONS(2921), 1, sym_identifier, - ACTIONS(2912), 1, + ACTIONS(2923), 1, anon_sym_LPAREN, - ACTIONS(2914), 1, + ACTIONS(2925), 1, anon_sym_STAR, - ACTIONS(2918), 1, + ACTIONS(2929), 1, anon_sym_STAR_STAR, - ACTIONS(2920), 1, + ACTIONS(2931), 1, anon_sym_SLASH, - ACTIONS(2949), 1, + ACTIONS(2955), 1, anon_sym_COLON, - STATE(2299), 1, + STATE(2320), 1, sym_parameter, - STATE(2301), 1, + STATE(2324), 1, sym_tuple_pattern, - STATE(2775), 1, + STATE(2705), 1, sym_lambda_parameters, - STATE(2786), 1, + STATE(2777), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2513), 2, + STATE(2542), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2507), 5, + STATE(2530), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100333] = 13, - ACTIONS(2910), 1, + [101134] = 13, + ACTIONS(2921), 1, sym_identifier, - ACTIONS(2912), 1, + ACTIONS(2923), 1, anon_sym_LPAREN, - ACTIONS(2914), 1, + ACTIONS(2925), 1, anon_sym_STAR, - ACTIONS(2918), 1, + ACTIONS(2929), 1, anon_sym_STAR_STAR, - ACTIONS(2920), 1, + ACTIONS(2931), 1, anon_sym_SLASH, - ACTIONS(2951), 1, + ACTIONS(2957), 1, anon_sym_COLON, - STATE(2299), 1, + STATE(2320), 1, sym_parameter, - STATE(2301), 1, + STATE(2324), 1, sym_tuple_pattern, - STATE(2703), 1, + STATE(2612), 1, sym_lambda_parameters, - STATE(2786), 1, + STATE(2777), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2513), 2, + STATE(2542), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2507), 5, + STATE(2530), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100379] = 13, - ACTIONS(2910), 1, + [101180] = 13, + ACTIONS(2921), 1, sym_identifier, - ACTIONS(2912), 1, + ACTIONS(2923), 1, anon_sym_LPAREN, - ACTIONS(2914), 1, + ACTIONS(2925), 1, anon_sym_STAR, - ACTIONS(2918), 1, + ACTIONS(2929), 1, anon_sym_STAR_STAR, - ACTIONS(2920), 1, + ACTIONS(2931), 1, anon_sym_SLASH, - ACTIONS(2953), 1, + ACTIONS(2959), 1, anon_sym_COLON, - STATE(2299), 1, + STATE(2320), 1, sym_parameter, - STATE(2301), 1, + STATE(2324), 1, sym_tuple_pattern, - STATE(2720), 1, + STATE(2724), 1, sym_lambda_parameters, - STATE(2786), 1, + STATE(2777), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2513), 2, + STATE(2542), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2507), 5, + STATE(2530), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100425] = 13, - ACTIONS(2910), 1, + [101226] = 13, + ACTIONS(2921), 1, sym_identifier, - ACTIONS(2912), 1, + ACTIONS(2923), 1, anon_sym_LPAREN, - ACTIONS(2914), 1, + ACTIONS(2925), 1, anon_sym_STAR, - ACTIONS(2918), 1, + ACTIONS(2929), 1, anon_sym_STAR_STAR, - ACTIONS(2920), 1, + ACTIONS(2931), 1, anon_sym_SLASH, - ACTIONS(2955), 1, + ACTIONS(2961), 1, anon_sym_COLON, - STATE(2299), 1, + STATE(2320), 1, sym_parameter, - STATE(2301), 1, + STATE(2324), 1, sym_tuple_pattern, - STATE(2701), 1, + STATE(2697), 1, sym_lambda_parameters, - STATE(2786), 1, + STATE(2777), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2513), 2, + STATE(2542), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2507), 5, + STATE(2530), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100471] = 6, - ACTIONS(2928), 1, - anon_sym_COLON, - ACTIONS(2930), 1, - anon_sym_EQ, - ACTIONS(2957), 1, - anon_sym_COMMA, - STATE(1584), 1, - aux_sym__patterns_repeat1, + [101272] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2932), 13, + ACTIONS(2904), 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, @@ -111733,46 +112883,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100503] = 12, - ACTIONS(2959), 1, + [101296] = 13, + ACTIONS(2921), 1, sym_identifier, - ACTIONS(2961), 1, + ACTIONS(2923), 1, anon_sym_LPAREN, - ACTIONS(2963), 1, - anon_sym_RPAREN, - ACTIONS(2965), 1, + ACTIONS(2925), 1, anon_sym_STAR, - ACTIONS(2967), 1, + ACTIONS(2929), 1, anon_sym_STAR_STAR, - ACTIONS(2969), 1, + ACTIONS(2931), 1, anon_sym_SLASH, - STATE(2306), 1, + ACTIONS(2963), 1, + anon_sym_COLON, + STATE(2320), 1, sym_parameter, - STATE(2360), 1, + STATE(2324), 1, sym_tuple_pattern, - STATE(2610), 1, + STATE(2707), 1, + sym_lambda_parameters, + STATE(2777), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2385), 2, + STATE(2542), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2501), 5, + STATE(2530), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100546] = 4, - ACTIONS(2928), 1, + [101342] = 5, + ACTIONS(2935), 1, anon_sym_COLON, - ACTIONS(2930), 1, + ACTIONS(2937), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2932), 13, + ACTIONS(2965), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(2939), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111786,245 +112941,294 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100572] = 11, - ACTIONS(2959), 1, + [101372] = 4, + ACTIONS(2967), 1, + anon_sym_COMMA, + STATE(1650), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2904), 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, + [101400] = 12, + ACTIONS(2970), 1, sym_identifier, - ACTIONS(2961), 1, + ACTIONS(2972), 1, anon_sym_LPAREN, - ACTIONS(2965), 1, + ACTIONS(2974), 1, + anon_sym_RPAREN, + ACTIONS(2976), 1, anon_sym_STAR, - ACTIONS(2967), 1, + ACTIONS(2978), 1, anon_sym_STAR_STAR, - ACTIONS(2969), 1, + ACTIONS(2980), 1, anon_sym_SLASH, - ACTIONS(2971), 1, + STATE(2359), 1, + sym_parameter, + STATE(2390), 1, + sym_tuple_pattern, + STATE(2639), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2414), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2511), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [101443] = 11, + ACTIONS(2970), 1, + sym_identifier, + ACTIONS(2972), 1, + anon_sym_LPAREN, + ACTIONS(2976), 1, + anon_sym_STAR, + ACTIONS(2978), 1, + anon_sym_STAR_STAR, + ACTIONS(2980), 1, + anon_sym_SLASH, + ACTIONS(2982), 1, anon_sym_RPAREN, - STATE(2360), 1, + STATE(2390), 1, sym_tuple_pattern, STATE(2548), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2385), 2, + STATE(2414), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2501), 5, + STATE(2511), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100612] = 11, - ACTIONS(2959), 1, + [101483] = 11, + ACTIONS(2970), 1, sym_identifier, - ACTIONS(2961), 1, + ACTIONS(2972), 1, anon_sym_LPAREN, - ACTIONS(2965), 1, + ACTIONS(2976), 1, anon_sym_STAR, - ACTIONS(2967), 1, + ACTIONS(2978), 1, anon_sym_STAR_STAR, - ACTIONS(2969), 1, + ACTIONS(2980), 1, anon_sym_SLASH, - ACTIONS(2973), 1, + ACTIONS(2984), 1, anon_sym_RPAREN, - STATE(2360), 1, + STATE(2390), 1, sym_tuple_pattern, STATE(2548), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2385), 2, + STATE(2414), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2501), 5, + STATE(2511), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100652] = 11, - ACTIONS(2910), 1, + [101523] = 11, + ACTIONS(2921), 1, sym_identifier, - ACTIONS(2912), 1, + ACTIONS(2923), 1, anon_sym_LPAREN, - ACTIONS(2914), 1, + ACTIONS(2925), 1, anon_sym_STAR, - ACTIONS(2918), 1, + ACTIONS(2929), 1, anon_sym_STAR_STAR, - ACTIONS(2920), 1, + ACTIONS(2931), 1, anon_sym_SLASH, - ACTIONS(2971), 1, + ACTIONS(2982), 1, anon_sym_COLON, - STATE(2301), 1, + STATE(2324), 1, sym_tuple_pattern, - STATE(2510), 1, + STATE(2574), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2513), 2, + STATE(2542), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2507), 5, + STATE(2530), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100692] = 11, - ACTIONS(2910), 1, + [101563] = 11, + ACTIONS(2921), 1, sym_identifier, - ACTIONS(2912), 1, + ACTIONS(2923), 1, anon_sym_LPAREN, - ACTIONS(2914), 1, + ACTIONS(2925), 1, anon_sym_STAR, - ACTIONS(2918), 1, + ACTIONS(2929), 1, anon_sym_STAR_STAR, - ACTIONS(2920), 1, + ACTIONS(2931), 1, anon_sym_SLASH, - ACTIONS(2973), 1, + ACTIONS(2984), 1, anon_sym_COLON, - STATE(2301), 1, + STATE(2324), 1, sym_tuple_pattern, - STATE(2510), 1, + STATE(2574), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2513), 2, + STATE(2542), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2507), 5, + STATE(2530), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100732] = 10, - ACTIONS(2959), 1, + [101603] = 4, + ACTIONS(2935), 1, + anon_sym_COLON, + ACTIONS(2937), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2939), 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, + [101629] = 10, + ACTIONS(2921), 1, sym_identifier, - ACTIONS(2961), 1, + ACTIONS(2923), 1, anon_sym_LPAREN, - ACTIONS(2965), 1, + ACTIONS(2925), 1, anon_sym_STAR, - ACTIONS(2967), 1, + ACTIONS(2929), 1, anon_sym_STAR_STAR, - ACTIONS(2969), 1, + ACTIONS(2931), 1, anon_sym_SLASH, - STATE(2360), 1, + STATE(2324), 1, sym_tuple_pattern, - STATE(2548), 1, + STATE(2574), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2385), 2, + STATE(2542), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2501), 5, + STATE(2530), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100769] = 11, - ACTIONS(2977), 1, + [101666] = 11, + ACTIONS(2988), 1, anon_sym_as, - ACTIONS(2979), 1, + ACTIONS(2990), 1, anon_sym_if, - ACTIONS(2981), 1, + ACTIONS(2992), 1, anon_sym_async, - ACTIONS(2983), 1, + ACTIONS(2994), 1, anon_sym_for, - ACTIONS(2985), 1, + ACTIONS(2996), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(2998), 1, anon_sym_or, - STATE(1861), 1, + STATE(1889), 1, sym_for_in_clause, - STATE(2451), 1, + STATE(2472), 1, aux_sym__collection_elements_repeat1, - STATE(2732), 1, + STATE(2673), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2975), 5, + ACTIONS(2986), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [100808] = 10, - ACTIONS(2910), 1, + [101705] = 10, + ACTIONS(2970), 1, sym_identifier, - ACTIONS(2912), 1, + ACTIONS(2972), 1, anon_sym_LPAREN, - ACTIONS(2914), 1, + ACTIONS(2976), 1, anon_sym_STAR, - ACTIONS(2918), 1, + ACTIONS(2978), 1, anon_sym_STAR_STAR, - ACTIONS(2920), 1, + ACTIONS(2980), 1, anon_sym_SLASH, - STATE(2301), 1, + STATE(2390), 1, sym_tuple_pattern, - STATE(2510), 1, + STATE(2548), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2513), 2, + STATE(2414), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2507), 5, + STATE(2511), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100845] = 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(1860), 1, - sym_for_in_clause, - STATE(2457), 1, - aux_sym__collection_elements_repeat1, - STATE(2766), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [100886] = 6, - ACTIONS(3009), 1, + [101742] = 6, + ACTIONS(3002), 1, anon_sym_as, - ACTIONS(3011), 1, + ACTIONS(3004), 1, anon_sym_if, - ACTIONS(3013), 1, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3008), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3007), 8, + ACTIONS(3000), 8, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -112033,11 +113237,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [100913] = 2, + [101769] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 12, + ACTIONS(2201), 12, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -112050,86 +113254,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [100932] = 4, - ACTIONS(3013), 1, + [101788] = 5, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3008), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3019), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, + ACTIONS(3012), 1, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [100955] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3021), 12, + ACTIONS(3010), 9, 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, - [100974] = 3, - ACTIONS(3013), 1, - anon_sym_and, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3021), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + [101813] = 13, + ACTIONS(3015), 1, anon_sym_COMMA, + ACTIONS(3017), 1, anon_sym_as, + ACTIONS(3019), 1, anon_sym_if, + ACTIONS(3021), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_or, - [100995] = 6, - ACTIONS(3009), 1, - anon_sym_as, - ACTIONS(3011), 1, - anon_sym_if, - ACTIONS(3013), 1, + ACTIONS(3023), 1, + anon_sym_async, + ACTIONS(3025), 1, + anon_sym_for, + ACTIONS(3027), 1, + anon_sym_RBRACE, + ACTIONS(3029), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3031), 1, anon_sym_or, + STATE(1846), 1, + sym_for_in_clause, + STATE(2461), 1, + aux_sym__collection_elements_repeat1, + STATE(2603), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3023), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [101022] = 2, + [101854] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2100), 12, + ACTIONS(3033), 12, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -112142,19 +113319,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [101041] = 6, - ACTIONS(3009), 1, + [101873] = 6, + ACTIONS(3002), 1, anon_sym_as, - ACTIONS(3011), 1, + ACTIONS(3004), 1, anon_sym_if, - ACTIONS(3013), 1, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3008), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3025), 8, + ACTIONS(3035), 8, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -112163,755 +113340,832 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [101068] = 13, - ACTIONS(2989), 1, + [101900] = 13, + ACTIONS(3015), 1, anon_sym_COMMA, - ACTIONS(2991), 1, + ACTIONS(3017), 1, anon_sym_as, - ACTIONS(2993), 1, + ACTIONS(3019), 1, anon_sym_if, - ACTIONS(2995), 1, + ACTIONS(3021), 1, anon_sym_COLON, - ACTIONS(2997), 1, + ACTIONS(3023), 1, anon_sym_async, - ACTIONS(2999), 1, + ACTIONS(3025), 1, anon_sym_for, - ACTIONS(3001), 1, + ACTIONS(3027), 1, anon_sym_RBRACE, - ACTIONS(3003), 1, + ACTIONS(3029), 1, anon_sym_and, - ACTIONS(3005), 1, + ACTIONS(3031), 1, anon_sym_or, - STATE(1860), 1, + STATE(1846), 1, sym_for_in_clause, - STATE(2457), 1, + STATE(2461), 1, aux_sym__collection_elements_repeat1, - STATE(2649), 1, + STATE(2648), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101109] = 13, - ACTIONS(2989), 1, + [101941] = 13, + ACTIONS(3015), 1, anon_sym_COMMA, - ACTIONS(2991), 1, + ACTIONS(3017), 1, anon_sym_as, - ACTIONS(2993), 1, + ACTIONS(3019), 1, anon_sym_if, - ACTIONS(2995), 1, + ACTIONS(3021), 1, anon_sym_COLON, - ACTIONS(2997), 1, + ACTIONS(3023), 1, anon_sym_async, - ACTIONS(2999), 1, + ACTIONS(3025), 1, anon_sym_for, - ACTIONS(3001), 1, + ACTIONS(3027), 1, anon_sym_RBRACE, - ACTIONS(3003), 1, + ACTIONS(3029), 1, anon_sym_and, - ACTIONS(3005), 1, + ACTIONS(3031), 1, anon_sym_or, - STATE(1860), 1, + STATE(1846), 1, sym_for_in_clause, - STATE(2457), 1, + STATE(2461), 1, aux_sym__collection_elements_repeat1, - STATE(2642), 1, + STATE(2782), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101150] = 13, - ACTIONS(2989), 1, + [101982] = 13, + ACTIONS(3015), 1, anon_sym_COMMA, - ACTIONS(2991), 1, + ACTIONS(3017), 1, anon_sym_as, - ACTIONS(2993), 1, + ACTIONS(3019), 1, anon_sym_if, - ACTIONS(2995), 1, + ACTIONS(3021), 1, anon_sym_COLON, - ACTIONS(2997), 1, + ACTIONS(3023), 1, anon_sym_async, - ACTIONS(2999), 1, + ACTIONS(3025), 1, anon_sym_for, - ACTIONS(3001), 1, + ACTIONS(3027), 1, anon_sym_RBRACE, - ACTIONS(3003), 1, + ACTIONS(3029), 1, anon_sym_and, - ACTIONS(3005), 1, + ACTIONS(3031), 1, anon_sym_or, - STATE(1860), 1, + STATE(1846), 1, sym_for_in_clause, - STATE(2457), 1, + STATE(2461), 1, aux_sym__collection_elements_repeat1, - STATE(2685), 1, + STATE(2740), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101191] = 13, - ACTIONS(2989), 1, + [102023] = 13, + ACTIONS(3015), 1, anon_sym_COMMA, - ACTIONS(2991), 1, + ACTIONS(3017), 1, anon_sym_as, - ACTIONS(2993), 1, + ACTIONS(3019), 1, anon_sym_if, - ACTIONS(2995), 1, + ACTIONS(3021), 1, anon_sym_COLON, - ACTIONS(2997), 1, + ACTIONS(3023), 1, anon_sym_async, - ACTIONS(2999), 1, + ACTIONS(3025), 1, anon_sym_for, - ACTIONS(3001), 1, + ACTIONS(3027), 1, anon_sym_RBRACE, - ACTIONS(3003), 1, + ACTIONS(3029), 1, anon_sym_and, - ACTIONS(3005), 1, + ACTIONS(3031), 1, anon_sym_or, - STATE(1860), 1, + STATE(1846), 1, sym_for_in_clause, - STATE(2457), 1, + STATE(2461), 1, aux_sym__collection_elements_repeat1, - STATE(2620), 1, + STATE(2676), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101232] = 13, - ACTIONS(2989), 1, + [102064] = 6, + ACTIONS(3002), 1, + anon_sym_as, + ACTIONS(3004), 1, + anon_sym_if, + ACTIONS(3006), 1, + anon_sym_and, + ACTIONS(3008), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3037), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, - ACTIONS(2991), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [102091] = 13, + ACTIONS(3015), 1, + anon_sym_COMMA, + ACTIONS(3017), 1, anon_sym_as, - ACTIONS(2993), 1, + ACTIONS(3019), 1, anon_sym_if, - ACTIONS(2995), 1, + ACTIONS(3021), 1, anon_sym_COLON, - ACTIONS(2997), 1, + ACTIONS(3023), 1, anon_sym_async, - ACTIONS(2999), 1, + ACTIONS(3025), 1, anon_sym_for, - ACTIONS(3001), 1, + ACTIONS(3027), 1, anon_sym_RBRACE, - ACTIONS(3003), 1, + ACTIONS(3029), 1, anon_sym_and, - ACTIONS(3005), 1, + ACTIONS(3031), 1, anon_sym_or, - STATE(1860), 1, + STATE(1846), 1, sym_for_in_clause, - STATE(2457), 1, + STATE(2461), 1, aux_sym__collection_elements_repeat1, - STATE(2728), 1, + STATE(2621), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101273] = 13, - ACTIONS(2989), 1, + [102132] = 4, + ACTIONS(3006), 1, + anon_sym_and, + ACTIONS(3008), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3039), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, 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_EQ, + anon_sym_PIPE, + [102155] = 13, + ACTIONS(3015), 1, + anon_sym_COMMA, + ACTIONS(3017), 1, + anon_sym_as, + ACTIONS(3019), 1, + anon_sym_if, + ACTIONS(3021), 1, + anon_sym_COLON, + ACTIONS(3023), 1, anon_sym_async, - ACTIONS(2999), 1, + ACTIONS(3025), 1, anon_sym_for, - ACTIONS(3001), 1, + ACTIONS(3027), 1, anon_sym_RBRACE, - ACTIONS(3003), 1, + ACTIONS(3029), 1, anon_sym_and, - ACTIONS(3005), 1, + ACTIONS(3031), 1, anon_sym_or, - STATE(1860), 1, + STATE(1846), 1, sym_for_in_clause, - STATE(2457), 1, + STATE(2461), 1, aux_sym__collection_elements_repeat1, - STATE(2709), 1, + STATE(2715), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101314] = 13, - ACTIONS(2989), 1, + [102196] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3041), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, 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_EQ, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [102215] = 13, + ACTIONS(3015), 1, + anon_sym_COMMA, + ACTIONS(3017), 1, + anon_sym_as, + ACTIONS(3019), 1, + anon_sym_if, + ACTIONS(3021), 1, + anon_sym_COLON, + ACTIONS(3023), 1, anon_sym_async, - ACTIONS(2999), 1, + ACTIONS(3025), 1, anon_sym_for, - ACTIONS(3001), 1, + ACTIONS(3027), 1, anon_sym_RBRACE, - ACTIONS(3003), 1, + ACTIONS(3029), 1, anon_sym_and, - ACTIONS(3005), 1, + ACTIONS(3031), 1, anon_sym_or, - STATE(1860), 1, + STATE(1846), 1, sym_for_in_clause, - STATE(2457), 1, + STATE(2461), 1, aux_sym__collection_elements_repeat1, - STATE(2615), 1, + STATE(2619), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101355] = 5, - ACTIONS(3013), 1, + [102256] = 3, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3015), 1, - anon_sym_or, - ACTIONS(3029), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3027), 9, + ACTIONS(3041), 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, - [101380] = 8, + anon_sym_or, + [102277] = 12, + ACTIONS(2988), 1, + anon_sym_as, + ACTIONS(2990), 1, + anon_sym_if, + ACTIONS(2992), 1, + anon_sym_async, + ACTIONS(2994), 1, + anon_sym_for, + ACTIONS(2996), 1, + anon_sym_and, + ACTIONS(2998), 1, + anon_sym_or, + ACTIONS(3027), 1, + anon_sym_RBRACK, + ACTIONS(3043), 1, + anon_sym_COMMA, + STATE(1889), 1, + sym_for_in_clause, + STATE(2472), 1, + aux_sym__collection_elements_repeat1, + STATE(2606), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [102315] = 6, + ACTIONS(2988), 1, + anon_sym_as, + ACTIONS(2990), 1, + anon_sym_if, + ACTIONS(2996), 1, + anon_sym_and, + ACTIONS(2998), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3000), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_PIPE, + [102341] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3032), 1, + ACTIONS(3045), 1, anon_sym_LBRACE, - ACTIONS(3036), 1, + ACTIONS(3049), 1, anon_sym_BSLASH, - ACTIONS(3038), 1, + ACTIONS(3051), 1, sym_string_end, - STATE(1807), 2, + STATE(1798), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3034), 3, + ACTIONS(3047), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1698), 3, + STATE(1682), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101410] = 12, - ACTIONS(3040), 1, - anon_sym_RPAREN, - ACTIONS(3042), 1, - anon_sym_COMMA, - ACTIONS(3044), 1, + [102371] = 12, + ACTIONS(2988), 1, anon_sym_as, - ACTIONS(3046), 1, + ACTIONS(2990), 1, anon_sym_if, - ACTIONS(3048), 1, + ACTIONS(2992), 1, anon_sym_async, - ACTIONS(3050), 1, + ACTIONS(2994), 1, anon_sym_for, - ACTIONS(3052), 1, + ACTIONS(2996), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(2998), 1, anon_sym_or, - STATE(1867), 1, + ACTIONS(3027), 1, + anon_sym_RBRACK, + ACTIONS(3043), 1, + anon_sym_COMMA, + STATE(1889), 1, sym_for_in_clause, - STATE(2335), 1, + STATE(2472), 1, aux_sym__collection_elements_repeat1, - STATE(2771), 1, + STATE(2656), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101448] = 8, + [102409] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3032), 1, + ACTIONS(3053), 1, anon_sym_LBRACE, - ACTIONS(3036), 1, + ACTIONS(3059), 1, anon_sym_BSLASH, - ACTIONS(3056), 1, + ACTIONS(3062), 1, sym_string_end, - STATE(1807), 2, + STATE(1798), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3034), 3, + ACTIONS(3056), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1678), 3, + STATE(1681), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101478] = 8, + [102439] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3032), 1, + ACTIONS(3045), 1, anon_sym_LBRACE, - ACTIONS(3036), 1, + ACTIONS(3049), 1, anon_sym_BSLASH, - ACTIONS(3058), 1, + ACTIONS(3064), 1, sym_string_end, - STATE(1807), 2, + STATE(1798), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3034), 3, + ACTIONS(3047), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1726), 3, + STATE(1681), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101508] = 12, - ACTIONS(3042), 1, + [102469] = 12, + ACTIONS(3066), 1, + anon_sym_RPAREN, + ACTIONS(3068), 1, anon_sym_COMMA, - ACTIONS(3044), 1, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3046), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3048), 1, + ACTIONS(3074), 1, anon_sym_async, - ACTIONS(3050), 1, + ACTIONS(3076), 1, anon_sym_for, - ACTIONS(3052), 1, + ACTIONS(3078), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3080), 1, anon_sym_or, - ACTIONS(3060), 1, - anon_sym_RPAREN, - STATE(1867), 1, + STATE(1848), 1, sym_for_in_clause, - STATE(2335), 1, + STATE(2432), 1, aux_sym__collection_elements_repeat1, - STATE(2769), 1, + STATE(2631), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101546] = 12, - ACTIONS(3044), 1, + [102507] = 12, + ACTIONS(3068), 1, + anon_sym_COMMA, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3046), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3048), 1, + ACTIONS(3074), 1, anon_sym_async, - ACTIONS(3050), 1, + ACTIONS(3076), 1, anon_sym_for, - ACTIONS(3052), 1, + ACTIONS(3078), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3080), 1, anon_sym_or, - ACTIONS(3062), 1, + ACTIONS(3082), 1, anon_sym_RPAREN, - ACTIONS(3064), 1, - anon_sym_COMMA, - STATE(1867), 1, + STATE(1848), 1, sym_for_in_clause, - STATE(2335), 1, + STATE(2432), 1, aux_sym__collection_elements_repeat1, - STATE(2707), 1, + STATE(2679), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101584] = 12, - ACTIONS(3044), 1, + [102545] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3045), 1, + anon_sym_LBRACE, + ACTIONS(3049), 1, + anon_sym_BSLASH, + ACTIONS(3084), 1, + sym_string_end, + STATE(1798), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3047), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1681), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [102575] = 12, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3046), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3048), 1, + ACTIONS(3074), 1, anon_sym_async, - ACTIONS(3050), 1, + ACTIONS(3076), 1, anon_sym_for, - ACTIONS(3052), 1, + ACTIONS(3078), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3080), 1, anon_sym_or, - ACTIONS(3067), 1, + ACTIONS(3086), 1, anon_sym_RPAREN, - ACTIONS(3069), 1, + ACTIONS(3088), 1, anon_sym_COMMA, - STATE(1867), 1, + STATE(1848), 1, sym_for_in_clause, - STATE(2427), 1, + STATE(2425), 1, aux_sym_argument_list_repeat1, - STATE(2769), 1, + STATE(2631), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101622] = 8, + [102613] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3032), 1, + ACTIONS(3045), 1, anon_sym_LBRACE, - ACTIONS(3036), 1, + ACTIONS(3049), 1, anon_sym_BSLASH, - ACTIONS(3071), 1, + ACTIONS(3090), 1, sym_string_end, - STATE(1807), 2, + STATE(1798), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3034), 3, + ACTIONS(3047), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1684), 3, + STATE(1688), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101652] = 12, - ACTIONS(2977), 1, - anon_sym_as, - ACTIONS(2979), 1, - anon_sym_if, - ACTIONS(2981), 1, - anon_sym_async, - ACTIONS(2983), 1, - anon_sym_for, - ACTIONS(2985), 1, - anon_sym_and, - ACTIONS(2987), 1, - anon_sym_or, - ACTIONS(3001), 1, - anon_sym_RBRACK, - ACTIONS(3073), 1, - anon_sym_COMMA, - STATE(1861), 1, - sym_for_in_clause, - STATE(2451), 1, - aux_sym__collection_elements_repeat1, - STATE(2739), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [101690] = 8, + [102643] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3032), 1, + ACTIONS(3045), 1, anon_sym_LBRACE, - ACTIONS(3036), 1, + ACTIONS(3049), 1, anon_sym_BSLASH, - ACTIONS(3075), 1, + ACTIONS(3092), 1, sym_string_end, - STATE(1807), 2, + STATE(1798), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3034), 3, + ACTIONS(3047), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1726), 3, + STATE(1681), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101720] = 12, - ACTIONS(3042), 1, + [102673] = 12, + ACTIONS(3068), 1, anon_sym_COMMA, - ACTIONS(3044), 1, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3046), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3048), 1, + ACTIONS(3074), 1, anon_sym_async, - ACTIONS(3050), 1, + ACTIONS(3076), 1, anon_sym_for, - ACTIONS(3052), 1, + ACTIONS(3078), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3080), 1, anon_sym_or, - ACTIONS(3062), 1, + ACTIONS(3094), 1, anon_sym_RPAREN, - STATE(1867), 1, + STATE(1848), 1, sym_for_in_clause, - STATE(2335), 1, + STATE(2432), 1, aux_sym__collection_elements_repeat1, - STATE(2707), 1, + STATE(2700), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101758] = 12, - ACTIONS(3044), 1, + [102711] = 12, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3046), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3048), 1, + ACTIONS(3074), 1, anon_sym_async, - ACTIONS(3050), 1, + ACTIONS(3076), 1, anon_sym_for, - ACTIONS(3052), 1, + ACTIONS(3078), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3080), 1, anon_sym_or, - ACTIONS(3077), 1, + ACTIONS(3096), 1, anon_sym_RPAREN, - ACTIONS(3079), 1, + ACTIONS(3098), 1, anon_sym_COMMA, - STATE(1867), 1, + STATE(1848), 1, sym_for_in_clause, - STATE(2266), 1, + STATE(2270), 1, aux_sym_argument_list_repeat1, - STATE(2707), 1, + STATE(2700), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101796] = 8, + [102749] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3032), 1, + ACTIONS(3045), 1, anon_sym_LBRACE, - ACTIONS(3036), 1, + ACTIONS(3049), 1, anon_sym_BSLASH, - ACTIONS(3081), 1, + ACTIONS(3100), 1, sym_string_end, - STATE(1807), 2, + STATE(1798), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3034), 3, + ACTIONS(3047), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1688), 3, + STATE(1692), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101826] = 8, + [102779] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3032), 1, + ACTIONS(3045), 1, anon_sym_LBRACE, - ACTIONS(3036), 1, + ACTIONS(3049), 1, anon_sym_BSLASH, - ACTIONS(3083), 1, + ACTIONS(3102), 1, sym_string_end, - STATE(1807), 2, + STATE(1798), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3034), 3, + ACTIONS(3047), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1726), 3, + STATE(1681), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101856] = 12, - ACTIONS(3042), 1, + [102809] = 12, + ACTIONS(3068), 1, anon_sym_COMMA, - ACTIONS(3044), 1, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3046), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3048), 1, + ACTIONS(3074), 1, anon_sym_async, - ACTIONS(3050), 1, + ACTIONS(3076), 1, anon_sym_for, - ACTIONS(3052), 1, + ACTIONS(3078), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3080), 1, anon_sym_or, - ACTIONS(3085), 1, + ACTIONS(3104), 1, anon_sym_RPAREN, - STATE(1867), 1, + STATE(1848), 1, sym_for_in_clause, - STATE(2335), 1, + STATE(2432), 1, aux_sym__collection_elements_repeat1, - STATE(2598), 1, + STATE(2641), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101894] = 12, - ACTIONS(3044), 1, + [102847] = 12, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3046), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3048), 1, + ACTIONS(3074), 1, anon_sym_async, - ACTIONS(3050), 1, + ACTIONS(3076), 1, anon_sym_for, - ACTIONS(3052), 1, + ACTIONS(3078), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3080), 1, anon_sym_or, - ACTIONS(3087), 1, + ACTIONS(3106), 1, anon_sym_RPAREN, - ACTIONS(3089), 1, + ACTIONS(3108), 1, anon_sym_COMMA, - STATE(1867), 1, + STATE(1848), 1, sym_for_in_clause, - STATE(2308), 1, + STATE(2314), 1, aux_sym_argument_list_repeat1, - STATE(2598), 1, + STATE(2641), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101932] = 8, + [102885] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3032), 1, + ACTIONS(3045), 1, anon_sym_LBRACE, - ACTIONS(3036), 1, + ACTIONS(3049), 1, anon_sym_BSLASH, - ACTIONS(3091), 1, + ACTIONS(3110), 1, sym_string_end, - STATE(1807), 2, + STATE(1798), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3034), 3, + ACTIONS(3047), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1692), 3, + STATE(1696), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101962] = 8, + [102915] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3032), 1, + ACTIONS(3045), 1, anon_sym_LBRACE, - ACTIONS(3036), 1, + ACTIONS(3049), 1, anon_sym_BSLASH, - ACTIONS(3093), 1, + ACTIONS(3112), 1, sym_string_end, - STATE(1807), 2, + STATE(1798), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3034), 3, + ACTIONS(3047), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1726), 3, + STATE(1681), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101992] = 12, - ACTIONS(3042), 1, + [102945] = 12, + ACTIONS(3068), 1, anon_sym_COMMA, - ACTIONS(3044), 1, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3046), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3048), 1, + ACTIONS(3074), 1, anon_sym_async, - ACTIONS(3050), 1, + ACTIONS(3076), 1, anon_sym_for, - ACTIONS(3052), 1, + ACTIONS(3078), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3080), 1, anon_sym_or, - ACTIONS(3095), 1, + ACTIONS(3114), 1, anon_sym_RPAREN, - STATE(1867), 1, + STATE(1848), 1, sym_for_in_clause, - STATE(2335), 1, + STATE(2432), 1, aux_sym__collection_elements_repeat1, - STATE(2721), 1, + STATE(2729), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102030] = 12, - ACTIONS(3044), 1, + [102983] = 12, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3046), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3048), 1, + ACTIONS(3074), 1, anon_sym_async, - ACTIONS(3050), 1, + ACTIONS(3076), 1, anon_sym_for, - ACTIONS(3052), 1, + ACTIONS(3078), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3080), 1, anon_sym_or, - ACTIONS(3097), 1, + ACTIONS(3116), 1, anon_sym_RPAREN, - ACTIONS(3099), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - STATE(1867), 1, + STATE(1848), 1, sym_for_in_clause, - STATE(2349), 1, + STATE(2354), 1, aux_sym_argument_list_repeat1, - STATE(2721), 1, + STATE(2729), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102068] = 6, - ACTIONS(2977), 1, - anon_sym_as, - ACTIONS(2979), 1, - anon_sym_if, - ACTIONS(2985), 1, - anon_sym_and, - ACTIONS(2987), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3023), 7, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_PIPE, - [102094] = 8, + [103021] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3032), 1, + ACTIONS(3045), 1, anon_sym_LBRACE, - ACTIONS(3036), 1, + ACTIONS(3049), 1, anon_sym_BSLASH, - ACTIONS(3101), 1, + ACTIONS(3120), 1, sym_string_end, - STATE(1807), 2, + STATE(1798), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3034), 3, + ACTIONS(3047), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1713), 3, + STATE(1729), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102124] = 3, - ACTIONS(2114), 1, + [103051] = 3, + ACTIONS(2215), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2100), 10, + ACTIONS(2201), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_if, @@ -112922,420 +114176,450 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [102144] = 8, - ACTIONS(3), 1, + [103071] = 12, + ACTIONS(3070), 1, + anon_sym_as, + ACTIONS(3072), 1, + anon_sym_if, + ACTIONS(3074), 1, + anon_sym_async, + ACTIONS(3076), 1, + anon_sym_for, + ACTIONS(3078), 1, + anon_sym_and, + ACTIONS(3080), 1, + anon_sym_or, + ACTIONS(3122), 1, + anon_sym_RPAREN, + ACTIONS(3124), 1, + anon_sym_COMMA, + STATE(1848), 1, + sym_for_in_clause, + STATE(2281), 1, + aux_sym_argument_list_repeat1, + STATE(2679), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3032), 1, - anon_sym_LBRACE, - ACTIONS(3036), 1, - anon_sym_BSLASH, - ACTIONS(3103), 1, - sym_string_end, - STATE(1807), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3034), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1726), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [102174] = 12, - ACTIONS(3042), 1, + [103109] = 12, + ACTIONS(3068), 1, anon_sym_COMMA, - ACTIONS(3044), 1, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3046), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3048), 1, + ACTIONS(3074), 1, anon_sym_async, - ACTIONS(3050), 1, + ACTIONS(3076), 1, anon_sym_for, - ACTIONS(3052), 1, + ACTIONS(3078), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3080), 1, anon_sym_or, - ACTIONS(3105), 1, + ACTIONS(3126), 1, anon_sym_RPAREN, - STATE(1867), 1, + STATE(1848), 1, sym_for_in_clause, - STATE(2335), 1, + STATE(2432), 1, aux_sym__collection_elements_repeat1, - STATE(2759), 1, + STATE(2605), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102212] = 12, - ACTIONS(3044), 1, + [103147] = 12, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3046), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3048), 1, + ACTIONS(3074), 1, anon_sym_async, - ACTIONS(3050), 1, + ACTIONS(3076), 1, anon_sym_for, - ACTIONS(3052), 1, + ACTIONS(3078), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3080), 1, anon_sym_or, - ACTIONS(3107), 1, + ACTIONS(3128), 1, anon_sym_RPAREN, - ACTIONS(3109), 1, + ACTIONS(3130), 1, anon_sym_COMMA, - STATE(1867), 1, + STATE(1848), 1, sym_for_in_clause, STATE(2377), 1, aux_sym_argument_list_repeat1, - STATE(2759), 1, + STATE(2605), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102250] = 8, + [103185] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3045), 1, + anon_sym_LBRACE, + ACTIONS(3049), 1, + anon_sym_BSLASH, + ACTIONS(3132), 1, + sym_string_end, + STATE(1798), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3047), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1685), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [103215] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3032), 1, + ACTIONS(3045), 1, anon_sym_LBRACE, - ACTIONS(3036), 1, + ACTIONS(3049), 1, anon_sym_BSLASH, - ACTIONS(3111), 1, + ACTIONS(3134), 1, sym_string_end, - STATE(1807), 2, + STATE(1798), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3034), 3, + ACTIONS(3047), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1702), 3, + STATE(1706), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102280] = 8, + [103245] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3032), 1, + ACTIONS(3045), 1, anon_sym_LBRACE, - ACTIONS(3036), 1, + ACTIONS(3049), 1, anon_sym_BSLASH, - ACTIONS(3113), 1, + ACTIONS(3136), 1, sym_string_end, - STATE(1807), 2, + STATE(1798), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3034), 3, + ACTIONS(3047), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1726), 3, + STATE(1681), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102310] = 12, - ACTIONS(3042), 1, + [103275] = 12, + ACTIONS(3068), 1, anon_sym_COMMA, - ACTIONS(3044), 1, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3046), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3048), 1, + ACTIONS(3074), 1, anon_sym_async, - ACTIONS(3050), 1, + ACTIONS(3076), 1, anon_sym_for, - ACTIONS(3052), 1, + ACTIONS(3078), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3080), 1, anon_sym_or, - ACTIONS(3115), 1, + ACTIONS(3138), 1, anon_sym_RPAREN, - STATE(1867), 1, + STATE(1848), 1, sym_for_in_clause, - STATE(2335), 1, + STATE(2432), 1, aux_sym__collection_elements_repeat1, - STATE(2693), 1, + STATE(2704), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102348] = 12, - ACTIONS(3044), 1, + [103313] = 12, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3046), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3048), 1, + ACTIONS(3074), 1, anon_sym_async, - ACTIONS(3050), 1, + ACTIONS(3076), 1, anon_sym_for, - ACTIONS(3052), 1, + ACTIONS(3078), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3080), 1, anon_sym_or, - ACTIONS(3117), 1, + ACTIONS(3140), 1, anon_sym_RPAREN, - ACTIONS(3119), 1, + ACTIONS(3142), 1, anon_sym_COMMA, - STATE(1867), 1, + STATE(1848), 1, sym_for_in_clause, - STATE(2397), 1, + STATE(2398), 1, aux_sym_argument_list_repeat1, - STATE(2693), 1, + STATE(2704), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102386] = 3, - ACTIONS(3121), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3017), 10, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [102406] = 8, + [103351] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3032), 1, + ACTIONS(3045), 1, anon_sym_LBRACE, - ACTIONS(3036), 1, + ACTIONS(3049), 1, anon_sym_BSLASH, - ACTIONS(3123), 1, + ACTIONS(3144), 1, sym_string_end, - STATE(1807), 2, + STATE(1798), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3034), 3, + ACTIONS(3047), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1707), 3, + STATE(1711), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102436] = 8, + [103381] = 3, + ACTIONS(3146), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3033), 10, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [103401] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3032), 1, + ACTIONS(3045), 1, anon_sym_LBRACE, - ACTIONS(3036), 1, + ACTIONS(3049), 1, anon_sym_BSLASH, - ACTIONS(3125), 1, + ACTIONS(3148), 1, sym_string_end, - STATE(1807), 2, + STATE(1798), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3034), 3, + ACTIONS(3047), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1726), 3, + STATE(1681), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102466] = 12, - ACTIONS(3042), 1, + [103431] = 12, + ACTIONS(3068), 1, anon_sym_COMMA, - ACTIONS(3044), 1, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3046), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3048), 1, + ACTIONS(3074), 1, anon_sym_async, - ACTIONS(3050), 1, + ACTIONS(3076), 1, anon_sym_for, - ACTIONS(3052), 1, + ACTIONS(3078), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3080), 1, anon_sym_or, - ACTIONS(3127), 1, + ACTIONS(3150), 1, anon_sym_RPAREN, - STATE(1867), 1, + STATE(1848), 1, sym_for_in_clause, - STATE(2335), 1, + STATE(2432), 1, aux_sym__collection_elements_repeat1, - STATE(2611), 1, + STATE(2615), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102504] = 12, - ACTIONS(3044), 1, + [103469] = 12, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3046), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3048), 1, + ACTIONS(3074), 1, anon_sym_async, - ACTIONS(3050), 1, + ACTIONS(3076), 1, anon_sym_for, - ACTIONS(3052), 1, + ACTIONS(3078), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3080), 1, anon_sym_or, - ACTIONS(3129), 1, + ACTIONS(3152), 1, anon_sym_RPAREN, - ACTIONS(3131), 1, + ACTIONS(3154), 1, anon_sym_COMMA, - STATE(1867), 1, + STATE(1848), 1, sym_for_in_clause, - STATE(2420), 1, + STATE(2421), 1, aux_sym_argument_list_repeat1, - STATE(2611), 1, + STATE(2615), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102542] = 8, + [103507] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3032), 1, + ACTIONS(3045), 1, anon_sym_LBRACE, - ACTIONS(3036), 1, + ACTIONS(3049), 1, anon_sym_BSLASH, - ACTIONS(3133), 1, + ACTIONS(3156), 1, sym_string_end, - STATE(1807), 2, + STATE(1798), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3034), 3, + ACTIONS(3047), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1711), 3, + STATE(1715), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102572] = 8, + [103537] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3032), 1, + ACTIONS(3045), 1, anon_sym_LBRACE, - ACTIONS(3036), 1, + ACTIONS(3049), 1, anon_sym_BSLASH, - ACTIONS(3135), 1, + ACTIONS(3158), 1, sym_string_end, - STATE(1807), 2, + STATE(1798), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3034), 3, + ACTIONS(3047), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1726), 3, + STATE(1681), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102602] = 12, - ACTIONS(2977), 1, + [103567] = 12, + ACTIONS(2988), 1, anon_sym_as, - ACTIONS(2979), 1, + ACTIONS(2990), 1, anon_sym_if, - ACTIONS(2981), 1, + ACTIONS(2992), 1, anon_sym_async, - ACTIONS(2983), 1, + ACTIONS(2994), 1, anon_sym_for, - ACTIONS(2985), 1, + ACTIONS(2996), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(2998), 1, anon_sym_or, - ACTIONS(3001), 1, + ACTIONS(3027), 1, anon_sym_RBRACK, - ACTIONS(3073), 1, + ACTIONS(3043), 1, anon_sym_COMMA, - STATE(1861), 1, + STATE(1889), 1, sym_for_in_clause, - STATE(2451), 1, + STATE(2472), 1, aux_sym__collection_elements_repeat1, - STATE(2637), 1, + STATE(2668), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102640] = 8, - ACTIONS(3), 1, + [103605] = 12, + ACTIONS(3070), 1, + anon_sym_as, + ACTIONS(3072), 1, + anon_sym_if, + ACTIONS(3074), 1, + anon_sym_async, + ACTIONS(3076), 1, + anon_sym_for, + ACTIONS(3078), 1, + anon_sym_and, + ACTIONS(3080), 1, + anon_sym_or, + ACTIONS(3094), 1, + anon_sym_RPAREN, + ACTIONS(3160), 1, + anon_sym_COMMA, + STATE(1848), 1, + sym_for_in_clause, + STATE(2432), 1, + aux_sym__collection_elements_repeat1, + STATE(2700), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3032), 1, - anon_sym_LBRACE, - ACTIONS(3036), 1, - anon_sym_BSLASH, - ACTIONS(3137), 1, - sym_string_end, - STATE(1807), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3034), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1726), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [102670] = 12, - ACTIONS(2977), 1, + [103643] = 12, + ACTIONS(2988), 1, anon_sym_as, - ACTIONS(2979), 1, + ACTIONS(2990), 1, anon_sym_if, - ACTIONS(2981), 1, + ACTIONS(2992), 1, anon_sym_async, - ACTIONS(2983), 1, + ACTIONS(2994), 1, anon_sym_for, - ACTIONS(2985), 1, + ACTIONS(2996), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(2998), 1, anon_sym_or, - ACTIONS(3001), 1, + ACTIONS(3027), 1, anon_sym_RBRACK, - ACTIONS(3073), 1, + ACTIONS(3043), 1, anon_sym_COMMA, - STATE(1861), 1, + STATE(1889), 1, sym_for_in_clause, - STATE(2451), 1, + STATE(2472), 1, aux_sym__collection_elements_repeat1, - STATE(2732), 1, + STATE(2673), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102708] = 6, - ACTIONS(2977), 1, + [103681] = 6, + ACTIONS(2988), 1, anon_sym_as, - ACTIONS(2979), 1, + ACTIONS(2990), 1, anon_sym_if, - ACTIONS(2985), 1, + ACTIONS(2996), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(2998), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3025), 7, + ACTIONS(3037), 7, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, @@ -113343,114 +114627,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_PIPE, - [102734] = 12, - ACTIONS(2977), 1, + [103707] = 12, + ACTIONS(2988), 1, anon_sym_as, - ACTIONS(2979), 1, + ACTIONS(2990), 1, anon_sym_if, - ACTIONS(2981), 1, + ACTIONS(2992), 1, anon_sym_async, - ACTIONS(2983), 1, + ACTIONS(2994), 1, anon_sym_for, - ACTIONS(2985), 1, + ACTIONS(2996), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(2998), 1, anon_sym_or, - ACTIONS(3001), 1, + ACTIONS(3027), 1, anon_sym_RBRACK, - ACTIONS(3073), 1, + ACTIONS(3043), 1, anon_sym_COMMA, - STATE(1861), 1, + STATE(1889), 1, sym_for_in_clause, - STATE(2451), 1, + STATE(2472), 1, aux_sym__collection_elements_repeat1, - STATE(2606), 1, + STATE(2644), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102772] = 5, - ACTIONS(2985), 1, + [103745] = 6, + ACTIONS(2988), 1, + anon_sym_as, + ACTIONS(2990), 1, + anon_sym_if, + ACTIONS(2996), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(2998), 1, anon_sym_or, - ACTIONS(3139), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3027), 8, + ACTIONS(3035), 7, anon_sym_DOT, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_PIPE, - [102796] = 12, - ACTIONS(2977), 1, + [103771] = 12, + ACTIONS(2988), 1, anon_sym_as, - ACTIONS(2979), 1, + ACTIONS(2990), 1, anon_sym_if, - ACTIONS(2981), 1, + ACTIONS(2992), 1, anon_sym_async, - ACTIONS(2983), 1, + ACTIONS(2994), 1, anon_sym_for, - ACTIONS(2985), 1, + ACTIONS(2996), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(2998), 1, anon_sym_or, - ACTIONS(3001), 1, + ACTIONS(3027), 1, anon_sym_RBRACK, - ACTIONS(3073), 1, + ACTIONS(3043), 1, anon_sym_COMMA, - STATE(1861), 1, + STATE(1889), 1, sym_for_in_clause, - STATE(2451), 1, + STATE(2472), 1, aux_sym__collection_elements_repeat1, - STATE(2724), 1, + STATE(2731), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102834] = 12, - ACTIONS(2977), 1, + [103809] = 5, + ACTIONS(2996), 1, + anon_sym_and, + ACTIONS(2998), 1, + anon_sym_or, + ACTIONS(3163), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3010), 8, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_PIPE, + [103833] = 12, + ACTIONS(2988), 1, anon_sym_as, - ACTIONS(2979), 1, + ACTIONS(2990), 1, anon_sym_if, - ACTIONS(2981), 1, + ACTIONS(2992), 1, anon_sym_async, - ACTIONS(2983), 1, + ACTIONS(2994), 1, anon_sym_for, - ACTIONS(2985), 1, + ACTIONS(2996), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(2998), 1, anon_sym_or, - ACTIONS(3001), 1, + ACTIONS(3027), 1, anon_sym_RBRACK, - ACTIONS(3073), 1, + ACTIONS(3043), 1, anon_sym_COMMA, - STATE(1861), 1, + STATE(1889), 1, sym_for_in_clause, - STATE(2451), 1, + STATE(2472), 1, aux_sym__collection_elements_repeat1, - STATE(2761), 1, + STATE(2710), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102872] = 5, - ACTIONS(2985), 1, + [103871] = 5, + ACTIONS(2996), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(2998), 1, anon_sym_or, - ACTIONS(3142), 1, + ACTIONS(3166), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 8, + ACTIONS(3039), 8, anon_sym_DOT, anon_sym_COMMA, anon_sym_if, @@ -113459,13 +114763,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_PIPE, - [102896] = 3, - ACTIONS(3144), 1, + [103895] = 3, + ACTIONS(3168), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3021), 10, + ACTIONS(3041), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_if, @@ -113476,41 +114780,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [102916] = 12, - ACTIONS(2977), 1, + [103915] = 12, + ACTIONS(2988), 1, anon_sym_as, - ACTIONS(2979), 1, + ACTIONS(2990), 1, anon_sym_if, - ACTIONS(2981), 1, + ACTIONS(2992), 1, anon_sym_async, - ACTIONS(2983), 1, + ACTIONS(2994), 1, anon_sym_for, - ACTIONS(2985), 1, + ACTIONS(2996), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(2998), 1, anon_sym_or, - ACTIONS(3001), 1, + ACTIONS(3027), 1, anon_sym_RBRACK, - ACTIONS(3073), 1, + ACTIONS(3043), 1, anon_sym_COMMA, - STATE(1861), 1, + STATE(1889), 1, sym_for_in_clause, - STATE(2451), 1, + STATE(2472), 1, aux_sym__collection_elements_repeat1, - STATE(2698), 1, + STATE(2616), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102954] = 4, - ACTIONS(2985), 1, + [103953] = 4, + ACTIONS(2996), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3168), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3021), 9, + ACTIONS(3041), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_if, @@ -113520,109 +114824,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_PIPE, anon_sym_or, - [102976] = 12, - ACTIONS(2977), 1, - anon_sym_as, - ACTIONS(2979), 1, - anon_sym_if, - ACTIONS(2981), 1, - anon_sym_async, - ACTIONS(2983), 1, - anon_sym_for, - ACTIONS(2985), 1, - anon_sym_and, - ACTIONS(2987), 1, - anon_sym_or, - ACTIONS(3001), 1, - anon_sym_RBRACK, - ACTIONS(3073), 1, - anon_sym_COMMA, - STATE(1861), 1, - sym_for_in_clause, - STATE(2451), 1, - aux_sym__collection_elements_repeat1, - STATE(2612), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [103014] = 12, - ACTIONS(3044), 1, - anon_sym_as, - ACTIONS(3046), 1, - anon_sym_if, - ACTIONS(3048), 1, - anon_sym_async, - ACTIONS(3050), 1, - anon_sym_for, - ACTIONS(3052), 1, - anon_sym_and, - ACTIONS(3054), 1, - anon_sym_or, - ACTIONS(3146), 1, - anon_sym_RPAREN, - ACTIONS(3148), 1, - anon_sym_COMMA, - STATE(1867), 1, - sym_for_in_clause, - STATE(2469), 1, - aux_sym_argument_list_repeat1, - STATE(2771), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [103052] = 8, + [103975] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3150), 1, + ACTIONS(3045), 1, anon_sym_LBRACE, - ACTIONS(3156), 1, + ACTIONS(3049), 1, anon_sym_BSLASH, - ACTIONS(3159), 1, + ACTIONS(3170), 1, sym_string_end, - STATE(1807), 2, + STATE(1798), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3153), 3, + ACTIONS(3047), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1726), 3, + STATE(1681), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [103082] = 6, - ACTIONS(2977), 1, - anon_sym_as, - ACTIONS(2979), 1, - anon_sym_if, - ACTIONS(2985), 1, - anon_sym_and, - ACTIONS(2987), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3007), 7, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_PIPE, - [103108] = 4, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, + [104005] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 8, + ACTIONS(2201), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -113631,30 +114859,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [103129] = 6, - ACTIONS(3009), 1, - anon_sym_as, - ACTIONS(3011), 1, - anon_sym_if, - ACTIONS(3013), 1, anon_sym_and, - ACTIONS(3015), 1, anon_sym_or, + [104022] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2975), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [103154] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3017), 10, + ACTIONS(2201), 10, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, @@ -113665,121 +114876,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [103171] = 6, - ACTIONS(3161), 1, + [104039] = 5, + ACTIONS(3172), 1, + anon_sym_as, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3177), 1, anon_sym_or, - ACTIONS(3165), 1, - anon_sym_as, - ACTIONS(3167), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3007), 6, + ACTIONS(3010), 7, anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [103196] = 5, - ACTIONS(3169), 1, + [104062] = 6, + ACTIONS(3179), 1, anon_sym_as, - ACTIONS(3172), 1, + ACTIONS(3181), 1, + anon_sym_if, + ACTIONS(3183), 1, anon_sym_and, - ACTIONS(3174), 1, + ACTIONS(3185), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3027), 7, + ACTIONS(3037), 6, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [103219] = 6, - ACTIONS(3172), 1, + [104087] = 6, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3174), 1, + ACTIONS(3177), 1, anon_sym_or, - ACTIONS(3176), 1, + ACTIONS(3187), 1, anon_sym_as, - ACTIONS(3178), 1, + ACTIONS(3189), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3023), 6, + ACTIONS(2986), 6, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [103244] = 6, - ACTIONS(3161), 1, + [104112] = 4, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3177), 1, anon_sym_or, - ACTIONS(3165), 1, - anon_sym_as, - ACTIONS(3167), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3023), 6, + ACTIONS(3039), 8, anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [103269] = 2, + [104133] = 6, + ACTIONS(3179), 1, + anon_sym_as, + ACTIONS(3181), 1, + anon_sym_if, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3021), 10, + ACTIONS(3000), 6, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_EQ, anon_sym_PIPE, + [104158] = 8, + ACTIONS(3191), 1, + anon_sym_COMMA, + ACTIONS(3193), 1, + anon_sym_as, + ACTIONS(3195), 1, + anon_sym_if, + ACTIONS(3199), 1, anon_sym_and, + ACTIONS(3201), 1, anon_sym_or, - [103286] = 3, - ACTIONS(3161), 1, - anon_sym_and, + STATE(1950), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3021), 9, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + ACTIONS(3197), 4, anon_sym_COLON, - anon_sym_else, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_or, - [103305] = 4, - ACTIONS(3172), 1, - anon_sym_and, - ACTIONS(3174), 1, - anon_sym_or, + anon_sym_RBRACE, + sym_type_conversion, + [104187] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 8, + ACTIONS(3041), 10, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, @@ -113788,32 +115002,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [103326] = 8, - ACTIONS(3180), 1, - anon_sym_COMMA, - ACTIONS(3182), 1, - anon_sym_as, - ACTIONS(3184), 1, - anon_sym_if, - ACTIONS(3188), 1, anon_sym_and, - ACTIONS(3190), 1, anon_sym_or, - STATE(1898), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3186), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [103355] = 2, + [104204] = 3, + ACTIONS(3175), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3021), 10, + ACTIONS(3041), 9, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, @@ -113822,36 +115019,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - anon_sym_and, anon_sym_or, - [103372] = 8, - ACTIONS(3009), 1, + [104223] = 6, + ACTIONS(3002), 1, anon_sym_as, - ACTIONS(3011), 1, + ACTIONS(3004), 1, anon_sym_if, - ACTIONS(3013), 1, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3008), 1, anon_sym_or, - ACTIONS(3194), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3192), 2, + ACTIONS(2986), 6, sym__newline, anon_sym_SEMI, - ACTIONS(2975), 3, anon_sym_DOT, anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [103401] = 3, - ACTIONS(3172), 1, - anon_sym_and, + [104248] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3021), 9, + ACTIONS(3033), 10, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, @@ -113860,124 +115052,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, + anon_sym_and, anon_sym_or, - [103420] = 6, - ACTIONS(3172), 1, + [104265] = 6, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3174), 1, + ACTIONS(3177), 1, anon_sym_or, - ACTIONS(3176), 1, + ACTIONS(3187), 1, anon_sym_as, - ACTIONS(3178), 1, + ACTIONS(3189), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3007), 6, + ACTIONS(3037), 6, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [103445] = 2, + [104290] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2100), 10, + ACTIONS(3033), 10, anon_sym_DOT, - anon_sym_RPAREN, 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, - [103462] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3017), 10, - anon_sym_DOT, - anon_sym_COMMA, + [104307] = 8, + ACTIONS(3002), 1, anon_sym_as, + ACTIONS(3004), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [103479] = 6, - ACTIONS(3172), 1, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3174), 1, + ACTIONS(3008), 1, anon_sym_or, - ACTIONS(3176), 1, - anon_sym_as, - ACTIONS(3178), 1, - anon_sym_if, + ACTIONS(3205), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2975), 6, + ACTIONS(3203), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(2986), 3, anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - [103504] = 6, - ACTIONS(3172), 1, + [104336] = 6, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3174), 1, + ACTIONS(3177), 1, anon_sym_or, - ACTIONS(3176), 1, + ACTIONS(3187), 1, anon_sym_as, - ACTIONS(3178), 1, + ACTIONS(3189), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3025), 6, + ACTIONS(3000), 6, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [103529] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, + [104361] = 6, + ACTIONS(3179), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(3181), 1, anon_sym_if, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3025), 6, + ACTIONS(3035), 6, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [103554] = 5, - ACTIONS(3161), 1, + [104386] = 5, + ACTIONS(3183), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3185), 1, anon_sym_or, - ACTIONS(3196), 1, + ACTIONS(3207), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3027), 7, + ACTIONS(3010), 7, anon_sym_DOT, anon_sym_COMMA, anon_sym_if, @@ -113985,32 +115165,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [103577] = 8, - ACTIONS(3180), 1, - anon_sym_COMMA, - ACTIONS(3182), 1, - anon_sym_as, - ACTIONS(3184), 1, - anon_sym_if, - ACTIONS(3188), 1, + [104409] = 4, + ACTIONS(3183), 1, anon_sym_and, - ACTIONS(3190), 1, + ACTIONS(3185), 1, anon_sym_or, - STATE(1898), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3199), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [103606] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2100), 10, + ACTIONS(3039), 8, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -114019,200 +115182,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [103623] = 4, - ACTIONS(3203), 1, - anon_sym_DOT, - STATE(1751), 1, - aux_sym_dotted_name_repeat1, + [104430] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3201), 7, - anon_sym_import, - anon_sym_LPAREN, + ACTIONS(3041), 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, - [103643] = 6, - ACTIONS(3206), 1, - anon_sym_as, - ACTIONS(3208), 1, - anon_sym_if, - ACTIONS(3210), 1, anon_sym_and, - ACTIONS(3212), 1, anon_sym_or, + [104447] = 3, + ACTIONS(3183), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3025), 5, + ACTIONS(3041), 9, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [103667] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2100), 9, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_and, + anon_sym_PIPE, anon_sym_or, - sym_type_conversion, - [103683] = 3, - ACTIONS(3121), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3017), 8, + [104466] = 8, + ACTIONS(3191), 1, anon_sym_COMMA, + ACTIONS(3193), 1, + anon_sym_as, + ACTIONS(3195), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - [103701] = 5, - ACTIONS(3188), 1, + ACTIONS(3199), 1, anon_sym_and, - ACTIONS(3190), 1, + ACTIONS(3201), 1, anon_sym_or, - ACTIONS(3214), 1, - anon_sym_as, + STATE(1950), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3027), 6, - anon_sym_COMMA, - anon_sym_if, + ACTIONS(3210), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [103723] = 5, - ACTIONS(3210), 1, + [104495] = 6, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3212), 1, + ACTIONS(3177), 1, anon_sym_or, - ACTIONS(3217), 1, + ACTIONS(3187), 1, anon_sym_as, + ACTIONS(3189), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3027), 6, + ACTIONS(3035), 6, anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_PIPE, - [103745] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, - anon_sym_as, - ACTIONS(3167), 1, - anon_sym_if, + [104520] = 4, + ACTIONS(3214), 1, + anon_sym_DOT, + STATE(1753), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2975), 5, - anon_sym_DOT, + ACTIONS(3212), 7, + anon_sym_import, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - [103769] = 6, - ACTIONS(2991), 1, + [104540] = 6, + ACTIONS(3017), 1, anon_sym_as, - ACTIONS(2993), 1, + ACTIONS(3019), 1, anon_sym_if, - ACTIONS(3003), 1, + ACTIONS(3029), 1, anon_sym_and, - ACTIONS(3005), 1, + ACTIONS(3031), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3007), 5, + ACTIONS(3035), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [103793] = 5, - ACTIONS(3003), 1, - anon_sym_and, - ACTIONS(3005), 1, - anon_sym_or, - ACTIONS(3220), 1, + [104564] = 3, + ACTIONS(3146), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3027), 6, + ACTIONS(3033), 8, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [103815] = 4, - ACTIONS(3210), 1, - anon_sym_and, - ACTIONS(3212), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3019), 7, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [103835] = 9, - ACTIONS(3009), 1, - anon_sym_as, - ACTIONS(3011), 1, - anon_sym_if, - ACTIONS(3013), 1, anon_sym_and, - ACTIONS(3015), 1, anon_sym_or, - ACTIONS(3225), 1, - anon_sym_from, - ACTIONS(3227), 1, - anon_sym_COMMA, - STATE(2107), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3223), 2, - sym__newline, - anon_sym_SEMI, - [103865] = 2, + [104582] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3021), 9, + ACTIONS(3033), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -114222,96 +115316,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [103881] = 6, - ACTIONS(3182), 1, + [104598] = 6, + ACTIONS(3193), 1, anon_sym_as, - ACTIONS(3184), 1, + ACTIONS(3195), 1, anon_sym_if, - ACTIONS(3188), 1, + ACTIONS(3199), 1, anon_sym_and, - ACTIONS(3190), 1, + ACTIONS(3201), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3229), 5, + ACTIONS(3035), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [103905] = 4, - ACTIONS(3188), 1, + [104622] = 5, + ACTIONS(3029), 1, anon_sym_and, - ACTIONS(3190), 1, + ACTIONS(3031), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3019), 7, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [103925] = 3, - ACTIONS(2114), 1, + ACTIONS(3217), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2100), 8, + ACTIONS(3010), 6, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - [103943] = 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(3025), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [103967] = 6, - ACTIONS(3182), 1, + [104644] = 6, + ACTIONS(3179), 1, anon_sym_as, - ACTIONS(3184), 1, + ACTIONS(3181), 1, anon_sym_if, - ACTIONS(3188), 1, + ACTIONS(3183), 1, anon_sym_and, - ACTIONS(3190), 1, + ACTIONS(3185), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3025), 5, + ACTIONS(2986), 5, + anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [103991] = 2, + anon_sym_PIPE, + [104668] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2100), 9, + ACTIONS(2201), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -114321,145 +115383,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [104007] = 4, - ACTIONS(3003), 1, + [104684] = 5, + ACTIONS(3199), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3201), 1, + anon_sym_or, + ACTIONS(3220), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3021), 7, + ACTIONS(3010), 6, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_EQ, anon_sym_RBRACE, - anon_sym_or, - [104027] = 5, - ACTIONS(3003), 1, + sym_type_conversion, + [104706] = 4, + ACTIONS(3199), 1, anon_sym_and, - ACTIONS(3005), 1, + ACTIONS(3201), 1, anon_sym_or, - ACTIONS(3142), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 6, + ACTIONS(3039), 7, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_EQ, anon_sym_RBRACE, - [104049] = 6, - ACTIONS(2991), 1, + sym_type_conversion, + [104726] = 6, + ACTIONS(3193), 1, anon_sym_as, - ACTIONS(2993), 1, + ACTIONS(3195), 1, anon_sym_if, - ACTIONS(3003), 1, + ACTIONS(3199), 1, anon_sym_and, - ACTIONS(3005), 1, + ACTIONS(3201), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3023), 5, + ACTIONS(3000), 5, anon_sym_COMMA, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_EQ, anon_sym_RBRACE, - [104073] = 3, - ACTIONS(3144), 1, - anon_sym_as, + sym_type_conversion, + [104750] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3021), 8, + ACTIONS(3041), 9, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_EQ, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [104091] = 2, + sym_type_conversion, + [104766] = 6, + ACTIONS(3017), 1, + anon_sym_as, + ACTIONS(3019), 1, + anon_sym_if, + ACTIONS(3029), 1, + anon_sym_and, + ACTIONS(3031), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 9, - anon_sym_DOT, + ACTIONS(3000), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [104107] = 6, - ACTIONS(3182), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [104790] = 6, + ACTIONS(3193), 1, anon_sym_as, - ACTIONS(3184), 1, + ACTIONS(3195), 1, anon_sym_if, - ACTIONS(3188), 1, + ACTIONS(3199), 1, anon_sym_and, - ACTIONS(3190), 1, + ACTIONS(3201), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3007), 5, + ACTIONS(3223), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [104131] = 6, - ACTIONS(3206), 1, + [104814] = 3, + ACTIONS(3199), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3041), 8, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3208), 1, anon_sym_if, - ACTIONS(3210), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_or, + sym_type_conversion, + [104832] = 5, + ACTIONS(3029), 1, anon_sym_and, - ACTIONS(3212), 1, + ACTIONS(3031), 1, anon_sym_or, + ACTIONS(3166), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3007), 5, - anon_sym_DOT, + ACTIONS(3039), 6, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [104155] = 6, - ACTIONS(3182), 1, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [104854] = 6, + ACTIONS(3193), 1, anon_sym_as, - ACTIONS(3184), 1, + ACTIONS(3195), 1, anon_sym_if, - ACTIONS(3188), 1, + ACTIONS(3199), 1, anon_sym_and, - ACTIONS(3190), 1, + ACTIONS(3201), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3023), 5, + ACTIONS(3225), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [104179] = 2, + [104878] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 9, + ACTIONS(2201), 9, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -114469,96 +115548,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [104195] = 4, - ACTIONS(3233), 1, + [104894] = 5, + ACTIONS(3227), 1, + anon_sym_as, + ACTIONS(3230), 1, + anon_sym_and, + ACTIONS(3232), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3010), 6, anon_sym_DOT, - STATE(1751), 1, - aux_sym_dotted_name_repeat1, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [104916] = 4, + ACTIONS(3230), 1, + anon_sym_and, + ACTIONS(3232), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3231), 7, - anon_sym_import, - anon_sym_LPAREN, + ACTIONS(3039), 7, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [104215] = 6, - ACTIONS(3206), 1, + [104936] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3041), 9, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3208), 1, anon_sym_if, - ACTIONS(3210), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_and, - ACTIONS(3212), 1, anon_sym_or, + [104952] = 3, + ACTIONS(3230), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3023), 5, + ACTIONS(3041), 8, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [104239] = 6, - ACTIONS(3182), 1, - anon_sym_as, - ACTIONS(3184), 1, - anon_sym_if, - ACTIONS(3188), 1, - anon_sym_and, - ACTIONS(3190), 1, anon_sym_or, + [104970] = 3, + ACTIONS(2215), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3235), 5, + ACTIONS(2201), 8, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - sym_type_conversion, - [104263] = 2, + anon_sym_and, + anon_sym_or, + [104988] = 3, + ACTIONS(3168), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3021), 9, + ACTIONS(3041), 8, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - sym_type_conversion, - [104279] = 3, - ACTIONS(3188), 1, - anon_sym_and, + [105006] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3021), 8, + ACTIONS(3033), 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, - [104297] = 4, - ACTIONS(3233), 1, + [105022] = 4, + ACTIONS(3236), 1, anon_sym_DOT, - STATE(1778), 1, + STATE(1753), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3237), 7, + ACTIONS(3234), 7, anon_sym_import, anon_sym_LPAREN, anon_sym_COMMA, @@ -114566,10194 +115670,10344 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [104317] = 5, - ACTIONS(3233), 1, - anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_EQ, - STATE(1778), 1, - aux_sym_dotted_name_repeat1, + [105042] = 4, + ACTIONS(3029), 1, + anon_sym_and, + ACTIONS(3168), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3237), 6, - anon_sym_LPAREN, + ACTIONS(3041), 7, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - [104339] = 6, - ACTIONS(3206), 1, - anon_sym_as, - ACTIONS(3208), 1, - anon_sym_if, - ACTIONS(3210), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_or, + [105062] = 6, + ACTIONS(3230), 1, anon_sym_and, - ACTIONS(3212), 1, + ACTIONS(3232), 1, anon_sym_or, + ACTIONS(3238), 1, + anon_sym_as, + ACTIONS(3240), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2975), 5, + ACTIONS(2986), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [104363] = 3, - ACTIONS(3210), 1, + [105086] = 6, + ACTIONS(3230), 1, anon_sym_and, + ACTIONS(3232), 1, + anon_sym_or, + ACTIONS(3238), 1, + anon_sym_as, + ACTIONS(3240), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3021), 8, + ACTIONS(3037), 5, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_or, - [104381] = 9, - ACTIONS(3206), 1, + [105110] = 6, + ACTIONS(3017), 1, anon_sym_as, - ACTIONS(3208), 1, + ACTIONS(3019), 1, anon_sym_if, - ACTIONS(3210), 1, + ACTIONS(3029), 1, anon_sym_and, - ACTIONS(3212), 1, + ACTIONS(3031), 1, anon_sym_or, - ACTIONS(3241), 1, - anon_sym_COMMA, - ACTIONS(3243), 1, - anon_sym_COLON, - ACTIONS(3245), 1, - anon_sym_RBRACK, - STATE(2429), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [104410] = 7, - ACTIONS(63), 1, - anon_sym_AT, - ACTIONS(3247), 1, - anon_sym_async, - ACTIONS(3249), 1, - anon_sym_def, - ACTIONS(3251), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(788), 2, - sym_function_definition, - sym_class_definition, - STATE(1967), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [104435] = 4, - ACTIONS(308), 1, - sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1019), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3253), 5, + ACTIONS(3037), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - [104454] = 5, - ACTIONS(3255), 1, - anon_sym_DOT, - ACTIONS(3257), 1, - anon_sym_EQ, - STATE(1855), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3237), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - [104475] = 8, - ACTIONS(3009), 1, + [105134] = 9, + ACTIONS(3002), 1, anon_sym_as, - ACTIONS(3011), 1, + ACTIONS(3004), 1, anon_sym_if, - ACTIONS(3013), 1, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3008), 1, anon_sym_or, - ACTIONS(3227), 1, + ACTIONS(3244), 1, + anon_sym_from, + ACTIONS(3246), 1, anon_sym_COMMA, - STATE(2107), 1, + STATE(2092), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2940), 2, + ACTIONS(3242), 2, sym__newline, anon_sym_SEMI, - [104502] = 8, - ACTIONS(3009), 1, + [105164] = 6, + ACTIONS(3193), 1, anon_sym_as, - ACTIONS(3011), 1, + ACTIONS(3195), 1, anon_sym_if, - ACTIONS(3013), 1, + ACTIONS(3199), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3201), 1, anon_sym_or, - ACTIONS(3261), 1, - anon_sym_COMMA, - STATE(2121), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3259), 2, - sym__newline, - anon_sym_SEMI, - [104529] = 5, - ACTIONS(2977), 1, - anon_sym_as, - ACTIONS(2985), 1, + ACTIONS(3037), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [105188] = 6, + ACTIONS(3230), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(3232), 1, anon_sym_or, + ACTIONS(3238), 1, + anon_sym_as, + ACTIONS(3240), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3263), 5, + ACTIONS(3000), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_RBRACK, - [104550] = 5, - ACTIONS(2977), 1, - anon_sym_as, - ACTIONS(2985), 1, - anon_sym_and, - ACTIONS(2987), 1, - anon_sym_or, + anon_sym_PIPE, + [105212] = 5, + ACTIONS(3236), 1, + anon_sym_DOT, + ACTIONS(3250), 1, + anon_sym_EQ, + STATE(1778), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3263), 5, + ACTIONS(3248), 6, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [104571] = 9, - ACTIONS(3206), 1, anon_sym_as, - ACTIONS(3208), 1, anon_sym_if, - ACTIONS(3210), 1, - anon_sym_and, - ACTIONS(3212), 1, - anon_sym_or, - ACTIONS(3243), 1, anon_sym_COLON, - ACTIONS(3265), 1, - anon_sym_COMMA, - ACTIONS(3267), 1, - anon_sym_RBRACK, - STATE(2378), 1, - aux_sym_subscript_repeat1, + anon_sym_PIPE, + [105234] = 4, + ACTIONS(3236), 1, + anon_sym_DOT, + STATE(1778), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104600] = 8, - ACTIONS(3009), 1, + ACTIONS(3248), 7, + anon_sym_import, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3011), 1, anon_sym_if, - ACTIONS(3013), 1, + anon_sym_COLON, + anon_sym_PIPE, + [105254] = 6, + ACTIONS(3230), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3232), 1, anon_sym_or, - ACTIONS(3227), 1, - anon_sym_COMMA, - STATE(2107), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3199), 2, - sym__newline, - anon_sym_SEMI, - [104627] = 6, - ACTIONS(3044), 1, + ACTIONS(3238), 1, anon_sym_as, - ACTIONS(3046), 1, + ACTIONS(3240), 1, anon_sym_if, - ACTIONS(3052), 1, - anon_sym_and, - ACTIONS(3054), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3025), 4, - anon_sym_RPAREN, + ACTIONS(3035), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - [104650] = 7, - ACTIONS(63), 1, - anon_sym_AT, - ACTIONS(3269), 1, - anon_sym_async, - ACTIONS(3271), 1, - anon_sym_def, - ACTIONS(3273), 1, - anon_sym_class, - ACTIONS(3), 2, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [105278] = 6, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - STATE(793), 2, - sym_function_definition, - sym_class_definition, - STATE(1967), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [104675] = 9, - ACTIONS(3206), 1, - anon_sym_as, - ACTIONS(3208), 1, - anon_sym_if, - ACTIONS(3210), 1, + ACTIONS(3257), 1, + anon_sym_BSLASH, + ACTIONS(3252), 2, + sym_string_end, + anon_sym_LBRACE, + STATE(1789), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3254), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + [105301] = 9, + ACTIONS(3230), 1, anon_sym_and, - ACTIONS(3212), 1, + ACTIONS(3232), 1, anon_sym_or, - ACTIONS(3243), 1, - anon_sym_COLON, - ACTIONS(3275), 1, + ACTIONS(3238), 1, + anon_sym_as, + ACTIONS(3240), 1, + anon_sym_if, + ACTIONS(3260), 1, anon_sym_COMMA, - ACTIONS(3277), 1, + ACTIONS(3262), 1, + anon_sym_COLON, + ACTIONS(3264), 1, anon_sym_RBRACK, - STATE(2432), 1, + STATE(2316), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104704] = 5, - ACTIONS(3044), 1, + [105330] = 5, + ACTIONS(3017), 1, anon_sym_as, - ACTIONS(3052), 1, + ACTIONS(3029), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3031), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3263), 5, - anon_sym_RPAREN, + ACTIONS(3266), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [104725] = 5, - ACTIONS(3052), 1, - anon_sym_and, - ACTIONS(3054), 1, - anon_sym_or, - ACTIONS(3279), 1, - anon_sym_as, + anon_sym_RBRACE, + [105351] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3027), 5, - anon_sym_RPAREN, + ACTIONS(3212), 8, + anon_sym_import, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - [104746] = 5, - ACTIONS(3052), 1, + anon_sym_COLON, + anon_sym_PIPE, + [105366] = 5, + ACTIONS(2988), 1, + anon_sym_as, + ACTIONS(2996), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(2998), 1, anon_sym_or, - ACTIONS(3142), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 5, - anon_sym_RPAREN, + ACTIONS(3266), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [104767] = 3, - ACTIONS(3144), 1, + anon_sym_RBRACK, + [105387] = 5, + ACTIONS(3017), 1, anon_sym_as, + ACTIONS(3029), 1, + anon_sym_and, + ACTIONS(3031), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3021), 7, - anon_sym_RPAREN, + ACTIONS(3266), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, + anon_sym_RBRACE, + [105408] = 9, + ACTIONS(3230), 1, anon_sym_and, + ACTIONS(3232), 1, anon_sym_or, - [104784] = 4, - ACTIONS(3052), 1, - anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3238), 1, anon_sym_as, + ACTIONS(3240), 1, + anon_sym_if, + ACTIONS(3262), 1, + anon_sym_COLON, + ACTIONS(3268), 1, + anon_sym_COMMA, + ACTIONS(3270), 1, + anon_sym_RBRACK, + STATE(2356), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3021), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + [105437] = 9, + ACTIONS(3230), 1, + anon_sym_and, + ACTIONS(3232), 1, anon_sym_or, - [104803] = 6, - ACTIONS(3009), 1, + ACTIONS(3238), 1, anon_sym_as, - ACTIONS(3011), 1, + ACTIONS(3240), 1, anon_sym_if, - ACTIONS(3013), 1, - anon_sym_and, - ACTIONS(3015), 1, - anon_sym_or, + ACTIONS(3262), 1, + anon_sym_COLON, + ACTIONS(3272), 1, + anon_sym_COMMA, + ACTIONS(3274), 1, + anon_sym_RBRACK, + STATE(2253), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3235), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - [104826] = 9, - ACTIONS(3206), 1, - anon_sym_as, - ACTIONS(3208), 1, - anon_sym_if, - ACTIONS(3210), 1, + [105466] = 9, + ACTIONS(3230), 1, anon_sym_and, - ACTIONS(3212), 1, + ACTIONS(3232), 1, anon_sym_or, - ACTIONS(3243), 1, + ACTIONS(3238), 1, + anon_sym_as, + ACTIONS(3240), 1, + anon_sym_if, + ACTIONS(3262), 1, anon_sym_COLON, - ACTIONS(3282), 1, + ACTIONS(3276), 1, anon_sym_COMMA, - ACTIONS(3284), 1, + ACTIONS(3278), 1, anon_sym_RBRACK, - STATE(2270), 1, + STATE(2380), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104855] = 6, + [105495] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3290), 1, + ACTIONS(3284), 1, anon_sym_BSLASH, - ACTIONS(3286), 2, + ACTIONS(3280), 2, sym_string_end, anon_sym_LBRACE, - STATE(1830), 2, + STATE(1789), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3288), 3, + ACTIONS(3282), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - [104878] = 5, - ACTIONS(3044), 1, - anon_sym_as, - ACTIONS(3052), 1, - anon_sym_and, - ACTIONS(3054), 1, - anon_sym_or, + [105518] = 4, + ACTIONS(313), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3263), 5, - anon_sym_RPAREN, + STATE(1013), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3286), 5, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - [104899] = 5, - ACTIONS(2991), 1, + anon_sym_COLON, + anon_sym_PIPE, + [105537] = 6, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3003), 1, + ACTIONS(3072), 1, + anon_sym_if, + ACTIONS(3078), 1, anon_sym_and, - ACTIONS(3005), 1, + ACTIONS(3080), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3263), 5, + ACTIONS(3035), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [104920] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3201), 8, - anon_sym_import, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [104935] = 5, + [105560] = 7, + ACTIONS(65), 1, + anon_sym_AT, + ACTIONS(3288), 1, + anon_sym_async, + ACTIONS(3290), 1, + anon_sym_def, ACTIONS(3292), 1, - anon_sym_DOT, - ACTIONS(3294), 1, - anon_sym_EQ, - STATE(1865), 1, - aux_sym_dotted_name_repeat1, + anon_sym_class, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3237), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [104956] = 9, - ACTIONS(3206), 1, + STATE(803), 2, + sym_function_definition, + sym_class_definition, + STATE(1995), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [105585] = 8, + ACTIONS(3002), 1, anon_sym_as, - ACTIONS(3208), 1, + ACTIONS(3004), 1, anon_sym_if, - ACTIONS(3210), 1, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3212), 1, + ACTIONS(3008), 1, anon_sym_or, - ACTIONS(3243), 1, - anon_sym_COLON, - ACTIONS(3296), 1, + ACTIONS(3246), 1, anon_sym_COMMA, - ACTIONS(3298), 1, - anon_sym_RBRACK, - STATE(2311), 1, - aux_sym_subscript_repeat1, + STATE(2092), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104985] = 5, - ACTIONS(2991), 1, + ACTIONS(3197), 2, + sym__newline, + anon_sym_SEMI, + [105612] = 3, + ACTIONS(3146), 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(3263), 5, + ACTIONS(3033), 7, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [105006] = 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(3263), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [105027] = 9, - ACTIONS(3206), 1, - anon_sym_as, - ACTIONS(3208), 1, - anon_sym_if, - ACTIONS(3210), 1, + [105629] = 9, + ACTIONS(3230), 1, anon_sym_and, - ACTIONS(3212), 1, + ACTIONS(3232), 1, anon_sym_or, - ACTIONS(3243), 1, + ACTIONS(3238), 1, + anon_sym_as, + ACTIONS(3240), 1, + anon_sym_if, + ACTIONS(3262), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3294), 1, anon_sym_COMMA, - ACTIONS(3302), 1, + ACTIONS(3296), 1, anon_sym_RBRACK, - STATE(2352), 1, + STATE(2401), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105056] = 9, - ACTIONS(3206), 1, + [105658] = 8, + ACTIONS(3002), 1, anon_sym_as, - ACTIONS(3208), 1, + ACTIONS(3004), 1, anon_sym_if, - ACTIONS(3210), 1, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3212), 1, + ACTIONS(3008), 1, anon_sym_or, - ACTIONS(3243), 1, - anon_sym_COLON, - ACTIONS(3304), 1, + ACTIONS(3300), 1, anon_sym_COMMA, - ACTIONS(3306), 1, - anon_sym_RBRACK, - STATE(2380), 1, - aux_sym_subscript_repeat1, + STATE(2175), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105085] = 8, - ACTIONS(3009), 1, + ACTIONS(3298), 2, + sym__newline, + anon_sym_SEMI, + [105685] = 8, + ACTIONS(3002), 1, anon_sym_as, - ACTIONS(3011), 1, + ACTIONS(3004), 1, anon_sym_if, - ACTIONS(3013), 1, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3008), 1, anon_sym_or, - ACTIONS(3310), 1, + ACTIONS(3304), 1, anon_sym_COMMA, - STATE(2127), 1, - aux_sym_print_statement_repeat1, + STATE(2183), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3308), 2, + ACTIONS(3302), 2, sym__newline, anon_sym_SEMI, - [105112] = 8, - ACTIONS(3009), 1, + [105712] = 8, + ACTIONS(3002), 1, anon_sym_as, - ACTIONS(3011), 1, + ACTIONS(3004), 1, anon_sym_if, - ACTIONS(3013), 1, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3008), 1, anon_sym_or, - ACTIONS(3314), 1, + ACTIONS(3246), 1, anon_sym_COMMA, - STATE(2210), 1, + STATE(2092), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3312), 2, + ACTIONS(3306), 2, sym__newline, anon_sym_SEMI, - [105139] = 8, - ACTIONS(3009), 1, + [105739] = 6, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3011), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3013), 1, + ACTIONS(3078), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3080), 1, anon_sym_or, - ACTIONS(3227), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3037), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2107), 1, - aux_sym_assert_statement_repeat1, + anon_sym_async, + anon_sym_for, + [105762] = 5, + ACTIONS(3308), 1, + anon_sym_DOT, + ACTIONS(3310), 1, + anon_sym_EQ, + STATE(1841), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3316), 2, - sym__newline, - anon_sym_SEMI, - [105166] = 8, - ACTIONS(3009), 1, + ACTIONS(3248), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3011), 1, + anon_sym_PIPE, + [105783] = 8, + ACTIONS(3002), 1, + anon_sym_as, + ACTIONS(3004), 1, anon_sym_if, - ACTIONS(3013), 1, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3008), 1, anon_sym_or, - ACTIONS(3227), 1, + ACTIONS(3246), 1, anon_sym_COMMA, - STATE(2107), 1, + STATE(2092), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3318), 2, + ACTIONS(3312), 2, sym__newline, anon_sym_SEMI, - [105193] = 9, - ACTIONS(3206), 1, + [105810] = 5, + ACTIONS(3078), 1, + anon_sym_and, + ACTIONS(3080), 1, + anon_sym_or, + ACTIONS(3314), 1, anon_sym_as, - ACTIONS(3208), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3010), 5, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, - ACTIONS(3210), 1, + anon_sym_async, + anon_sym_for, + [105831] = 9, + ACTIONS(3230), 1, anon_sym_and, - ACTIONS(3212), 1, + ACTIONS(3232), 1, anon_sym_or, - ACTIONS(3243), 1, + ACTIONS(3238), 1, + anon_sym_as, + ACTIONS(3240), 1, + anon_sym_if, + ACTIONS(3262), 1, anon_sym_COLON, - ACTIONS(3320), 1, + ACTIONS(3317), 1, anon_sym_COMMA, - ACTIONS(3322), 1, + ACTIONS(3319), 1, anon_sym_RBRACK, - STATE(2401), 1, + STATE(2423), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105222] = 6, - ACTIONS(3044), 1, + [105860] = 5, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3046), 1, - anon_sym_if, - ACTIONS(3052), 1, + ACTIONS(3078), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3080), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3007), 4, + ACTIONS(3266), 5, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, anon_sym_async, anon_sym_for, - [105245] = 9, - ACTIONS(3206), 1, + [105881] = 9, + ACTIONS(3230), 1, + anon_sym_and, + ACTIONS(3232), 1, + anon_sym_or, + ACTIONS(3238), 1, anon_sym_as, - ACTIONS(3208), 1, + ACTIONS(3240), 1, anon_sym_if, - ACTIONS(3210), 1, + ACTIONS(3262), 1, + anon_sym_COLON, + ACTIONS(3321), 1, + anon_sym_COMMA, + ACTIONS(3323), 1, + anon_sym_RBRACK, + STATE(2429), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [105910] = 9, + ACTIONS(3230), 1, anon_sym_and, - ACTIONS(3212), 1, + ACTIONS(3232), 1, anon_sym_or, - ACTIONS(3243), 1, + ACTIONS(3238), 1, + anon_sym_as, + ACTIONS(3240), 1, + anon_sym_if, + ACTIONS(3262), 1, anon_sym_COLON, - ACTIONS(3324), 1, + ACTIONS(3325), 1, anon_sym_COMMA, - ACTIONS(3326), 1, + ACTIONS(3327), 1, anon_sym_RBRACK, - STATE(2422), 1, + STATE(2437), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105274] = 8, - ACTIONS(3009), 1, + [105939] = 8, + ACTIONS(3002), 1, anon_sym_as, - ACTIONS(3011), 1, + ACTIONS(3004), 1, anon_sym_if, - ACTIONS(3013), 1, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3008), 1, anon_sym_or, - ACTIONS(3314), 1, + ACTIONS(3304), 1, anon_sym_COMMA, - STATE(2185), 1, + STATE(2190), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3328), 2, + ACTIONS(3329), 2, sym__newline, anon_sym_SEMI, - [105301] = 9, - ACTIONS(3206), 1, - anon_sym_as, - ACTIONS(3208), 1, - anon_sym_if, - ACTIONS(3210), 1, + [105966] = 5, + ACTIONS(3078), 1, anon_sym_and, - ACTIONS(3212), 1, + ACTIONS(3080), 1, anon_sym_or, - ACTIONS(3243), 1, - anon_sym_COLON, - ACTIONS(3330), 1, + ACTIONS(3166), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3039), 5, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3332), 1, - anon_sym_RBRACK, - STATE(2436), 1, - aux_sym_subscript_repeat1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [105987] = 7, + ACTIONS(65), 1, + anon_sym_AT, + ACTIONS(3331), 1, + anon_sym_async, + ACTIONS(3333), 1, + anon_sym_def, + ACTIONS(3335), 1, + anon_sym_class, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105330] = 6, - ACTIONS(3044), 1, + STATE(742), 2, + sym_function_definition, + sym_class_definition, + STATE(1995), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [106012] = 8, + ACTIONS(3002), 1, anon_sym_as, - ACTIONS(3046), 1, + ACTIONS(3004), 1, anon_sym_if, - ACTIONS(3052), 1, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3008), 1, anon_sym_or, + ACTIONS(3246), 1, + anon_sym_COMMA, + STATE(2092), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3023), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - [105353] = 5, - ACTIONS(3044), 1, + ACTIONS(2965), 2, + sym__newline, + anon_sym_SEMI, + [106039] = 3, + ACTIONS(3168), 1, anon_sym_as, - ACTIONS(3052), 1, - anon_sym_and, - ACTIONS(3054), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3263), 5, + ACTIONS(3041), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [105374] = 3, - ACTIONS(2114), 1, + anon_sym_and, + anon_sym_or, + [106056] = 9, + ACTIONS(3230), 1, + anon_sym_and, + ACTIONS(3232), 1, + anon_sym_or, + ACTIONS(3238), 1, anon_sym_as, + ACTIONS(3240), 1, + anon_sym_if, + ACTIONS(3262), 1, + anon_sym_COLON, + ACTIONS(3337), 1, + anon_sym_COMMA, + ACTIONS(3339), 1, + anon_sym_RBRACK, + STATE(2274), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2100), 7, - anon_sym_RPAREN, - anon_sym_COMMA, + [106085] = 6, + ACTIONS(3002), 1, + anon_sym_as, + ACTIONS(3004), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, + ACTIONS(3006), 1, anon_sym_and, + ACTIONS(3008), 1, anon_sym_or, - [105391] = 5, - ACTIONS(2977), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3225), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + [106108] = 5, + ACTIONS(2988), 1, anon_sym_as, - ACTIONS(2985), 1, + ACTIONS(2996), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(2998), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3263), 5, + ACTIONS(3266), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [105412] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3339), 1, - anon_sym_BSLASH, - ACTIONS(3334), 2, - sym_string_end, - anon_sym_LBRACE, - STATE(1830), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3336), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - [105435] = 6, - ACTIONS(2991), 1, + [106129] = 8, + ACTIONS(3002), 1, anon_sym_as, - ACTIONS(2993), 1, + ACTIONS(3004), 1, anon_sym_if, - ACTIONS(3003), 1, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3005), 1, + ACTIONS(3008), 1, anon_sym_or, + ACTIONS(3343), 1, + anon_sym_COMMA, + STATE(2177), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3342), 4, - anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [105458] = 5, - ACTIONS(3344), 1, + ACTIONS(3341), 2, + sym__newline, + anon_sym_SEMI, + [106156] = 5, + ACTIONS(3345), 1, anon_sym_DOT, - ACTIONS(3346), 1, + ACTIONS(3347), 1, anon_sym_EQ, - STATE(1888), 1, + STATE(1860), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3237), 5, + ACTIONS(3248), 5, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [105479] = 3, - ACTIONS(3121), 1, + anon_sym_RBRACE, + [106177] = 4, + ACTIONS(3078), 1, + anon_sym_and, + ACTIONS(3168), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 7, + ACTIONS(3041), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, + anon_sym_or, + [106196] = 5, + ACTIONS(3070), 1, + anon_sym_as, + ACTIONS(3078), 1, anon_sym_and, + ACTIONS(3080), 1, anon_sym_or, - [105496] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3348), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3253), 5, + ACTIONS(3266), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [105512] = 7, - ACTIONS(2736), 1, - sym_identifier, - ACTIONS(3350), 1, - anon_sym_DOT, - ACTIONS(3352), 1, - anon_sym___future__, - STATE(2146), 1, - aux_sym_import_prefix_repeat1, - STATE(2293), 1, - sym_import_prefix, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2613), 2, - sym_relative_import, - sym_dotted_name, - [105536] = 7, - ACTIONS(3009), 1, + anon_sym_async, + anon_sym_for, + [106217] = 6, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3011), 1, + ACTIONS(3072), 1, anon_sym_if, - ACTIONS(3013), 1, + ACTIONS(3078), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3080), 1, anon_sym_or, - ACTIONS(3194), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3192), 2, - sym__newline, - anon_sym_SEMI, - [105560] = 5, - ACTIONS(2991), 1, + ACTIONS(3000), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + [106240] = 5, + ACTIONS(3017), 1, anon_sym_as, - ACTIONS(3003), 1, + ACTIONS(3029), 1, anon_sym_and, - ACTIONS(3005), 1, + ACTIONS(3031), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3354), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [105580] = 6, - ACTIONS(3356), 1, + ACTIONS(3266), 5, + anon_sym_COMMA, anon_sym_if, - ACTIONS(3359), 1, anon_sym_async, - ACTIONS(3362), 1, anon_sym_for, - ACTIONS(3365), 1, anon_sym_RBRACE, + [106261] = 5, + ACTIONS(3349), 1, + anon_sym_DOT, + ACTIONS(3351), 1, + anon_sym_EQ, + STATE(1843), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1838), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105602] = 5, - ACTIONS(3044), 1, + ACTIONS(3248), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [106282] = 5, + ACTIONS(3070), 1, anon_sym_as, - ACTIONS(3052), 1, + ACTIONS(3078), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3080), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3354), 4, + ACTIONS(3266), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [106303] = 3, + ACTIONS(2215), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2201), 7, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [105622] = 8, - ACTIONS(3161), 1, anon_sym_and, - ACTIONS(3163), 1, anon_sym_or, - ACTIONS(3167), 1, - anon_sym_if, - ACTIONS(3367), 1, - anon_sym_COMMA, - ACTIONS(3369), 1, + [106320] = 5, + ACTIONS(2988), 1, anon_sym_as, - ACTIONS(3371), 1, - anon_sym_COLON, - STATE(2343), 1, - aux_sym_except_clause_repeat1, + ACTIONS(2996), 1, + anon_sym_and, + ACTIONS(2998), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105648] = 6, - ACTIONS(3009), 1, + ACTIONS(3266), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [106341] = 6, + ACTIONS(3017), 1, anon_sym_as, - ACTIONS(3011), 1, + ACTIONS(3019), 1, anon_sym_if, - ACTIONS(3013), 1, + ACTIONS(3029), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3031), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3373), 3, - sym__newline, - anon_sym_SEMI, + ACTIONS(3353), 4, anon_sym_COMMA, - [105670] = 8, - ACTIONS(3161), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [106364] = 9, + ACTIONS(3230), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3232), 1, anon_sym_or, - ACTIONS(3165), 1, + ACTIONS(3238), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(3240), 1, anon_sym_if, - ACTIONS(3375), 1, - anon_sym_COMMA, - ACTIONS(3377), 1, + ACTIONS(3262), 1, anon_sym_COLON, - STATE(2480), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3355), 1, + anon_sym_COMMA, + ACTIONS(3357), 1, + anon_sym_RBRACK, + STATE(2434), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105696] = 4, - ACTIONS(799), 1, - sym_string_start, + [106393] = 4, + ACTIONS(3345), 1, + anon_sym_DOT, + STATE(1860), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1079), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3253), 4, + ACTIONS(3248), 5, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [105714] = 8, - ACTIONS(2997), 1, + anon_sym_RBRACE, + [106411] = 8, + ACTIONS(3023), 1, anon_sym_async, - ACTIONS(2999), 1, + ACTIONS(3025), 1, anon_sym_for, - ACTIONS(3379), 1, + ACTIONS(3359), 1, anon_sym_COMMA, - ACTIONS(3381), 1, + ACTIONS(3361), 1, anon_sym_RBRACE, - STATE(1860), 1, + STATE(1846), 1, sym_for_in_clause, - STATE(2302), 1, + STATE(2415), 1, aux_sym_dictionary_repeat1, - STATE(2624), 1, + STATE(2620), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105740] = 4, - ACTIONS(3383), 1, + [106437] = 7, + ACTIONS(2747), 1, + sym_identifier, + ACTIONS(3363), 1, anon_sym_DOT, - STATE(1845), 1, + ACTIONS(3365), 1, + anon_sym___future__, + STATE(2126), 1, + aux_sym_import_prefix_repeat1, + STATE(2350), 1, + sym_import_prefix, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2771), 2, + sym_relative_import, + sym_dotted_name, + [106461] = 4, + ACTIONS(3308), 1, + anon_sym_DOT, + STATE(1841), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3201), 5, + ACTIONS(3248), 5, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [105758] = 4, - ACTIONS(3344), 1, + [106479] = 7, + ACTIONS(3002), 1, + anon_sym_as, + ACTIONS(3004), 1, + anon_sym_if, + ACTIONS(3006), 1, + anon_sym_and, + ACTIONS(3008), 1, + anon_sym_or, + ACTIONS(3205), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3203), 2, + sym__newline, + anon_sym_SEMI, + [106503] = 4, + ACTIONS(3308), 1, anon_sym_DOT, - STATE(1888), 1, + STATE(1865), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3237), 5, + ACTIONS(3234), 5, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [105776] = 8, - ACTIONS(2997), 1, - anon_sym_async, - ACTIONS(2999), 1, - anon_sym_for, - ACTIONS(3386), 1, + [106521] = 8, + ACTIONS(3179), 1, + anon_sym_as, + ACTIONS(3181), 1, + anon_sym_if, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3367), 1, anon_sym_COMMA, - ACTIONS(3388), 1, - anon_sym_RBRACE, - STATE(1860), 1, - sym_for_in_clause, - STATE(2337), 1, - aux_sym_dictionary_repeat1, - STATE(2702), 1, - sym__comprehension_clauses, + ACTIONS(3369), 1, + anon_sym_COLON, + STATE(2487), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105802] = 6, - ACTIONS(2981), 1, - anon_sym_async, - ACTIONS(2983), 1, - anon_sym_for, - ACTIONS(3390), 1, - anon_sym_if, - ACTIONS(3392), 1, + [106547] = 4, + ACTIONS(3349), 1, + anon_sym_DOT, + STATE(1888), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3234), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_RBRACK, + anon_sym_PIPE, + [106565] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1875), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105824] = 8, - ACTIONS(2997), 1, - anon_sym_async, - ACTIONS(2999), 1, - anon_sym_for, - ACTIONS(3394), 1, + ACTIONS(3373), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3371), 5, anon_sym_COMMA, - ACTIONS(3396), 1, - anon_sym_RBRACE, - STATE(1860), 1, - sym_for_in_clause, - STATE(2344), 1, - aux_sym_dictionary_repeat1, - STATE(2729), 1, - sym__comprehension_clauses, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [106581] = 5, + ACTIONS(3070), 1, + anon_sym_as, + ACTIONS(3078), 1, + anon_sym_and, + ACTIONS(3080), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105850] = 6, - ACTIONS(3365), 1, + ACTIONS(3375), 4, anon_sym_RPAREN, - ACTIONS(3398), 1, anon_sym_if, - ACTIONS(3401), 1, anon_sym_async, - ACTIONS(3404), 1, anon_sym_for, + [106601] = 6, + ACTIONS(3023), 1, + anon_sym_async, + ACTIONS(3025), 1, + anon_sym_for, + ACTIONS(3377), 1, + anon_sym_if, + ACTIONS(3379), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1850), 3, + STATE(1869), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [105872] = 8, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, + [106623] = 8, + ACTIONS(3179), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(3181), 1, anon_sym_if, - ACTIONS(3375), 1, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3381), 1, anon_sym_COMMA, - ACTIONS(3407), 1, + ACTIONS(3383), 1, anon_sym_COLON, - STATE(2480), 1, - aux_sym_assert_statement_repeat1, + STATE(2379), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105898] = 8, - ACTIONS(2997), 1, + [106649] = 6, + ACTIONS(3074), 1, anon_sym_async, - ACTIONS(2999), 1, + ACTIONS(3076), 1, anon_sym_for, - ACTIONS(3409), 1, - anon_sym_COMMA, - ACTIONS(3411), 1, - anon_sym_RBRACE, - STATE(1860), 1, - sym_for_in_clause, - STATE(2370), 1, - aux_sym_dictionary_repeat1, - STATE(2767), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [105924] = 4, - ACTIONS(3292), 1, - anon_sym_DOT, - STATE(1865), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(3379), 1, + anon_sym_RPAREN, + ACTIONS(3385), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3237), 5, - anon_sym_LPAREN, + STATE(1861), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [106671] = 8, + ACTIONS(3181), 1, + anon_sym_if, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3387), 1, anon_sym_COMMA, + ACTIONS(3389), 1, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [105942] = 8, - ACTIONS(2997), 1, - anon_sym_async, - ACTIONS(2999), 1, - anon_sym_for, - ACTIONS(3413), 1, - anon_sym_COMMA, - ACTIONS(3415), 1, - anon_sym_RBRACE, - STATE(1860), 1, - sym_for_in_clause, - STATE(2384), 1, - aux_sym_dictionary_repeat1, - STATE(2662), 1, - sym__comprehension_clauses, + ACTIONS(3391), 1, + anon_sym_COLON, + STATE(2353), 1, + aux_sym_except_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105968] = 4, - ACTIONS(3255), 1, - anon_sym_DOT, - STATE(1845), 1, - aux_sym_dotted_name_repeat1, + [106697] = 8, + ACTIONS(3179), 1, + anon_sym_as, + ACTIONS(3181), 1, + anon_sym_if, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3367), 1, + anon_sym_COMMA, + ACTIONS(3393), 1, + anon_sym_COLON, + STATE(2487), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3231), 5, - anon_sym_LPAREN, - anon_sym_COMMA, + [106723] = 8, + ACTIONS(3179), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [105986] = 8, - ACTIONS(3199), 1, - anon_sym_RBRACK, - ACTIONS(3206), 1, - anon_sym_as, - ACTIONS(3208), 1, + ACTIONS(3181), 1, anon_sym_if, - ACTIONS(3210), 1, + ACTIONS(3183), 1, anon_sym_and, - ACTIONS(3212), 1, + ACTIONS(3185), 1, anon_sym_or, - ACTIONS(3417), 1, + ACTIONS(3367), 1, anon_sym_COMMA, - STATE(2438), 1, + ACTIONS(3395), 1, + anon_sym_COLON, + STATE(2487), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106012] = 8, - ACTIONS(3161), 1, + [106749] = 8, + ACTIONS(3181), 1, + anon_sym_if, + ACTIONS(3183), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3185), 1, anon_sym_or, - ACTIONS(3167), 1, - anon_sym_if, - ACTIONS(3367), 1, + ACTIONS(3387), 1, anon_sym_COMMA, - ACTIONS(3419), 1, + ACTIONS(3397), 1, anon_sym_as, - ACTIONS(3421), 1, + ACTIONS(3399), 1, anon_sym_COLON, - STATE(2442), 1, + STATE(2456), 1, aux_sym_except_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106038] = 3, + [106775] = 6, + ACTIONS(3401), 1, + anon_sym_RPAREN, + ACTIONS(3403), 1, + anon_sym_if, + ACTIONS(3406), 1, + anon_sym_async, + ACTIONS(3409), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3425), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3423), 5, + STATE(1853), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [106797] = 8, + ACTIONS(3181), 1, + anon_sym_if, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3387), 1, anon_sym_COMMA, + ACTIONS(3389), 1, anon_sym_as, - anon_sym_if, + ACTIONS(3412), 1, anon_sym_COLON, - anon_sym_PIPE, - [106054] = 8, - ACTIONS(2997), 1, + STATE(2459), 1, + aux_sym_except_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [106823] = 5, + ACTIONS(2988), 1, + anon_sym_as, + ACTIONS(2996), 1, + anon_sym_and, + ACTIONS(2998), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3375), 4, + anon_sym_if, anon_sym_async, - ACTIONS(2999), 1, anon_sym_for, - ACTIONS(3427), 1, - anon_sym_COMMA, - ACTIONS(3429), 1, - anon_sym_RBRACE, - STATE(1860), 1, + anon_sym_RBRACK, + [106843] = 6, + ACTIONS(3401), 1, + anon_sym_RBRACK, + ACTIONS(3414), 1, + anon_sym_if, + ACTIONS(3417), 1, + anon_sym_async, + ACTIONS(3420), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1856), 3, sym_for_in_clause, - STATE(2391), 1, - aux_sym_dictionary_repeat1, - STATE(2711), 1, - sym__comprehension_clauses, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [106865] = 4, + ACTIONS(694), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106080] = 6, - ACTIONS(2997), 1, + STATE(984), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3286), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [106883] = 6, + ACTIONS(2992), 1, anon_sym_async, - ACTIONS(2999), 1, + ACTIONS(2994), 1, anon_sym_for, - ACTIONS(3431), 1, + ACTIONS(3423), 1, anon_sym_if, - ACTIONS(3433), 1, - anon_sym_RBRACE, + ACTIONS(3425), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1887), 3, + STATE(1856), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [106102] = 6, - ACTIONS(2981), 1, + [106905] = 4, + ACTIONS(3427), 1, + anon_sym_DOT, + STATE(1859), 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, + [106923] = 4, + ACTIONS(3345), 1, + anon_sym_DOT, + STATE(1859), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3234), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [106941] = 6, + ACTIONS(3074), 1, anon_sym_async, - ACTIONS(2983), 1, + ACTIONS(3076), 1, anon_sym_for, - ACTIONS(3390), 1, + ACTIONS(3385), 1, anon_sym_if, - ACTIONS(3433), 1, - anon_sym_RBRACK, + ACTIONS(3425), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1848), 3, + STATE(1853), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [106124] = 8, - ACTIONS(2997), 1, + [106963] = 6, + ACTIONS(3002), 1, + anon_sym_as, + ACTIONS(3004), 1, + anon_sym_if, + ACTIONS(3006), 1, + anon_sym_and, + ACTIONS(3008), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3430), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [106985] = 8, + ACTIONS(3023), 1, anon_sym_async, - ACTIONS(2999), 1, + ACTIONS(3025), 1, anon_sym_for, - ACTIONS(3435), 1, + ACTIONS(3432), 1, anon_sym_COMMA, - ACTIONS(3437), 1, + ACTIONS(3434), 1, anon_sym_RBRACE, - STATE(1860), 1, + STATE(1846), 1, sym_for_in_clause, - STATE(2413), 1, + STATE(2259), 1, aux_sym_dictionary_repeat1, - STATE(2616), 1, + STATE(2618), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106150] = 4, - ACTIONS(684), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(968), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3253), 4, + [107011] = 8, + ACTIONS(3096), 1, + anon_sym_RPAREN, + ACTIONS(3098), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [106168] = 8, - ACTIONS(3161), 1, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3177), 1, anon_sym_or, - ACTIONS(3165), 1, + ACTIONS(3187), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(3189), 1, anon_sym_if, - ACTIONS(3439), 1, - anon_sym_COMMA, - ACTIONS(3441), 1, - anon_sym_COLON, - STATE(2250), 1, - aux_sym_match_statement_repeat1, + STATE(2270), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106194] = 4, - ACTIONS(3292), 1, + [107037] = 4, + ACTIONS(3436), 1, anon_sym_DOT, - STATE(1885), 1, + STATE(1865), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3231), 5, + ACTIONS(3212), 5, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [106212] = 8, - ACTIONS(3172), 1, + [107055] = 7, + ACTIONS(3230), 1, anon_sym_and, - ACTIONS(3174), 1, + ACTIONS(3232), 1, anon_sym_or, - ACTIONS(3176), 1, + ACTIONS(3238), 1, anon_sym_as, - ACTIONS(3178), 1, + ACTIONS(3240), 1, anon_sym_if, - ACTIONS(3199), 1, - anon_sym_RPAREN, - ACTIONS(3443), 1, - anon_sym_COMMA, - STATE(2464), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3262), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106238] = 6, - ACTIONS(3048), 1, + ACTIONS(3439), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [107079] = 8, + ACTIONS(3023), 1, anon_sym_async, - ACTIONS(3050), 1, + ACTIONS(3025), 1, anon_sym_for, - ACTIONS(3433), 1, - anon_sym_RPAREN, - ACTIONS(3445), 1, - anon_sym_if, + ACTIONS(3441), 1, + anon_sym_COMMA, + ACTIONS(3443), 1, + anon_sym_RBRACE, + STATE(1846), 1, + sym_for_in_clause, + STATE(2391), 1, + aux_sym_dictionary_repeat1, + STATE(2717), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1878), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [106260] = 8, - ACTIONS(3161), 1, + [107105] = 8, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3177), 1, anon_sym_or, - ACTIONS(3165), 1, + ACTIONS(3187), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(3189), 1, anon_sym_if, - ACTIONS(3447), 1, + ACTIONS(3197), 1, + anon_sym_RPAREN, + ACTIONS(3445), 1, anon_sym_COMMA, - ACTIONS(3449), 1, - anon_sym_COLON, - STATE(2376), 1, - aux_sym_match_statement_repeat1, + STATE(2468), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106286] = 8, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, - anon_sym_as, - ACTIONS(3167), 1, + [107131] = 6, + ACTIONS(3023), 1, + anon_sym_async, + ACTIONS(3025), 1, + anon_sym_for, + ACTIONS(3377), 1, anon_sym_if, - ACTIONS(3375), 1, - anon_sym_COMMA, - ACTIONS(3451), 1, - anon_sym_COLON, - STATE(2480), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3425), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106312] = 8, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, - anon_sym_as, - ACTIONS(3167), 1, - anon_sym_if, - ACTIONS(3375), 1, - anon_sym_COMMA, - ACTIONS(3453), 1, - anon_sym_COLON, - STATE(2480), 1, - aux_sym_assert_statement_repeat1, + STATE(1874), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [107153] = 4, + ACTIONS(762), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106338] = 8, - ACTIONS(3077), 1, + STATE(1039), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3286), 4, anon_sym_RPAREN, - ACTIONS(3079), 1, anon_sym_COMMA, - ACTIONS(3172), 1, - anon_sym_and, - ACTIONS(3174), 1, - anon_sym_or, - ACTIONS(3176), 1, anon_sym_as, - ACTIONS(3178), 1, - anon_sym_if, - STATE(2266), 1, - aux_sym_argument_list_repeat1, + anon_sym_PIPE, + [107171] = 8, + ACTIONS(3023), 1, + anon_sym_async, + ACTIONS(3025), 1, + anon_sym_for, + ACTIONS(3447), 1, + anon_sym_COMMA, + ACTIONS(3449), 1, + anon_sym_RBRACE, + STATE(1846), 1, + sym_for_in_clause, + STATE(2386), 1, + aux_sym_dictionary_repeat1, + STATE(2687), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106364] = 8, - ACTIONS(3161), 1, + [107197] = 7, + ACTIONS(3230), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3232), 1, anon_sym_or, - ACTIONS(3167), 1, - anon_sym_if, - ACTIONS(3367), 1, - anon_sym_COMMA, - ACTIONS(3419), 1, + ACTIONS(3238), 1, anon_sym_as, - ACTIONS(3455), 1, + ACTIONS(3240), 1, + anon_sym_if, + ACTIONS(3451), 1, anon_sym_COLON, - STATE(2453), 1, - aux_sym_except_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106390] = 5, - ACTIONS(2977), 1, + ACTIONS(1434), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [107221] = 5, + ACTIONS(3017), 1, anon_sym_as, - ACTIONS(2985), 1, + ACTIONS(3029), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(3031), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3354), 4, + ACTIONS(3375), 4, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [106410] = 8, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3167), 1, - anon_sym_if, - ACTIONS(3367), 1, - anon_sym_COMMA, - ACTIONS(3369), 1, - anon_sym_as, - ACTIONS(3457), 1, - anon_sym_COLON, - STATE(2456), 1, - aux_sym_except_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [106436] = 6, - ACTIONS(3365), 1, - anon_sym_RBRACK, - ACTIONS(3459), 1, + anon_sym_RBRACE, + [107241] = 6, + ACTIONS(3401), 1, + anon_sym_RBRACE, + ACTIONS(3453), 1, anon_sym_if, - ACTIONS(3462), 1, + ACTIONS(3456), 1, anon_sym_async, - ACTIONS(3465), 1, + ACTIONS(3459), 1, anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1875), 3, + STATE(1874), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [106458] = 7, - ACTIONS(3206), 1, - anon_sym_as, - ACTIONS(3208), 1, - anon_sym_if, - ACTIONS(3210), 1, - anon_sym_and, - ACTIONS(3212), 1, - anon_sym_or, - ACTIONS(3243), 1, - anon_sym_COLON, + [107263] = 8, + ACTIONS(3023), 1, + anon_sym_async, + ACTIONS(3025), 1, + anon_sym_for, + ACTIONS(3462), 1, + anon_sym_COMMA, + ACTIONS(3464), 1, + anon_sym_RBRACE, + STATE(1846), 1, + sym_for_in_clause, + STATE(2369), 1, + aux_sym_dictionary_repeat1, + STATE(2625), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3468), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [106482] = 7, - ACTIONS(3206), 1, + [107289] = 8, + ACTIONS(3179), 1, anon_sym_as, - ACTIONS(3208), 1, + ACTIONS(3181), 1, anon_sym_if, - ACTIONS(3210), 1, + ACTIONS(3183), 1, anon_sym_and, - ACTIONS(3212), 1, + ACTIONS(3185), 1, anon_sym_or, - ACTIONS(3470), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1441), 2, + ACTIONS(3367), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [106506] = 6, - ACTIONS(3048), 1, - anon_sym_async, - ACTIONS(3050), 1, - anon_sym_for, - ACTIONS(3392), 1, - anon_sym_RPAREN, - ACTIONS(3445), 1, - anon_sym_if, + ACTIONS(3466), 1, + anon_sym_COLON, + STATE(2487), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1850), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [106528] = 8, - ACTIONS(3472), 1, + [107315] = 8, + ACTIONS(3468), 1, sym_identifier, - ACTIONS(3474), 1, + ACTIONS(3470), 1, anon_sym_LPAREN, - ACTIONS(3476), 1, + ACTIONS(3472), 1, anon_sym_STAR, - STATE(2099), 1, + STATE(2052), 1, sym_dotted_name, - STATE(2141), 1, + STATE(2197), 1, sym_aliased_import, - STATE(2534), 1, + STATE(2552), 1, sym__import_list, - STATE(2545), 1, + STATE(2554), 1, sym_wildcard_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106554] = 4, - ACTIONS(3255), 1, - anon_sym_DOT, - STATE(1855), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3237), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [106572] = 6, - ACTIONS(3009), 1, + [107341] = 6, + ACTIONS(3002), 1, anon_sym_as, - ACTIONS(3011), 1, + ACTIONS(3004), 1, anon_sym_if, - ACTIONS(3013), 1, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3008), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3478), 3, + ACTIONS(3474), 3, sym__newline, anon_sym_SEMI, anon_sym_COMMA, - [106594] = 7, - ACTIONS(1401), 1, - anon_sym_COLON, - ACTIONS(3206), 1, + [107363] = 8, + ACTIONS(3179), 1, anon_sym_as, - ACTIONS(3208), 1, + ACTIONS(3181), 1, anon_sym_if, - ACTIONS(3210), 1, + ACTIONS(3183), 1, anon_sym_and, - ACTIONS(3212), 1, + ACTIONS(3185), 1, anon_sym_or, + ACTIONS(3476), 1, + anon_sym_COMMA, + ACTIONS(3478), 1, + anon_sym_COLON, + STATE(2279), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1399), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [106618] = 4, - ACTIONS(3480), 1, - anon_sym_DOT, - STATE(1883), 1, - aux_sym_dotted_name_repeat1, + [107389] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3201), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3480), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3286), 5, anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - [106636] = 8, - ACTIONS(2997), 1, + [107405] = 8, + ACTIONS(3023), 1, anon_sym_async, - ACTIONS(2999), 1, + ACTIONS(3025), 1, anon_sym_for, - ACTIONS(3483), 1, + ACTIONS(3482), 1, anon_sym_COMMA, - ACTIONS(3485), 1, + ACTIONS(3484), 1, anon_sym_RBRACE, - STATE(1860), 1, + STATE(1846), 1, sym_for_in_clause, - STATE(2257), 1, + STATE(2347), 1, aux_sym_dictionary_repeat1, - STATE(2643), 1, + STATE(2741), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106662] = 4, - ACTIONS(3487), 1, + [107431] = 8, + ACTIONS(3181), 1, + anon_sym_if, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3387), 1, + anon_sym_COMMA, + ACTIONS(3397), 1, + anon_sym_as, + ACTIONS(3486), 1, + anon_sym_COLON, + STATE(2453), 1, + aux_sym_except_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [107457] = 4, + ACTIONS(3349), 1, anon_sym_DOT, - STATE(1885), 1, + STATE(1843), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3201), 5, + ACTIONS(3248), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [106680] = 4, - ACTIONS(709), 1, + [107475] = 4, + ACTIONS(784), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1009), 2, + STATE(1047), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(3253), 4, - anon_sym_RPAREN, + ACTIONS(3286), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [106698] = 6, - ACTIONS(2997), 1, + [107493] = 7, + ACTIONS(1372), 1, + anon_sym_COLON, + ACTIONS(3230), 1, + anon_sym_and, + ACTIONS(3232), 1, + anon_sym_or, + ACTIONS(3238), 1, + anon_sym_as, + ACTIONS(3240), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1370), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [107517] = 8, + ACTIONS(3197), 1, + anon_sym_RBRACK, + ACTIONS(3230), 1, + anon_sym_and, + ACTIONS(3232), 1, + anon_sym_or, + ACTIONS(3238), 1, + anon_sym_as, + ACTIONS(3240), 1, + anon_sym_if, + ACTIONS(3488), 1, + anon_sym_COMMA, + STATE(2444), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [107543] = 8, + ACTIONS(3023), 1, anon_sym_async, - ACTIONS(2999), 1, + ACTIONS(3025), 1, anon_sym_for, - ACTIONS(3392), 1, + ACTIONS(3490), 1, + anon_sym_COMMA, + ACTIONS(3492), 1, anon_sym_RBRACE, - ACTIONS(3431), 1, - anon_sym_if, + STATE(1846), 1, + sym_for_in_clause, + STATE(2308), 1, + aux_sym_dictionary_repeat1, + STATE(2652), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1838), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [106720] = 4, - ACTIONS(3344), 1, + [107569] = 4, + ACTIONS(3494), 1, anon_sym_DOT, - STATE(1883), 1, + STATE(1888), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3231), 5, + ACTIONS(3212), 5, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [106738] = 4, - ACTIONS(3492), 1, - anon_sym_COMMA, - STATE(1902), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3490), 4, - anon_sym_RPAREN, - anon_sym_if, + [107587] = 6, + ACTIONS(2992), 1, anon_sym_async, + ACTIONS(2994), 1, anon_sym_for, - [106755] = 6, - ACTIONS(3182), 1, - anon_sym_as, - ACTIONS(3184), 1, + ACTIONS(3379), 1, + anon_sym_RBRACK, + ACTIONS(3423), 1, anon_sym_if, - ACTIONS(3188), 1, - anon_sym_and, - ACTIONS(3190), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3494), 2, + STATE(1858), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [107609] = 8, + ACTIONS(3023), 1, + anon_sym_async, + ACTIONS(3025), 1, + anon_sym_for, + ACTIONS(3497), 1, anon_sym_COMMA, + ACTIONS(3499), 1, anon_sym_RBRACE, - [106776] = 6, - ACTIONS(3009), 1, - anon_sym_as, - ACTIONS(3011), 1, - anon_sym_if, - ACTIONS(3013), 1, - anon_sym_and, - ACTIONS(3015), 1, - anon_sym_or, + STATE(1846), 1, + sym_for_in_clause, + STATE(2351), 1, + aux_sym_dictionary_repeat1, + STATE(2744), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3496), 2, - sym__newline, - anon_sym_SEMI, - [106797] = 6, - ACTIONS(3172), 1, + [107635] = 6, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3174), 1, + ACTIONS(3177), 1, anon_sym_or, - ACTIONS(3176), 1, + ACTIONS(3187), 1, anon_sym_as, - ACTIONS(3178), 1, + ACTIONS(3189), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3498), 2, + ACTIONS(3501), 2, anon_sym_RPAREN, anon_sym_COMMA, - [106818] = 7, - ACTIONS(3500), 1, - anon_sym_DOT, - ACTIONS(3502), 1, + [107656] = 4, + ACTIONS(3505), 1, + anon_sym_PIPE, + STATE(1927), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3503), 4, anon_sym_COMMA, - ACTIONS(3504), 1, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - ACTIONS(3506), 1, - anon_sym_RBRACK, - ACTIONS(3508), 1, - anon_sym_PIPE, - STATE(2272), 1, - aux_sym_type_parameter_repeat1, + [107673] = 4, + ACTIONS(3507), 1, + anon_sym_COMMA, + STATE(1893), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106841] = 4, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, + ACTIONS(3225), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [107690] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 4, + ACTIONS(3510), 6, + anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - [106858] = 6, - ACTIONS(3206), 1, - anon_sym_as, - ACTIONS(3208), 1, - anon_sym_if, - ACTIONS(3210), 1, - anon_sym_and, - ACTIONS(3212), 1, - anon_sym_or, + anon_sym_EQ, + anon_sym_PIPE, + [107703] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1443), 2, + ACTIONS(3512), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [106879] = 6, - ACTIONS(3172), 1, - anon_sym_and, - ACTIONS(3174), 1, - anon_sym_or, - ACTIONS(3176), 1, - anon_sym_as, - ACTIONS(3178), 1, - anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [107716] = 4, + ACTIONS(3514), 1, + anon_sym_DOT, + STATE(1899), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3235), 2, - anon_sym_RPAREN, + ACTIONS(3248), 4, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - [106900] = 6, - ACTIONS(3009), 1, anon_sym_as, - ACTIONS(3011), 1, + [107733] = 6, + ACTIONS(3179), 1, + anon_sym_as, + ACTIONS(3181), 1, anon_sym_if, - ACTIONS(3013), 1, + ACTIONS(3183), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3185), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3510), 2, - sym__newline, - anon_sym_SEMI, - [106921] = 4, - ACTIONS(3512), 1, + ACTIONS(3516), 2, anon_sym_COMMA, - STATE(1926), 1, - aux_sym_assert_statement_repeat1, + anon_sym_COLON, + [107754] = 4, + ACTIONS(3518), 1, + anon_sym_COMMA, + STATE(1989), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1273), 4, + ACTIONS(964), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [106938] = 6, - ACTIONS(3161), 1, + [107771] = 4, + ACTIONS(3514), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3234), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + [107788] = 6, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3177), 1, anon_sym_or, - ACTIONS(3165), 1, + ACTIONS(3187), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(3189), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3514), 2, + ACTIONS(3520), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [106959] = 4, + [107809] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3518), 1, + ACTIONS(3524), 1, anon_sym_BSLASH, - ACTIONS(3516), 5, + ACTIONS(3522), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [106976] = 4, - ACTIONS(3522), 1, - anon_sym_COMMA, - STATE(1956), 1, - aux_sym_for_in_clause_repeat1, + [107826] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3520), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [106993] = 4, - ACTIONS(3526), 1, - anon_sym_COMMA, - STATE(1962), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(3526), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [107839] = 5, + ACTIONS(3530), 1, + anon_sym_DOT, + ACTIONS(3532), 1, + anon_sym_COLON, + ACTIONS(3534), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3524), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [107010] = 2, + ACTIONS(3528), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [107858] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 6, + ACTIONS(3536), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107023] = 4, + [107871] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3530), 1, + ACTIONS(3540), 1, anon_sym_BSLASH, - ACTIONS(3528), 5, + ACTIONS(3538), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [107040] = 3, - ACTIONS(3532), 1, - anon_sym_LPAREN, + [107888] = 6, + ACTIONS(3179), 1, + anon_sym_as, + ACTIONS(3181), 1, + anon_sym_if, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3253), 5, + ACTIONS(3542), 2, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - [107055] = 4, - ACTIONS(3534), 1, - anon_sym_COMMA, - STATE(1914), 1, - aux_sym_for_in_clause_repeat1, + [107909] = 4, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3490), 4, + ACTIONS(3039), 4, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [107072] = 4, - ACTIONS(3538), 1, - anon_sym_PIPE, - STATE(1983), 1, - aux_sym_union_pattern_repeat1, + anon_sym_COLON, + [107926] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3546), 1, + anon_sym_BSLASH, + ACTIONS(3544), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [107943] = 4, + ACTIONS(3548), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3536), 4, + ACTIONS(3212), 4, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_as, + [107960] = 6, + ACTIONS(3193), 1, + anon_sym_as, + ACTIONS(3195), 1, anon_sym_if, - anon_sym_COLON, - [107089] = 3, + ACTIONS(3199), 1, + anon_sym_and, + ACTIONS(3201), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3540), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3253), 4, + ACTIONS(3353), 2, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, + anon_sym_RBRACE, + [107981] = 6, + ACTIONS(3551), 1, + anon_sym_DOT, + ACTIONS(3555), 1, + anon_sym_COLON, + ACTIONS(3557), 1, + anon_sym_EQ, + ACTIONS(3559), 1, anon_sym_PIPE, - [107104] = 4, - ACTIONS(3542), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3553), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1985), 1, - aux_sym_for_in_clause_repeat1, + [108002] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3520), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [107121] = 6, - ACTIONS(3009), 1, - anon_sym_as, - ACTIONS(3011), 1, - anon_sym_if, - ACTIONS(3013), 1, + ACTIONS(3561), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [108015] = 6, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3177), 1, anon_sym_or, + ACTIONS(3187), 1, + anon_sym_as, + ACTIONS(3189), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3229), 2, - sym__newline, - anon_sym_SEMI, - [107142] = 2, - ACTIONS(3), 2, + ACTIONS(3516), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [108036] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3544), 6, - sym__newline, - anon_sym_SEMI, + ACTIONS(3565), 1, + anon_sym_BSLASH, + ACTIONS(3563), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [108053] = 7, + ACTIONS(3567), 1, anon_sym_DOT, + ACTIONS(3569), 1, + anon_sym_COMMA, + ACTIONS(3571), 1, anon_sym_COLON, - anon_sym_EQ, + ACTIONS(3573), 1, + anon_sym_RBRACK, + ACTIONS(3575), 1, anon_sym_PIPE, - [107155] = 4, - ACTIONS(3546), 1, - anon_sym_COMMA, - STATE(1918), 1, - aux_sym_for_in_clause_repeat1, + STATE(2448), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3520), 4, + [108076] = 6, + ACTIONS(3230), 1, + anon_sym_and, + ACTIONS(3232), 1, + anon_sym_or, + ACTIONS(3238), 1, + anon_sym_as, + ACTIONS(3240), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [107172] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3548), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107185] = 4, - ACTIONS(3550), 1, + ACTIONS(3577), 2, anon_sym_COMMA, - STATE(1920), 1, + anon_sym_RBRACK, + [108097] = 4, + ACTIONS(3581), 1, + anon_sym_COMMA, + STATE(1918), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3524), 4, + ACTIONS(3579), 4, + anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [107202] = 4, - ACTIONS(3552), 1, + [108114] = 4, + ACTIONS(3585), 1, anon_sym_COMMA, - STATE(1996), 1, + STATE(1918), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3524), 4, + ACTIONS(3583), 4, + anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [107219] = 7, - ACTIONS(3500), 1, - anon_sym_DOT, - ACTIONS(3504), 1, - anon_sym_COLON, - ACTIONS(3508), 1, - anon_sym_PIPE, - ACTIONS(3554), 1, + [108131] = 6, + ACTIONS(3175), 1, + anon_sym_and, + ACTIONS(3177), 1, + anon_sym_or, + ACTIONS(3187), 1, + anon_sym_as, + ACTIONS(3189), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3588), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3556), 1, - anon_sym_RBRACK, - STATE(2314), 1, - aux_sym_type_parameter_repeat1, + [108152] = 6, + ACTIONS(3193), 1, + anon_sym_as, + ACTIONS(3195), 1, + anon_sym_if, + ACTIONS(3199), 1, + anon_sym_and, + ACTIONS(3201), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3501), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [108173] = 4, + ACTIONS(3505), 1, + anon_sym_PIPE, + STATE(1892), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107242] = 3, + ACTIONS(3590), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [108190] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3558), 2, + ACTIONS(3592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3423), 4, + ACTIONS(3371), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [107257] = 4, - ACTIONS(3560), 1, - anon_sym_COMMA, - STATE(1920), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_RBRACE, + [108205] = 6, + ACTIONS(3230), 1, + anon_sym_and, + ACTIONS(3232), 1, + anon_sym_or, + ACTIONS(3238), 1, + anon_sym_as, + ACTIONS(3240), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3562), 4, + ACTIONS(3223), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [108226] = 6, + ACTIONS(3175), 1, + anon_sym_and, + ACTIONS(3177), 1, + anon_sym_or, + ACTIONS(3187), 1, + anon_sym_as, + ACTIONS(3189), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [107274] = 7, - ACTIONS(3564), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3594), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3566), 1, + [108247] = 6, + ACTIONS(3175), 1, + anon_sym_and, + ACTIONS(3177), 1, + anon_sym_or, + ACTIONS(3187), 1, anon_sym_as, - ACTIONS(3568), 1, + ACTIONS(3189), 1, anon_sym_if, - ACTIONS(3570), 1, - anon_sym_COLON, - STATE(2000), 1, - aux_sym_case_clause_repeat1, - STATE(2692), 1, - sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107297] = 4, - ACTIONS(3572), 1, + ACTIONS(3596), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1920), 1, - aux_sym_for_in_clause_repeat1, + [108268] = 3, + STATE(1892), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3575), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [107314] = 6, - ACTIONS(3206), 1, + ACTIONS(3598), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3208), 1, anon_sym_if, - ACTIONS(3210), 1, - anon_sym_and, - ACTIONS(3212), 1, - anon_sym_or, + anon_sym_COLON, + anon_sym_PIPE, + [108283] = 4, + ACTIONS(3600), 1, + anon_sym_PIPE, + STATE(1927), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3494), 2, + ACTIONS(3598), 4, anon_sym_COMMA, - anon_sym_RBRACK, - [107335] = 6, - ACTIONS(3172), 1, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [108300] = 6, + ACTIONS(3363), 1, + anon_sym_DOT, + ACTIONS(3603), 1, + sym_identifier, + STATE(2126), 1, + aux_sym_import_prefix_repeat1, + STATE(2350), 1, + sym_import_prefix, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2771), 2, + sym_relative_import, + sym_dotted_name, + [108321] = 6, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3174), 1, + ACTIONS(3177), 1, anon_sym_or, - ACTIONS(3176), 1, + ACTIONS(3187), 1, anon_sym_as, - ACTIONS(3178), 1, + ACTIONS(3189), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3577), 2, + ACTIONS(3605), 2, anon_sym_RPAREN, anon_sym_COMMA, - [107356] = 4, - ACTIONS(3579), 1, - anon_sym_DOT, - STATE(1995), 1, - aux_sym_dotted_name_repeat1, + [108342] = 6, + ACTIONS(3230), 1, + anon_sym_and, + ACTIONS(3232), 1, + anon_sym_or, + ACTIONS(3238), 1, + anon_sym_as, + ACTIONS(3240), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3237), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(3501), 2, anon_sym_COMMA, - anon_sym_as, - [107373] = 2, + anon_sym_RBRACK, + [108363] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3201), 6, + ACTIONS(3212), 6, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [107386] = 4, - ACTIONS(3538), 1, - anon_sym_PIPE, - STATE(1907), 1, - aux_sym_union_pattern_repeat1, + [108376] = 6, + ACTIONS(3230), 1, + anon_sym_and, + ACTIONS(3232), 1, + anon_sym_or, + ACTIONS(3238), 1, + anon_sym_as, + ACTIONS(3240), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3581), 4, + ACTIONS(1434), 2, anon_sym_COMMA, + anon_sym_RBRACK, + [108397] = 6, + ACTIONS(3193), 1, anon_sym_as, + ACTIONS(3195), 1, anon_sym_if, + ACTIONS(3199), 1, + anon_sym_and, + ACTIONS(3201), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3588), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [108418] = 7, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3571), 1, anon_sym_COLON, - [107403] = 4, - ACTIONS(3583), 1, + ACTIONS(3575), 1, + anon_sym_PIPE, + ACTIONS(3607), 1, anon_sym_COMMA, - STATE(1926), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3609), 1, + anon_sym_RBRACK, + STATE(2278), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3235), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [107420] = 3, + [108441] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3586), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3423), 4, + ACTIONS(3561), 6, + anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [107435] = 6, - ACTIONS(3161), 1, + [108454] = 6, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3177), 1, anon_sym_or, - ACTIONS(3165), 1, + ACTIONS(3187), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(3189), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3235), 2, + ACTIONS(3225), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [107456] = 2, + [108475] = 4, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3588), 6, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(3039), 4, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107469] = 6, - ACTIONS(3182), 1, + [108492] = 6, + ACTIONS(3002), 1, anon_sym_as, - ACTIONS(3184), 1, + ACTIONS(3004), 1, anon_sym_if, - ACTIONS(3188), 1, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3190), 1, + ACTIONS(3008), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3577), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [107490] = 3, + ACTIONS(3611), 2, + sym__newline, + anon_sym_SEMI, + [108513] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3590), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3423), 4, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(3512), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RBRACE, - [107505] = 2, + [108526] = 6, + ACTIONS(3179), 1, + anon_sym_as, + ACTIONS(3181), 1, + anon_sym_if, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3588), 6, - anon_sym_DOT, - anon_sym_RPAREN, + ACTIONS(3613), 2, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107518] = 4, + [108547] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3594), 1, + ACTIONS(3617), 1, anon_sym_BSLASH, - ACTIONS(3592), 5, + ACTIONS(3615), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [107535] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, + [108564] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3621), 1, + anon_sym_BSLASH, + ACTIONS(3619), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [108581] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3625), 1, + anon_sym_BSLASH, + ACTIONS(3623), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [108598] = 4, + ACTIONS(3627), 1, + anon_sym_COMMA, + STATE(1952), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3629), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [108615] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3631), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3286), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3167), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [108630] = 4, + ACTIONS(3633), 1, + anon_sym_COMMA, + STATE(1993), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3629), 4, + anon_sym_RPAREN, anon_sym_if, + anon_sym_async, + anon_sym_for, + [108647] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3596), 2, + ACTIONS(3536), 6, + anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - [107556] = 4, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, + anon_sym_EQ, + anon_sym_PIPE, + [108660] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 4, + ACTIONS(3635), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3286), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_PIPE, + [108675] = 4, + ACTIONS(3637), 1, + anon_sym_COMMA, + STATE(1954), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3639), 4, anon_sym_if, - anon_sym_COLON, - [107573] = 2, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [108692] = 4, + ACTIONS(3641), 1, + anon_sym_COMMA, + STATE(1893), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3598), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(1284), 4, anon_sym_COLON, anon_sym_EQ, - anon_sym_PIPE, - [107586] = 5, - ACTIONS(3602), 1, + anon_sym_RBRACE, + sym_type_conversion, + [108709] = 7, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3604), 1, + ACTIONS(3571), 1, anon_sym_COLON, - ACTIONS(3606), 1, + ACTIONS(3575), 1, anon_sym_PIPE, + ACTIONS(3643), 1, + anon_sym_COMMA, + ACTIONS(3645), 1, + anon_sym_RBRACK, + STATE(2319), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3600), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_EQ, - [107605] = 4, - ACTIONS(3608), 1, - anon_sym_DOT, - STATE(1938), 1, - aux_sym_dotted_name_repeat1, + [108732] = 4, + ACTIONS(3647), 1, + anon_sym_COMMA, + STATE(1955), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3201), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(3649), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [108749] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3651), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3371), 4, anon_sym_COMMA, anon_sym_as, - [107622] = 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [108764] = 4, + ACTIONS(3653), 1, + anon_sym_COMMA, + STATE(1955), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3579), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [108781] = 4, + ACTIONS(3655), 1, + anon_sym_COMMA, + STATE(1955), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3583), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [108798] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3611), 6, + ACTIONS(1769), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107635] = 2, + [108811] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3613), 6, + ACTIONS(3658), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107648] = 2, + [108824] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2975), 6, + ACTIONS(3660), 6, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107661] = 2, + [108837] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3615), 6, + ACTIONS(3212), 6, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107674] = 6, - ACTIONS(3182), 1, anon_sym_as, - ACTIONS(3184), 1, - anon_sym_if, - ACTIONS(3188), 1, - anon_sym_and, - ACTIONS(3190), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3342), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [107695] = 6, - ACTIONS(3617), 1, - anon_sym_DOT, - ACTIONS(3621), 1, - anon_sym_COLON, - ACTIONS(3623), 1, - anon_sym_EQ, - ACTIONS(3625), 1, anon_sym_PIPE, + anon_sym_RBRACE, + [108850] = 3, + ACTIONS(3662), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3619), 2, - anon_sym_RPAREN, + ACTIONS(3286), 5, anon_sym_COMMA, - [107716] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, anon_sym_as, - ACTIONS(3167), 1, anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3627), 2, - anon_sym_COMMA, anon_sym_COLON, - [107737] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, + anon_sym_PIPE, + [108865] = 7, + ACTIONS(3664), 1, + anon_sym_COMMA, + ACTIONS(3666), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(3668), 1, anon_sym_if, + ACTIONS(3670), 1, + anon_sym_COLON, + STATE(2089), 1, + aux_sym_case_clause_repeat1, + STATE(2743), 1, + sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3498), 2, - anon_sym_COMMA, - anon_sym_COLON, - [107758] = 2, + [108888] = 4, + ACTIONS(3505), 1, + anon_sym_PIPE, + STATE(1892), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3615), 6, - anon_sym_DOT, - anon_sym_RPAREN, + ACTIONS(3672), 4, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107771] = 6, - ACTIONS(3206), 1, + [108905] = 6, + ACTIONS(3179), 1, anon_sym_as, - ACTIONS(3208), 1, + ACTIONS(3181), 1, anon_sym_if, - ACTIONS(3210), 1, + ACTIONS(3183), 1, anon_sym_and, - ACTIONS(3212), 1, + ACTIONS(3185), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3629), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [107792] = 7, - ACTIONS(3500), 1, - anon_sym_DOT, - ACTIONS(3504), 1, - anon_sym_COLON, - ACTIONS(3508), 1, - anon_sym_PIPE, - ACTIONS(3631), 1, + ACTIONS(3225), 2, anon_sym_COMMA, - ACTIONS(3633), 1, - anon_sym_RBRACK, - STATE(2324), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [107815] = 6, - ACTIONS(3602), 1, - anon_sym_DOT, - ACTIONS(3604), 1, anon_sym_COLON, - ACTIONS(3606), 1, - anon_sym_PIPE, - ACTIONS(3637), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3635), 2, - sym__newline, - anon_sym_SEMI, - [107836] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, + [108926] = 6, + ACTIONS(3193), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(3195), 1, anon_sym_if, + ACTIONS(3199), 1, + anon_sym_and, + ACTIONS(3201), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3639), 2, - anon_sym_COMMA, - anon_sym_COLON, - [107857] = 7, - ACTIONS(3500), 1, - anon_sym_DOT, - ACTIONS(3504), 1, - anon_sym_COLON, - ACTIONS(3508), 1, - anon_sym_PIPE, - ACTIONS(3641), 1, + ACTIONS(3674), 2, anon_sym_COMMA, - ACTIONS(3643), 1, - anon_sym_RBRACK, - STATE(2443), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [107880] = 6, - ACTIONS(3172), 1, + anon_sym_RBRACE, + [108947] = 6, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3174), 1, + ACTIONS(3177), 1, anon_sym_or, - ACTIONS(3176), 1, + ACTIONS(3187), 1, anon_sym_as, - ACTIONS(3178), 1, + ACTIONS(3189), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3229), 2, + ACTIONS(3674), 2, anon_sym_RPAREN, anon_sym_COMMA, - [107901] = 6, - ACTIONS(3206), 1, - anon_sym_as, - ACTIONS(3208), 1, - anon_sym_if, - ACTIONS(3210), 1, - anon_sym_and, - ACTIONS(3212), 1, - anon_sym_or, + [108968] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3645), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [107922] = 6, - ACTIONS(3172), 1, + ACTIONS(3510), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [108981] = 6, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3174), 1, + ACTIONS(3177), 1, anon_sym_or, - ACTIONS(3176), 1, + ACTIONS(3187), 1, anon_sym_as, - ACTIONS(3178), 1, + ACTIONS(3189), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3647), 2, + ACTIONS(3676), 2, anon_sym_RPAREN, anon_sym_COMMA, - [107943] = 4, - ACTIONS(3649), 1, + [109002] = 4, + ACTIONS(3678), 1, anon_sym_COMMA, - STATE(1962), 1, + STATE(1981), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3562), 4, - anon_sym_RPAREN, + ACTIONS(3639), 4, anon_sym_if, anon_sym_async, anon_sym_for, - [107960] = 6, - ACTIONS(3172), 1, - anon_sym_and, - ACTIONS(3174), 1, - anon_sym_or, - ACTIONS(3176), 1, - anon_sym_as, - ACTIONS(3178), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3651), 2, - anon_sym_RPAREN, + anon_sym_RBRACK, + [109019] = 4, + ACTIONS(3680), 1, anon_sym_COMMA, - [107981] = 2, + STATE(1986), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107994] = 2, + ACTIONS(3649), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [109036] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3544), 6, + ACTIONS(2986), 6, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [108007] = 2, + [109049] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3548), 6, - anon_sym_DOT, + ACTIONS(3682), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3371), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_as, anon_sym_PIPE, - [108020] = 6, - ACTIONS(3172), 1, + [109064] = 6, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3174), 1, + ACTIONS(3177), 1, anon_sym_or, - ACTIONS(3176), 1, + ACTIONS(3187), 1, anon_sym_as, - ACTIONS(3178), 1, + ACTIONS(3189), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3629), 2, + ACTIONS(3223), 2, anon_sym_RPAREN, anon_sym_COMMA, - [108041] = 4, - ACTIONS(3653), 1, - anon_sym_COMMA, - STATE(1962), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3575), 4, - anon_sym_RPAREN, + [109085] = 6, + ACTIONS(3002), 1, + anon_sym_as, + ACTIONS(3004), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - [108058] = 6, - ACTIONS(3172), 1, + ACTIONS(3006), 1, anon_sym_and, - ACTIONS(3174), 1, + ACTIONS(3008), 1, anon_sym_or, - ACTIONS(3176), 1, - anon_sym_as, - ACTIONS(3178), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3494), 2, - anon_sym_RPAREN, + ACTIONS(3223), 2, + sym__newline, + anon_sym_SEMI, + [109106] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3684), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3286), 4, anon_sym_COMMA, - [108079] = 2, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [109121] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3611), 6, + ACTIONS(3510), 6, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [108092] = 6, - ACTIONS(3182), 1, - anon_sym_as, - ACTIONS(3184), 1, - anon_sym_if, - ACTIONS(3188), 1, - anon_sym_and, - ACTIONS(3190), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3629), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [108113] = 4, - ACTIONS(3656), 1, + [109134] = 7, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3571), 1, + anon_sym_COLON, + ACTIONS(3575), 1, + anon_sym_PIPE, + ACTIONS(3686), 1, anon_sym_COMMA, - STATE(1975), 1, - aux_sym__patterns_repeat1, + ACTIONS(3688), 1, + anon_sym_RBRACK, + STATE(2333), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(971), 4, + [109157] = 6, + ACTIONS(3530), 1, + anon_sym_DOT, + ACTIONS(3532), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [108130] = 4, - ACTIONS(3660), 1, - anon_sym_AT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1967), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - ACTIONS(3658), 3, - anon_sym_async, - anon_sym_def, - anon_sym_class, - [108147] = 4, - ACTIONS(3538), 1, + ACTIONS(3534), 1, anon_sym_PIPE, - STATE(1907), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(3692), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3663), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [108164] = 6, - ACTIONS(3172), 1, - anon_sym_and, - ACTIONS(3174), 1, - anon_sym_or, - ACTIONS(3176), 1, - anon_sym_as, - ACTIONS(3178), 1, - anon_sym_if, + ACTIONS(3690), 2, + sym__newline, + anon_sym_SEMI, + [109178] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3665), 2, + ACTIONS(3512), 6, + anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, - [108185] = 6, - ACTIONS(3206), 1, - anon_sym_as, - ACTIONS(3208), 1, - anon_sym_if, - ACTIONS(3210), 1, - anon_sym_and, - ACTIONS(3212), 1, - anon_sym_or, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [109191] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1441), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [108206] = 2, + ACTIONS(2986), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [109204] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2975), 6, + ACTIONS(3561), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [108219] = 6, - ACTIONS(3206), 1, - anon_sym_as, - ACTIONS(3208), 1, - anon_sym_if, - ACTIONS(3210), 1, - anon_sym_and, - ACTIONS(3212), 1, - anon_sym_or, + [109217] = 4, + ACTIONS(3694), 1, + anon_sym_COMMA, + STATE(1986), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3229), 2, - anon_sym_COMMA, + ACTIONS(3579), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, - [108240] = 2, + [109234] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3615), 6, - sym__newline, - anon_sym_SEMI, + ACTIONS(1769), 6, anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [108253] = 2, + [109247] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3588), 6, - sym__newline, - anon_sym_SEMI, + ACTIONS(3658), 6, anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [108266] = 4, - ACTIONS(3667), 1, - anon_sym_COMMA, - STATE(1975), 1, - aux_sym__patterns_repeat1, + [109260] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2893), 4, + ACTIONS(3660), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [108283] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3672), 1, - anon_sym_BSLASH, - ACTIONS(3670), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [108300] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3676), 1, - anon_sym_BSLASH, - ACTIONS(3674), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [108317] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3680), 1, - anon_sym_BSLASH, - ACTIONS(3678), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [108334] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3684), 1, - anon_sym_BSLASH, - ACTIONS(3682), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [108351] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3686), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3253), 4, - anon_sym_COMMA, - anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [108366] = 6, - ACTIONS(3172), 1, - anon_sym_and, - ACTIONS(3174), 1, - anon_sym_or, - ACTIONS(3176), 1, + [109273] = 6, + ACTIONS(3179), 1, anon_sym_as, - ACTIONS(3178), 1, + ACTIONS(3181), 1, anon_sym_if, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3627), 2, - anon_sym_RPAREN, + ACTIONS(3520), 2, anon_sym_COMMA, - [108387] = 3, - STATE(1907), 1, - aux_sym_union_pattern_repeat1, + anon_sym_COLON, + [109294] = 4, + ACTIONS(3696), 1, + anon_sym_COMMA, + STATE(1986), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3688), 5, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(3583), 4, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [108402] = 4, - ACTIONS(3690), 1, - anon_sym_PIPE, - STATE(1983), 1, - aux_sym_union_pattern_repeat1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [109311] = 6, + ACTIONS(3179), 1, + anon_sym_as, + ACTIONS(3181), 1, + anon_sym_if, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3688), 4, + ACTIONS(3676), 2, anon_sym_COMMA, + anon_sym_COLON, + [109332] = 6, + ACTIONS(3002), 1, anon_sym_as, + ACTIONS(3004), 1, anon_sym_if, - anon_sym_COLON, - [108419] = 4, - ACTIONS(3693), 1, - anon_sym_COMMA, - STATE(1915), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(3006), 1, + anon_sym_and, + ACTIONS(3008), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3490), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [108436] = 4, - ACTIONS(3695), 1, + ACTIONS(3699), 2, + sym__newline, + anon_sym_SEMI, + [109353] = 4, + ACTIONS(3701), 1, anon_sym_COMMA, - STATE(1996), 1, - aux_sym_for_in_clause_repeat1, + STATE(1989), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3562), 4, + ACTIONS(2904), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [109370] = 6, + ACTIONS(3230), 1, + anon_sym_and, + ACTIONS(3232), 1, + anon_sym_or, + ACTIONS(3238), 1, + anon_sym_as, + ACTIONS(3240), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1424), 2, + anon_sym_COMMA, anon_sym_RBRACK, - [108453] = 4, + [109391] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3699), 1, + ACTIONS(3706), 1, anon_sym_BSLASH, - ACTIONS(3697), 5, + ACTIONS(3704), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [108470] = 3, + [109408] = 4, + ACTIONS(3708), 1, + anon_sym_COMMA, + STATE(1917), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3701), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3253), 4, + ACTIONS(3639), 4, anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [109425] = 4, + ACTIONS(3710), 1, anon_sym_COMMA, + STATE(1918), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3649), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [109442] = 6, + ACTIONS(3230), 1, + anon_sym_and, + ACTIONS(3232), 1, + anon_sym_or, + ACTIONS(3238), 1, anon_sym_as, - anon_sym_PIPE, - [108485] = 2, + ACTIONS(3240), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3201), 6, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(3588), 2, anon_sym_COMMA, - anon_sym_as, anon_sym_RBRACK, - anon_sym_PIPE, - [108498] = 2, + [109463] = 4, + ACTIONS(3714), 1, + anon_sym_AT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3611), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [108511] = 2, + STATE(1995), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + ACTIONS(3712), 3, + anon_sym_async, + anon_sym_def, + anon_sym_class, + [109480] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3201), 6, + ACTIONS(3212), 6, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [108524] = 6, - ACTIONS(3206), 1, - anon_sym_as, - ACTIONS(3208), 1, - anon_sym_if, - ACTIONS(3210), 1, + [109493] = 6, + ACTIONS(3230), 1, anon_sym_and, - ACTIONS(3212), 1, + ACTIONS(3232), 1, anon_sym_or, + ACTIONS(3238), 1, + anon_sym_as, + ACTIONS(3240), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3235), 2, + ACTIONS(3225), 2, anon_sym_COMMA, anon_sym_RBRACK, - [108545] = 2, + [109514] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3598), 6, + ACTIONS(3526), 6, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [108558] = 5, - ACTIONS(3617), 1, + [109527] = 5, + ACTIONS(3551), 1, anon_sym_DOT, - ACTIONS(3621), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3625), 1, + ACTIONS(3559), 1, anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3600), 3, + ACTIONS(3528), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [108577] = 2, + [109546] = 4, + ACTIONS(3717), 1, + anon_sym_COMMA, + STATE(1969), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3613), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [108590] = 4, - ACTIONS(3579), 1, - anon_sym_DOT, - STATE(1938), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(3629), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [109563] = 6, + ACTIONS(3719), 1, + anon_sym_LBRACE, + ACTIONS(3721), 1, + anon_sym_RBRACE, + ACTIONS(3723), 1, + aux_sym_format_specifier_token1, + STATE(2062), 1, + aux_sym_format_specifier_repeat1, + STATE(2273), 1, + sym_interpolation, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [109583] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3231), 4, + ACTIONS(3212), 5, sym__newline, anon_sym_SEMI, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, - [108607] = 4, - ACTIONS(3703), 1, - anon_sym_COMMA, - STATE(1996), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3575), 4, + [109595] = 6, + ACTIONS(3179), 1, + anon_sym_as, + ACTIONS(3181), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [108624] = 6, - ACTIONS(3172), 1, + ACTIONS(3183), 1, anon_sym_and, - ACTIONS(3174), 1, + ACTIONS(3185), 1, anon_sym_or, - ACTIONS(3176), 1, - anon_sym_as, - ACTIONS(3178), 1, - anon_sym_if, + ACTIONS(3725), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3639), 2, - anon_sym_RPAREN, + [109615] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3660), 5, + anon_sym_DOT, anon_sym_COMMA, - [108645] = 6, - ACTIONS(3706), 1, - anon_sym_LBRACE, - ACTIONS(3709), 1, - anon_sym_RBRACE, - ACTIONS(3711), 1, - aux_sym_format_specifier_token1, - STATE(1998), 1, - aux_sym_format_specifier_repeat1, - STATE(2244), 1, - sym_interpolation, - ACTIONS(5), 2, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [109627] = 4, + ACTIONS(3727), 1, + anon_sym_PIPE, + STATE(2031), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108665] = 5, - ACTIONS(3714), 1, + ACTIONS(3503), 3, anon_sym_COMMA, - ACTIONS(3716), 1, + anon_sym_as, anon_sym_RBRACE, - STATE(2463), 1, - aux_sym_dict_pattern_repeat1, + [109643] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3253), 2, + ACTIONS(3729), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108683] = 6, - ACTIONS(2602), 1, - anon_sym_COLON, - ACTIONS(3568), 1, - anon_sym_if, - ACTIONS(3718), 1, - anon_sym_COMMA, - STATE(2215), 1, - aux_sym_case_clause_repeat1, - STATE(2740), 1, - sym_if_clause, + [109655] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108703] = 2, + ACTIONS(3731), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [109667] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3598), 5, + ACTIONS(2986), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [108715] = 5, - ACTIONS(3500), 1, - anon_sym_DOT, - ACTIONS(3504), 1, - anon_sym_COLON, - ACTIONS(3508), 1, - anon_sym_PIPE, + [109679] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3600), 2, + ACTIONS(3526), 5, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_COLON, anon_sym_RBRACK, - [108733] = 2, + anon_sym_PIPE, + [109691] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3613), 5, + ACTIONS(3536), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [108745] = 6, - ACTIONS(3720), 1, - anon_sym_LBRACE, - ACTIONS(3722), 1, - anon_sym_RBRACE, - ACTIONS(3724), 1, - aux_sym_format_specifier_token1, - STATE(1998), 1, - aux_sym_format_specifier_repeat1, - STATE(2244), 1, - sym_interpolation, - ACTIONS(5), 2, + [109703] = 4, + ACTIONS(3733), 1, + anon_sym_COMMA, + STATE(2011), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108765] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, - anon_sym_as, - ACTIONS(3167), 1, - anon_sym_if, - ACTIONS(3726), 1, - anon_sym_else, + ACTIONS(3225), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + [109719] = 5, + ACTIONS(3468), 1, + sym_identifier, + STATE(2185), 1, + sym_dotted_name, + STATE(2388), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108785] = 5, - ACTIONS(3728), 1, + ACTIONS(3736), 2, + sym__newline, + anon_sym_SEMI, + [109737] = 5, + ACTIONS(3738), 1, anon_sym_COMMA, - ACTIONS(3730), 1, + ACTIONS(3740), 1, anon_sym_RBRACE, - STATE(2283), 1, + STATE(2289), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3253), 2, + ACTIONS(3286), 2, anon_sym_COLON, anon_sym_PIPE, - [108803] = 3, - ACTIONS(3732), 1, - anon_sym_LPAREN, + [109755] = 6, + ACTIONS(3179), 1, + anon_sym_as, + ACTIONS(3181), 1, + anon_sym_if, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3742), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3253), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, + [109775] = 6, + ACTIONS(3744), 1, + anon_sym_LBRACE, + ACTIONS(3747), 1, anon_sym_RBRACE, - [108817] = 2, + ACTIONS(3749), 1, + aux_sym_format_specifier_token1, + STATE(2015), 1, + aux_sym_format_specifier_repeat1, + STATE(2273), 1, + sym_interpolation, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [109795] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3734), 5, + ACTIONS(3512), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_RBRACK, - [108829] = 2, + anon_sym_PIPE, + [109807] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3588), 5, - anon_sym_DOT, + ACTIONS(3752), 5, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE, - [108841] = 2, + [109819] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3736), 5, + ACTIONS(3754), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [108853] = 2, + [109831] = 6, + ACTIONS(3002), 1, + anon_sym_as, + ACTIONS(3004), 1, + anon_sym_if, + ACTIONS(3006), 1, + anon_sym_and, + ACTIONS(3008), 1, + anon_sym_or, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [109851] = 3, + ACTIONS(3758), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3575), 5, + ACTIONS(3286), 4, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_as, anon_sym_RBRACK, - [108865] = 4, - ACTIONS(3738), 1, anon_sym_PIPE, - STATE(2056), 1, + [109865] = 4, + ACTIONS(3760), 1, + anon_sym_PIPE, + STATE(2036), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3536), 3, - anon_sym_RPAREN, + ACTIONS(3672), 3, anon_sym_COMMA, anon_sym_as, - [108881] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, - anon_sym_as, - ACTIONS(3167), 1, - anon_sym_if, - ACTIONS(3354), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [108901] = 4, - ACTIONS(3740), 1, + anon_sym_RBRACK, + [109881] = 4, + ACTIONS(3727), 1, anon_sym_PIPE, - STATE(2054), 1, + STATE(2005), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3581), 3, + ACTIONS(3590), 3, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACE, - [108917] = 3, - ACTIONS(3742), 1, - anon_sym_LPAREN, + [109897] = 6, + ACTIONS(3179), 1, + anon_sym_as, + ACTIONS(3181), 1, + anon_sym_if, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3762), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3253), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [108931] = 4, - ACTIONS(3744), 1, - anon_sym_PIPE, - STATE(2025), 1, - aux_sym_union_pattern_repeat1, + [109917] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3581), 3, + ACTIONS(3729), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - [108947] = 2, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACE, + [109929] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3611), 5, + ACTIONS(3510), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [108959] = 4, - ACTIONS(3740), 1, - anon_sym_PIPE, - STATE(2054), 1, - aux_sym_union_pattern_repeat1, + [109941] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3663), 3, + ACTIONS(3764), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACE, - [108975] = 2, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [109953] = 3, + STATE(2005), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3746), 5, + ACTIONS(3598), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, + anon_sym_PIPE, + anon_sym_RBRACE, + [109967] = 5, + ACTIONS(3551), 1, + anon_sym_DOT, + ACTIONS(3555), 1, anon_sym_COLON, + ACTIONS(3559), 1, anon_sym_PIPE, - [108987] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3748), 5, + ACTIONS(3553), 2, + anon_sym_RPAREN, anon_sym_COMMA, + [109985] = 6, + ACTIONS(3179), 1, anon_sym_as, + ACTIONS(3181), 1, anon_sym_if, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3375), 1, anon_sym_COLON, - anon_sym_PIPE, - [108999] = 6, - ACTIONS(3720), 1, - anon_sym_LBRACE, - ACTIONS(3750), 1, - anon_sym_RBRACE, - ACTIONS(3752), 1, - aux_sym_format_specifier_token1, - STATE(2004), 1, - aux_sym_format_specifier_repeat1, - STATE(2244), 1, - sym_interpolation, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109019] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, + [110005] = 6, + ACTIONS(3179), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(3181), 1, anon_sym_if, - ACTIONS(3754), 1, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3766), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109039] = 6, - ACTIONS(3472), 1, + [110025] = 4, + ACTIONS(3768), 1, + anon_sym_PIPE, + STATE(2031), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3598), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + [110041] = 5, + ACTIONS(3468), 1, sym_identifier, - ACTIONS(3756), 1, - anon_sym_LPAREN, - STATE(2099), 1, + STATE(2185), 1, sym_dotted_name, - STATE(2141), 1, + STATE(2388), 1, sym_aliased_import, - STATE(2527), 1, - sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109059] = 2, + ACTIONS(3736), 2, + sym__newline, + anon_sym_SEMI, + [110059] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3758), 5, + ACTIONS(3771), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109071] = 4, - ACTIONS(3744), 1, + [110071] = 5, + ACTIONS(3773), 1, + anon_sym_COMMA, + ACTIONS(3775), 1, + anon_sym_RBRACE, + STATE(2467), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3286), 2, + anon_sym_COLON, anon_sym_PIPE, - STATE(2034), 1, - aux_sym_union_pattern_repeat1, + [110089] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3536), 3, + ACTIONS(3777), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - [109087] = 2, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [110101] = 4, + ACTIONS(3760), 1, + anon_sym_PIPE, + STATE(2046), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3615), 5, - anon_sym_DOT, + ACTIONS(3503), 3, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_as, anon_sym_RBRACK, - anon_sym_PIPE, - [109099] = 2, + [110117] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3760), 5, + ACTIONS(3561), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [109111] = 2, + [110129] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3734), 5, + ACTIONS(3779), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [109123] = 2, + [110141] = 3, + ACTIONS(3781), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3575), 5, + ACTIONS(3286), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [109135] = 5, - ACTIONS(3762), 1, + anon_sym_as, + anon_sym_PIPE, + [110155] = 5, + ACTIONS(3783), 1, anon_sym_COMMA, - ACTIONS(3764), 1, + ACTIONS(3785), 1, anon_sym_RBRACE, - STATE(2323), 1, + STATE(2330), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3253), 2, + ACTIONS(3286), 2, anon_sym_COLON, anon_sym_PIPE, - [109153] = 2, + [110173] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3583), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [110185] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3766), 5, + ACTIONS(3787), 5, anon_sym_COMMA, anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - anon_sym_RBRACE, - [109165] = 4, - ACTIONS(3744), 1, + [110197] = 6, + ACTIONS(3553), 1, + anon_sym_COMMA, + ACTIONS(3789), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_EQ, + ACTIONS(3795), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110217] = 4, + ACTIONS(3760), 1, anon_sym_PIPE, - STATE(2025), 1, + STATE(2036), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3663), 3, + ACTIONS(3590), 3, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, - [109181] = 3, - STATE(2025), 1, + [110233] = 3, + STATE(2036), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3688), 4, + ACTIONS(3598), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [109195] = 4, - ACTIONS(3768), 1, + [110247] = 4, + ACTIONS(3797), 1, anon_sym_PIPE, - STATE(2034), 1, + STATE(2046), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3688), 3, + ACTIONS(3598), 3, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, - [109211] = 2, + [110263] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3736), 5, + ACTIONS(3754), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [109223] = 2, + [110275] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3201), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(3779), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - [109235] = 3, - STATE(2054), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [110287] = 4, + ACTIONS(3800), 1, + anon_sym_PIPE, + STATE(2069), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3688), 4, + ACTIONS(3672), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [109249] = 6, - ACTIONS(3161), 1, + [110303] = 6, + ACTIONS(3179), 1, + anon_sym_as, + ACTIONS(3181), 1, + anon_sym_if, + ACTIONS(3183), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3185), 1, anon_sym_or, - ACTIONS(3165), 1, + ACTIONS(3802), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110323] = 6, + ACTIONS(3179), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(3181), 1, anon_sym_if, - ACTIONS(3771), 1, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3804), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109269] = 6, - ACTIONS(3773), 1, - anon_sym_COLON, - ACTIONS(3775), 1, - anon_sym_EQ, - ACTIONS(3777), 1, - anon_sym_RBRACE, - ACTIONS(3779), 1, - sym_type_conversion, - STATE(2594), 1, - sym_format_specifier, + [110343] = 5, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3810), 1, + anon_sym_as, + STATE(2193), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109289] = 2, + ACTIONS(3806), 2, + sym__newline, + anon_sym_SEMI, + [110361] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3781), 5, + ACTIONS(3583), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [109301] = 4, - ACTIONS(3783), 1, - anon_sym_PIPE, - STATE(2041), 1, - aux_sym_union_pattern_repeat1, + anon_sym_async, + anon_sym_for, + [110373] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3688), 3, + ACTIONS(3812), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACE, - [109317] = 2, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [110385] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3786), 5, + ACTIONS(3814), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109329] = 2, + [110397] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2975), 5, - anon_sym_DOT, + ACTIONS(3816), 5, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE, - [109341] = 2, + [110409] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 5, + ACTIONS(1612), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [109353] = 2, + [110421] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3788), 5, + ACTIONS(3818), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109365] = 2, + [110433] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2975), 5, - anon_sym_DOT, + ACTIONS(3820), 5, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - [109377] = 2, + [110445] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3790), 5, + ACTIONS(3822), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109389] = 4, - ACTIONS(3738), 1, - anon_sym_PIPE, - STATE(2012), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3663), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [109405] = 5, - ACTIONS(3472), 1, - sym_identifier, - STATE(2241), 1, - sym_dotted_name, - STATE(2359), 1, - sym_aliased_import, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3792), 2, - sym__newline, - anon_sym_SEMI, - [109423] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, + [110457] = 6, + ACTIONS(3179), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(3181), 1, anon_sym_if, - ACTIONS(3794), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [109443] = 5, - ACTIONS(3472), 1, - sym_identifier, - STATE(2241), 1, - sym_dotted_name, - STATE(2359), 1, - sym_aliased_import, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3792), 2, - sym__newline, - anon_sym_SEMI, - [109461] = 6, - ACTIONS(1569), 1, - anon_sym_LBRACK, - ACTIONS(3796), 1, - anon_sym_LPAREN, - ACTIONS(3798), 1, - anon_sym_COLON, - STATE(2265), 1, - sym_type_parameter, - STATE(2639), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [109481] = 6, - ACTIONS(3161), 1, + ACTIONS(3183), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3185), 1, anon_sym_or, - ACTIONS(3165), 1, - anon_sym_as, - ACTIONS(3167), 1, - anon_sym_if, - ACTIONS(3800), 1, + ACTIONS(3824), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109501] = 4, - ACTIONS(3740), 1, - anon_sym_PIPE, - STATE(2041), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3536), 3, - anon_sym_COMMA, - anon_sym_as, + [110477] = 6, + ACTIONS(3719), 1, + anon_sym_LBRACE, + ACTIONS(3826), 1, anon_sym_RBRACE, - [109517] = 3, - STATE(2012), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3688), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [109531] = 4, - ACTIONS(3802), 1, - anon_sym_PIPE, - STATE(2056), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(3828), 1, + aux_sym_format_specifier_token1, + STATE(2015), 1, + aux_sym_format_specifier_repeat1, + STATE(2273), 1, + sym_interpolation, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [110497] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3688), 3, - anon_sym_RPAREN, + ACTIONS(3830), 5, anon_sym_COMMA, anon_sym_as, - [109547] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [110509] = 6, + ACTIONS(3179), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(3181), 1, anon_sym_if, - ACTIONS(3805), 1, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3832), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109567] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, + [110529] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3834), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3167), 1, anon_sym_if, - ACTIONS(3807), 1, - anon_sym_else, + anon_sym_COLON, + anon_sym_PIPE, + [110541] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109587] = 2, + ACTIONS(3836), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [110553] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3199), 5, + ACTIONS(3197), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [109599] = 2, + [110565] = 5, + ACTIONS(3838), 1, + anon_sym_COMMA, + ACTIONS(3840), 1, + anon_sym_RBRACE, + STATE(2479), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3809), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + ACTIONS(3286), 2, anon_sym_COLON, anon_sym_PIPE, - [109611] = 5, - ACTIONS(3617), 1, - anon_sym_DOT, - ACTIONS(3621), 1, - anon_sym_COLON, - ACTIONS(3625), 1, + [110583] = 4, + ACTIONS(3800), 1, anon_sym_PIPE, + STATE(2099), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3619), 2, + ACTIONS(3503), 3, anon_sym_RPAREN, anon_sym_COMMA, - [109629] = 2, + anon_sym_as, + [110599] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3811), 5, + ACTIONS(3842), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109641] = 2, + [110611] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3813), 5, + ACTIONS(3844), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109653] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3815), 5, - anon_sym_COMMA, + [110623] = 6, + ACTIONS(3179), 1, anon_sym_as, + ACTIONS(3181), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [109665] = 6, - ACTIONS(3161), 1, + ACTIONS(3183), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3185), 1, anon_sym_or, - ACTIONS(3165), 1, - anon_sym_as, - ACTIONS(3167), 1, - anon_sym_if, - ACTIONS(3817), 1, + ACTIONS(3846), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109685] = 2, + [110643] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3734), 5, - anon_sym_RPAREN, + ACTIONS(1769), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [109697] = 2, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [110655] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3819), 5, + ACTIONS(3848), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109709] = 5, - ACTIONS(3500), 1, - anon_sym_DOT, - ACTIONS(3504), 1, - anon_sym_COLON, - ACTIONS(3508), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3821), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [109727] = 2, + [110667] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3575), 5, - anon_sym_RPAREN, + ACTIONS(3850), 5, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - [109739] = 2, + anon_sym_COLON, + anon_sym_PIPE, + [110679] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3823), 5, + ACTIONS(3852), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109751] = 2, + [110691] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3598), 5, + ACTIONS(3658), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, + anon_sym_RBRACK, anon_sym_PIPE, - [109763] = 2, + [110703] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2902), 5, + ACTIONS(3660), 5, + anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [109775] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, - anon_sym_as, - ACTIONS(3167), 1, - anon_sym_if, - ACTIONS(3825), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [110715] = 5, + ACTIONS(3567), 1, + anon_sym_DOT, + ACTIONS(3571), 1, anon_sym_COLON, + ACTIONS(3575), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109795] = 5, - ACTIONS(3827), 1, - anon_sym_DOT, - ACTIONS(3829), 1, - anon_sym_COLON, - ACTIONS(3831), 1, - anon_sym_PIPE, + ACTIONS(3854), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [110733] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3600), 2, + ACTIONS(3856), 5, anon_sym_COMMA, - anon_sym_EQ, - [109813] = 5, - ACTIONS(3602), 1, - anon_sym_DOT, - ACTIONS(3604), 1, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - ACTIONS(3606), 1, anon_sym_PIPE, + [110745] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3833), 2, - sym__newline, - anon_sym_SEMI, - [109831] = 2, + ACTIONS(2915), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [110757] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3835), 5, + ACTIONS(3526), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [109843] = 2, + [110769] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3837), 5, + ACTIONS(3858), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109855] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, + [110781] = 6, + ACTIONS(3179), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(3181), 1, anon_sym_if, - ACTIONS(3839), 1, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3860), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109875] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, + [110801] = 6, + ACTIONS(3179), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(3181), 1, anon_sym_if, - ACTIONS(3841), 1, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3862), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109895] = 6, - ACTIONS(1569), 1, + [110821] = 6, + ACTIONS(1610), 1, anon_sym_LBRACK, - ACTIONS(3796), 1, + ACTIONS(3864), 1, anon_sym_LPAREN, - ACTIONS(3843), 1, + ACTIONS(3866), 1, anon_sym_COLON, - STATE(2444), 1, + STATE(2446), 1, sym_type_parameter, - STATE(2678), 1, + STATE(2682), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109915] = 2, + [110841] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3845), 5, + ACTIONS(3779), 5, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [109927] = 2, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [110853] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3847), 5, + ACTIONS(3583), 5, anon_sym_COMMA, - anon_sym_as, anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [110865] = 6, + ACTIONS(2613), 1, anon_sym_COLON, - anon_sym_PIPE, - [109939] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3849), 5, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(3668), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [109951] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3851), 5, + ACTIONS(3868), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [109963] = 2, + STATE(2214), 1, + aux_sym_case_clause_repeat1, + STATE(2752), 1, + sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3613), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [109975] = 2, + [110885] = 5, + ACTIONS(3468), 1, + sym_identifier, + STATE(2185), 1, + sym_dotted_name, + STATE(2388), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3736), 5, - anon_sym_COMMA, + ACTIONS(3870), 2, + sym__newline, + anon_sym_SEMI, + [110903] = 6, + ACTIONS(3179), 1, + anon_sym_as, + ACTIONS(3181), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [109987] = 2, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3872), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3853), 5, + [110923] = 4, + ACTIONS(3874), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [109999] = 2, + STATE(2011), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 5, + ACTIONS(1284), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + [110939] = 5, + ACTIONS(3789), 1, anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(3791), 1, anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(3795), 1, anon_sym_PIPE, - [110011] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, - anon_sym_as, - ACTIONS(3167), 1, - anon_sym_if, - ACTIONS(3855), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110031] = 2, + ACTIONS(3528), 2, + anon_sym_COMMA, + anon_sym_EQ, + [110957] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2904), 5, + ACTIONS(2913), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [110043] = 5, - ACTIONS(3857), 1, - anon_sym_COMMA, - ACTIONS(3859), 1, - anon_sym_RBRACE, - STATE(2478), 1, - aux_sym_dict_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3253), 2, + [110969] = 5, + ACTIONS(3530), 1, + anon_sym_DOT, + ACTIONS(3532), 1, anon_sym_COLON, + ACTIONS(3534), 1, anon_sym_PIPE, - [110061] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3544), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [110073] = 2, + ACTIONS(3876), 2, + sym__newline, + anon_sym_SEMI, + [110987] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 5, + ACTIONS(3536), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [110085] = 2, + [110999] = 4, + ACTIONS(3800), 1, + anon_sym_PIPE, + STATE(2069), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3548), 5, - anon_sym_DOT, + ACTIONS(3590), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [110097] = 2, + anon_sym_as, + [111015] = 3, + STATE(2069), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3544), 5, - anon_sym_DOT, + ACTIONS(3598), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_as, anon_sym_PIPE, - [110109] = 2, + [111029] = 4, + ACTIONS(3878), 1, + anon_sym_PIPE, + STATE(2099), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3548), 5, - anon_sym_DOT, + ACTIONS(3598), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [110121] = 2, + anon_sym_as, + [111045] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2893), 5, + ACTIONS(2904), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [110133] = 6, - ACTIONS(3009), 1, + [111057] = 6, + ACTIONS(3179), 1, anon_sym_as, - ACTIONS(3011), 1, + ACTIONS(3181), 1, anon_sym_if, - ACTIONS(3013), 1, + ACTIONS(3183), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3185), 1, anon_sym_or, - ACTIONS(3861), 1, - sym__newline, + ACTIONS(3881), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110153] = 5, - ACTIONS(3865), 1, - anon_sym_COMMA, - ACTIONS(3867), 1, - anon_sym_as, - STATE(2172), 1, - aux_sym__import_list_repeat1, + [111077] = 6, + ACTIONS(3468), 1, + sym_identifier, + ACTIONS(3883), 1, + anon_sym_LPAREN, + STATE(2052), 1, + sym_dotted_name, + STATE(2197), 1, + sym_aliased_import, + STATE(2528), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3863), 2, - sym__newline, - anon_sym_SEMI, - [110171] = 4, - ACTIONS(3738), 1, + [111097] = 3, + ACTIONS(3885), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3286), 4, + anon_sym_COMMA, + anon_sym_as, anon_sym_PIPE, - STATE(2012), 1, + anon_sym_RBRACE, + [111111] = 4, + ACTIONS(3727), 1, + anon_sym_PIPE, + STATE(2005), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3581), 3, - anon_sym_RPAREN, + ACTIONS(3672), 3, anon_sym_COMMA, anon_sym_as, - [110187] = 2, + anon_sym_RBRACE, + [111127] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2986), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [111139] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3766), 5, + ACTIONS(3887), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [110199] = 5, - ACTIONS(3472), 1, - sym_identifier, - STATE(2241), 1, - sym_dotted_name, - STATE(2359), 1, - sym_aliased_import, + [111151] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3869), 2, - sym__newline, - anon_sym_SEMI, - [110217] = 6, - ACTIONS(3773), 1, + ACTIONS(3754), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [111163] = 6, + ACTIONS(1610), 1, + anon_sym_LBRACK, + ACTIONS(3864), 1, + anon_sym_LPAREN, + ACTIONS(3889), 1, anon_sym_COLON, - ACTIONS(3871), 1, + STATE(2300), 1, + sym_type_parameter, + STATE(2770), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111183] = 6, + ACTIONS(3891), 1, + anon_sym_COLON, + ACTIONS(3893), 1, anon_sym_EQ, - ACTIONS(3873), 1, + ACTIONS(3895), 1, anon_sym_RBRACE, - ACTIONS(3875), 1, + ACTIONS(3897), 1, sym_type_conversion, - STATE(2742), 1, + STATE(2640), 1, sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110237] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, + [111203] = 6, + ACTIONS(3179), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(3181), 1, anon_sym_if, - ACTIONS(3877), 1, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3899), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110257] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, + [111223] = 6, + ACTIONS(3179), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(3181), 1, anon_sym_if, - ACTIONS(3879), 1, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3901), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110277] = 2, + [111243] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3881), 5, + ACTIONS(1769), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [110289] = 4, - ACTIONS(3883), 1, - anon_sym_COMMA, - STATE(2108), 1, - aux_sym_assert_statement_repeat1, + [111255] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1273), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - [110305] = 4, - ACTIONS(3885), 1, + ACTIONS(3658), 5, + anon_sym_DOT, anon_sym_COMMA, - STATE(2108), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3235), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - [110321] = 2, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [111267] = 6, + ACTIONS(3891), 1, + anon_sym_COLON, + ACTIONS(3903), 1, + anon_sym_EQ, + ACTIONS(3905), 1, + anon_sym_RBRACE, + ACTIONS(3907), 1, + sym_type_conversion, + STATE(2778), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3888), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [110333] = 6, - ACTIONS(3619), 1, - anon_sym_COMMA, - ACTIONS(3827), 1, + [111287] = 5, + ACTIONS(3567), 1, anon_sym_DOT, - ACTIONS(3829), 1, + ACTIONS(3571), 1, anon_sym_COLON, - ACTIONS(3831), 1, + ACTIONS(3575), 1, anon_sym_PIPE, - ACTIONS(3890), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110353] = 3, - ACTIONS(3892), 1, - anon_sym_LPAREN, + ACTIONS(3528), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [111305] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3253), 4, - anon_sym_RPAREN, + ACTIONS(3752), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110367] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, - anon_sym_as, - ACTIONS(3167), 1, - anon_sym_if, - ACTIONS(3894), 1, + anon_sym_RBRACE, + [111316] = 5, + ACTIONS(3891), 1, anon_sym_COLON, + ACTIONS(3909), 1, + anon_sym_RBRACE, + ACTIONS(3911), 1, + sym_type_conversion, + STATE(2663), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110387] = 5, - ACTIONS(3863), 1, - anon_sym_RPAREN, - ACTIONS(3896), 1, - anon_sym_COMMA, - ACTIONS(3898), 1, - anon_sym_as, - STATE(2395), 1, - aux_sym__import_list_repeat1, + [111333] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110404] = 4, - ACTIONS(3902), 1, + ACTIONS(3672), 4, anon_sym_COMMA, - STATE(2195), 1, - aux_sym_print_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3900), 2, - sym__newline, - anon_sym_SEMI, - [110419] = 2, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [111344] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3845), 4, + ACTIONS(3752), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110430] = 5, - ACTIONS(3904), 1, - anon_sym_RPAREN, - ACTIONS(3906), 1, - anon_sym_COMMA, - ACTIONS(3908), 1, - anon_sym_as, - STATE(2288), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [110447] = 2, + [111355] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3766), 4, + ACTIONS(3822), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [110458] = 2, + anon_sym_RBRACE, + [111366] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3748), 4, + ACTIONS(3836), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [110469] = 4, - ACTIONS(3912), 1, - anon_sym_COMMA, - STATE(2119), 1, - aux_sym__import_list_repeat1, + [111377] = 5, + ACTIONS(3913), 1, + anon_sym_case, + ACTIONS(3916), 1, + sym__dedent, + STATE(2122), 1, + aux_sym__match_block_repeat1, + STATE(2578), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 2, - sym__newline, - anon_sym_SEMI, - [110484] = 2, + [111394] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3888), 4, + ACTIONS(3844), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [110495] = 4, - ACTIONS(3915), 1, - anon_sym_COMMA, - STATE(2108), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1433), 2, - sym__newline, - anon_sym_SEMI, - [110510] = 2, + [111405] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3758), 4, + ACTIONS(3887), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [110521] = 5, - ACTIONS(3917), 1, - sym_identifier, - STATE(2113), 1, - sym_dotted_name, - STATE(2482), 1, - sym_aliased_import, - STATE(2619), 1, - sym__import_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [110538] = 2, + [111416] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3760), 4, + ACTIONS(3771), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [110549] = 2, + [111427] = 4, + ACTIONS(3920), 1, + anon_sym_DOT, + STATE(2217), 1, + aux_sym_import_prefix_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3918), 2, + anon_sym_import, + sym_identifier, + [111442] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3781), 4, + ACTIONS(3777), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [110560] = 2, + [111453] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3786), 4, + ACTIONS(3787), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [110571] = 4, - ACTIONS(3921), 1, + [111464] = 4, + ACTIONS(3924), 1, anon_sym_COMMA, - STATE(2230), 1, - aux_sym_print_statement_repeat1, + STATE(2171), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3919), 2, + ACTIONS(3922), 2, sym__newline, anon_sym_SEMI, - [110586] = 2, + [111479] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3788), 4, + ACTIONS(3812), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [110597] = 2, + [111490] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3881), 4, + ACTIONS(3814), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [110608] = 5, - ACTIONS(1569), 1, - anon_sym_LBRACK, - ACTIONS(3923), 1, - anon_sym_LPAREN, - STATE(2493), 1, - sym_type_parameter, - STATE(2589), 1, - sym_parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [110625] = 2, + anon_sym_RBRACE, + [111501] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3853), 4, - anon_sym_RPAREN, + ACTIONS(3818), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110636] = 4, - ACTIONS(3927), 1, - anon_sym_COMMA, - STATE(2139), 1, - aux_sym_global_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3925), 2, - sym__newline, - anon_sym_SEMI, - [110651] = 5, - ACTIONS(3773), 1, - anon_sym_COLON, - ACTIONS(3929), 1, anon_sym_RBRACE, - ACTIONS(3931), 1, - sym_type_conversion, - STATE(2654), 1, - sym_format_specifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [110668] = 2, + [111512] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3815), 4, - anon_sym_RPAREN, + ACTIONS(3820), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110679] = 2, + anon_sym_RBRACE, + [111523] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3851), 4, + ACTIONS(3842), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [110690] = 4, - ACTIONS(3927), 1, - anon_sym_COMMA, - STATE(2163), 1, - aux_sym_global_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3933), 2, - sym__newline, - anon_sym_SEMI, - [110705] = 5, - ACTIONS(3935), 1, - anon_sym_case, - ACTIONS(3937), 1, - sym__dedent, - STATE(2162), 1, - aux_sym__match_block_repeat1, - STATE(2503), 1, - sym_case_clause, + [111534] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110722] = 5, - ACTIONS(3917), 1, + ACTIONS(3844), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [111545] = 5, + ACTIONS(3468), 1, sym_identifier, - STATE(2113), 1, + STATE(2052), 1, sym_dotted_name, - STATE(2482), 1, + STATE(2197), 1, sym_aliased_import, - STATE(2656), 1, + STATE(2595), 1, sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110739] = 4, - ACTIONS(3927), 1, + [111562] = 4, + ACTIONS(3928), 1, anon_sym_COMMA, - STATE(2163), 1, - aux_sym_global_statement_repeat1, + STATE(2143), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3939), 2, + ACTIONS(3926), 2, sym__newline, anon_sym_SEMI, - [110754] = 2, + [111577] = 5, + ACTIONS(3930), 1, + sym_identifier, + STATE(2239), 1, + sym_dotted_name, + STATE(2486), 1, + sym_aliased_import, + STATE(2716), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3845), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110765] = 4, - ACTIONS(3865), 1, - anon_sym_COMMA, - STATE(2212), 1, - aux_sym__import_list_repeat1, + [111594] = 5, + ACTIONS(3932), 1, + anon_sym_case, + ACTIONS(3934), 1, + sym__dedent, + STATE(2181), 1, + aux_sym__match_block_repeat1, + STATE(2578), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3863), 2, - sym__newline, - anon_sym_SEMI, - [110780] = 2, + [111611] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3881), 4, - anon_sym_RPAREN, + ACTIONS(3848), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110791] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3581), 4, + anon_sym_RBRACE, + [111622] = 5, + ACTIONS(3936), 1, + anon_sym_RPAREN, + ACTIONS(3938), 1, anon_sym_COMMA, + ACTIONS(3940), 1, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [110802] = 5, - ACTIONS(3472), 1, - sym_identifier, - STATE(2099), 1, - sym_dotted_name, - STATE(2141), 1, - sym_aliased_import, - STATE(2509), 1, - sym__import_list, + STATE(2284), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110819] = 5, - ACTIONS(3619), 1, + [111639] = 5, + ACTIONS(3940), 1, + anon_sym_as, + ACTIONS(3942), 1, + anon_sym_RPAREN, + ACTIONS(3944), 1, anon_sym_COMMA, - ACTIONS(3827), 1, - anon_sym_DOT, - ACTIONS(3829), 1, - anon_sym_COLON, - ACTIONS(3831), 1, - anon_sym_PIPE, + STATE(2474), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110836] = 4, - ACTIONS(3943), 1, - anon_sym_DOT, - STATE(2219), 1, - aux_sym_import_prefix_repeat1, + [111656] = 4, + ACTIONS(3948), 1, + anon_sym_COMMA, + STATE(2240), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3941), 2, - anon_sym_import, - sym_identifier, - [110851] = 2, + ACTIONS(3946), 2, + sym__newline, + anon_sym_SEMI, + [111671] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3790), 4, + ACTIONS(3887), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [110862] = 5, - ACTIONS(3869), 1, - anon_sym_RPAREN, - ACTIONS(3917), 1, - sym_identifier, - STATE(2286), 1, - sym_dotted_name, - STATE(2553), 1, - sym_aliased_import, + [111682] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110879] = 5, - ACTIONS(3908), 1, - anon_sym_as, - ACTIONS(3945), 1, + ACTIONS(3729), 4, anon_sym_RPAREN, - ACTIONS(3947), 1, anon_sym_COMMA, - STATE(2319), 1, - aux_sym_case_clause_repeat1, + anon_sym_as, + anon_sym_PIPE, + [111693] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110896] = 5, - ACTIONS(3949), 1, + ACTIONS(3731), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [111704] = 5, + ACTIONS(3950), 1, anon_sym_COMMA, - ACTIONS(3951), 1, + ACTIONS(3952), 1, anon_sym_as, - ACTIONS(3953), 1, + ACTIONS(3954), 1, anon_sym_RBRACK, - STATE(2321), 1, + STATE(2476), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110913] = 5, - ACTIONS(3955), 1, - anon_sym_case, + [111721] = 5, + ACTIONS(3940), 1, + anon_sym_as, + ACTIONS(3956), 1, + anon_sym_RPAREN, ACTIONS(3958), 1, - sym__dedent, - STATE(2151), 1, - aux_sym__match_block_repeat1, - STATE(2503), 1, - sym_case_clause, + anon_sym_COMMA, + STATE(2327), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110930] = 2, + [111738] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3835), 4, + ACTIONS(3752), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110941] = 2, + [111749] = 5, + ACTIONS(3952), 1, + anon_sym_as, + ACTIONS(3960), 1, + anon_sym_COMMA, + ACTIONS(3962), 1, + anon_sym_RBRACK, + STATE(2328), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3819), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [110952] = 2, + [111766] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3809), 4, + ACTIONS(3850), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [110963] = 2, + [111777] = 5, + ACTIONS(3952), 1, + anon_sym_as, + ACTIONS(3964), 1, + anon_sym_COMMA, + ACTIONS(3966), 1, + anon_sym_RBRACK, + STATE(2286), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3823), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [110974] = 2, + [111794] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3837), 4, + ACTIONS(3848), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [110985] = 2, + [111805] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3847), 4, + ACTIONS(3852), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [110996] = 2, + anon_sym_RBRACE, + [111816] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3849), 4, + ACTIONS(3858), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111007] = 2, + anon_sym_RBRACE, + [111827] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3811), 4, + ACTIONS(3818), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [111018] = 2, + [111838] = 5, + ACTIONS(3952), 1, + anon_sym_as, + ACTIONS(3968), 1, + anon_sym_COMMA, + ACTIONS(3970), 1, + anon_sym_RBRACK, + STATE(2454), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111855] = 5, + ACTIONS(1610), 1, + anon_sym_LBRACK, + ACTIONS(3972), 1, + anon_sym_LPAREN, + STATE(2514), 1, + sym_parameters, + STATE(2547), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3813), 4, + [111872] = 5, + ACTIONS(3553), 1, anon_sym_COMMA, - anon_sym_as, + ACTIONS(3789), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3795), 1, anon_sym_PIPE, - anon_sym_RBRACE, - [111029] = 5, - ACTIONS(3935), 1, - anon_sym_case, - ACTIONS(3960), 1, - sym__dedent, - STATE(2151), 1, - aux_sym__match_block_repeat1, - STATE(2503), 1, - sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111046] = 5, - ACTIONS(3935), 1, - anon_sym_case, - ACTIONS(3962), 1, - sym__dedent, - STATE(2151), 1, - aux_sym__match_block_repeat1, - STATE(2503), 1, - sym_case_clause, + [111889] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111063] = 4, - ACTIONS(3966), 1, + ACTIONS(3816), 4, anon_sym_COMMA, - STATE(2163), 1, - aux_sym_global_statement_repeat1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [111900] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3964), 2, - sym__newline, - anon_sym_SEMI, - [111078] = 5, - ACTIONS(3908), 1, + ACTIONS(3822), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [111911] = 5, + ACTIONS(3940), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3974), 1, anon_sym_RPAREN, - ACTIONS(3971), 1, + ACTIONS(3976), 1, anon_sym_COMMA, - STATE(2330), 1, + STATE(2334), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111095] = 2, + [111928] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3851), 4, + ACTIONS(3830), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111106] = 2, + [111939] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3823), 4, - anon_sym_RPAREN, + ACTIONS(3834), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [111117] = 2, + [111950] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3853), 4, + ACTIONS(3836), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111128] = 2, + [111961] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3888), 4, + ACTIONS(3856), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111139] = 5, - ACTIONS(3935), 1, - anon_sym_case, - ACTIONS(3973), 1, - sym__dedent, - STATE(2161), 1, - aux_sym__match_block_repeat1, - STATE(2503), 1, - sym_case_clause, + [111972] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111156] = 5, - ACTIONS(3908), 1, + ACTIONS(3856), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [111983] = 5, + ACTIONS(3940), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3978), 1, anon_sym_RPAREN, - ACTIONS(3977), 1, + ACTIONS(3980), 1, anon_sym_COMMA, - STATE(2279), 1, + STATE(2376), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111173] = 3, + [112000] = 3, + ACTIONS(3666), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3253), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3979), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [111186] = 4, - ACTIONS(3983), 1, + ACTIONS(3982), 3, anon_sym_COMMA, - STATE(2119), 1, - aux_sym__import_list_repeat1, + anon_sym_if, + anon_sym_COLON, + [112013] = 5, + ACTIONS(3932), 1, + anon_sym_case, + ACTIONS(3984), 1, + sym__dedent, + STATE(2122), 1, + aux_sym__match_block_repeat1, + STATE(2578), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3981), 2, - sym__newline, - anon_sym_SEMI, - [111201] = 2, + [112030] = 4, + ACTIONS(3988), 1, + anon_sym_COMMA, + STATE(2171), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3845), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [111212] = 5, - ACTIONS(3951), 1, + ACTIONS(3986), 2, + sym__newline, + anon_sym_SEMI, + [112045] = 5, + ACTIONS(3940), 1, anon_sym_as, - ACTIONS(3985), 1, + ACTIONS(3991), 1, + anon_sym_RPAREN, + ACTIONS(3993), 1, anon_sym_COMMA, - ACTIONS(3987), 1, - anon_sym_RBRACK, - STATE(2280), 1, + STATE(2485), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111229] = 2, + [112062] = 4, + ACTIONS(3997), 1, + anon_sym_COMMA, + STATE(2173), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3746), 4, - anon_sym_COMMA, + ACTIONS(3995), 2, + sym__newline, + anon_sym_SEMI, + [112077] = 5, + ACTIONS(3940), 1, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111240] = 2, + ACTIONS(4000), 1, + anon_sym_RPAREN, + ACTIONS(4002), 1, + anon_sym_COMMA, + STATE(2294), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3815), 4, + [112094] = 4, + ACTIONS(4006), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [111251] = 2, + STATE(2240), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3847), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [111262] = 2, + ACTIONS(4004), 2, + sym__newline, + anon_sym_SEMI, + [112109] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3849), 4, - anon_sym_RPAREN, + ACTIONS(3816), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111273] = 5, - ACTIONS(3908), 1, - anon_sym_as, - ACTIONS(3989), 1, - anon_sym_RPAREN, - ACTIONS(3991), 1, + anon_sym_RBRACE, + [112120] = 4, + ACTIONS(4008), 1, anon_sym_COMMA, - STATE(2441), 1, - aux_sym_case_clause_repeat1, + STATE(2011), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111290] = 2, + ACTIONS(1436), 2, + sym__newline, + anon_sym_SEMI, + [112135] = 5, + ACTIONS(3932), 1, + anon_sym_case, + ACTIONS(4010), 1, + sym__dedent, + STATE(2170), 1, + aux_sym__match_block_repeat1, + STATE(2578), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3748), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111301] = 2, + [112152] = 5, + ACTIONS(3870), 1, + anon_sym_RPAREN, + ACTIONS(3930), 1, + sym_identifier, + STATE(2295), 1, + sym_dotted_name, + STATE(2569), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3809), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [111312] = 2, + [112169] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3758), 4, + ACTIONS(3850), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111323] = 2, + [112180] = 5, + ACTIONS(3932), 1, + anon_sym_case, + ACTIONS(4012), 1, + sym__dedent, + STATE(2122), 1, + aux_sym__match_block_repeat1, + STATE(2578), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3760), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111334] = 2, + [112197] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3781), 4, + ACTIONS(4014), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111345] = 4, - ACTIONS(3314), 1, + anon_sym_if, + anon_sym_COLON, + [112208] = 4, + ACTIONS(3304), 1, anon_sym_COMMA, - STATE(2108), 1, + STATE(2011), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3993), 2, + ACTIONS(4016), 2, sym__newline, anon_sym_SEMI, - [111360] = 5, - ACTIONS(3908), 1, - anon_sym_as, - ACTIONS(3995), 1, - anon_sym_RPAREN, - ACTIONS(3997), 1, - anon_sym_COMMA, - STATE(2473), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111377] = 2, + [112223] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3786), 4, + ACTIONS(3852), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111388] = 5, - ACTIONS(3951), 1, + [112234] = 3, + ACTIONS(3810), 1, anon_sym_as, - ACTIONS(3999), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_RBRACK, - STATE(2475), 1, - aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111405] = 2, + ACTIONS(4018), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [112247] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3788), 4, + ACTIONS(3764), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111416] = 2, + [112258] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3853), 4, + ACTIONS(3731), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111427] = 2, + [112269] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3851), 4, - anon_sym_RPAREN, + ACTIONS(3731), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [111438] = 5, - ACTIONS(3792), 1, - anon_sym_RPAREN, - ACTIONS(3917), 1, - sym_identifier, - STATE(2286), 1, - sym_dotted_name, - STATE(2553), 1, - sym_aliased_import, + [112280] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3777), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [112291] = 4, + ACTIONS(3304), 1, + anon_sym_COMMA, + STATE(2011), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111455] = 2, + ACTIONS(4020), 2, + sym__newline, + anon_sym_SEMI, + [112306] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3819), 4, + ACTIONS(3787), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [111466] = 2, + [112317] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3790), 4, + ACTIONS(3812), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111477] = 4, - ACTIONS(4005), 1, + [112328] = 4, + ACTIONS(4024), 1, anon_sym_COMMA, - STATE(2230), 1, - aux_sym_print_statement_repeat1, + STATE(2173), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4003), 2, + ACTIONS(4022), 2, sym__newline, anon_sym_SEMI, - [111492] = 2, + [112343] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3809), 4, + ACTIONS(3814), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111503] = 5, - ACTIONS(3908), 1, - anon_sym_as, - ACTIONS(4007), 1, - anon_sym_RPAREN, - ACTIONS(4009), 1, + [112354] = 4, + ACTIONS(4026), 1, anon_sym_COMMA, - STATE(2365), 1, - aux_sym_case_clause_repeat1, + STATE(2173), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111520] = 2, + ACTIONS(4022), 2, + sym__newline, + anon_sym_SEMI, + [112369] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3835), 4, + ACTIONS(3830), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111531] = 3, - ACTIONS(3566), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4011), 3, + [112380] = 4, + ACTIONS(3808), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - [111544] = 2, + STATE(2195), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4013), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [111555] = 5, - ACTIONS(1569), 1, + ACTIONS(3806), 2, + sym__newline, + anon_sym_SEMI, + [112395] = 5, + ACTIONS(1610), 1, anon_sym_LBRACK, - ACTIONS(3923), 1, + ACTIONS(3972), 1, anon_sym_LPAREN, - STATE(2519), 1, + STATE(2523), 1, sym_parameters, - STATE(2524), 1, + STATE(2526), 1, sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111572] = 2, + [112412] = 4, + ACTIONS(3924), 1, + anon_sym_COMMA, + STATE(2233), 1, + aux_sym_global_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4028), 2, + sym__newline, + anon_sym_SEMI, + [112427] = 4, + ACTIONS(3924), 1, + anon_sym_COMMA, + STATE(2129), 1, + aux_sym_global_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4030), 2, + sym__newline, + anon_sym_SEMI, + [112442] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3811), 4, + ACTIONS(3816), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111583] = 2, + [112453] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3813), 4, + ACTIONS(3822), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111594] = 2, + [112464] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3815), 4, + ACTIONS(3830), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111605] = 5, - ACTIONS(3908), 1, + [112475] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3834), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(4015), 1, + anon_sym_PIPE, + [112486] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3836), 4, anon_sym_RPAREN, - ACTIONS(4017), 1, anon_sym_COMMA, - STATE(2484), 1, - aux_sym_case_clause_repeat1, + anon_sym_as, + anon_sym_PIPE, + [112497] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111622] = 2, + ACTIONS(4032), 4, + anon_sym_async, + anon_sym_def, + anon_sym_class, + anon_sym_AT, + [112508] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3766), 4, + ACTIONS(3856), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111633] = 2, + [112519] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3819), 4, + ACTIONS(3814), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111644] = 2, + [112530] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3835), 4, + ACTIONS(3818), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111655] = 2, + [112541] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3849), 4, + ACTIONS(3820), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [111666] = 4, - ACTIONS(3314), 1, + [112552] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3286), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4034), 2, anon_sym_COMMA, - STATE(2108), 1, - aux_sym_assert_statement_repeat1, + anon_sym_RBRACE, + [112565] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4019), 2, - sym__newline, - anon_sym_SEMI, - [111681] = 2, + ACTIONS(3842), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [112576] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3746), 4, - anon_sym_RPAREN, + ACTIONS(3844), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [111692] = 4, - ACTIONS(4021), 1, + [112587] = 4, + ACTIONS(4036), 1, anon_sym_COMMA, - STATE(2119), 1, - aux_sym__import_list_repeat1, + STATE(2214), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3981), 2, - sym__newline, - anon_sym_SEMI, - [111707] = 2, + ACTIONS(3982), 2, + anon_sym_if, + anon_sym_COLON, + [112602] = 5, + ACTIONS(3891), 1, + anon_sym_COLON, + ACTIONS(4039), 1, + anon_sym_RBRACE, + ACTIONS(4041), 1, + sym_type_conversion, + STATE(2773), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3748), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [111718] = 2, + [112619] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3758), 4, - anon_sym_RPAREN, + ACTIONS(3848), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [111729] = 4, - ACTIONS(4023), 1, - anon_sym_COMMA, - STATE(2215), 1, - aux_sym_case_clause_repeat1, + [112630] = 4, + ACTIONS(4045), 1, + anon_sym_DOT, + STATE(2217), 1, + aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4011), 2, - anon_sym_if, - anon_sym_COLON, - [111744] = 2, + ACTIONS(4043), 2, + anon_sym_import, + sym_identifier, + [112645] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3811), 4, + ACTIONS(3820), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111755] = 2, + [112656] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3823), 4, + ACTIONS(3858), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [111766] = 4, - ACTIONS(4028), 1, - anon_sym_COLON, - ACTIONS(4030), 1, - anon_sym_EQ, + [112667] = 5, + ACTIONS(3736), 1, + anon_sym_RPAREN, + ACTIONS(3930), 1, + sym_identifier, + STATE(2295), 1, + sym_dotted_name, + STATE(2569), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4026), 2, + [112684] = 5, + ACTIONS(3736), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [111781] = 4, - ACTIONS(4034), 1, - anon_sym_DOT, - STATE(2219), 1, - aux_sym_import_prefix_repeat1, + ACTIONS(3930), 1, + sym_identifier, + STATE(2295), 1, + sym_dotted_name, + STATE(2569), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4032), 2, - anon_sym_import, - sym_identifier, - [111796] = 2, + [112701] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3760), 4, - anon_sym_RPAREN, + ACTIONS(3850), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [111807] = 2, + [112712] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3781), 4, - anon_sym_RPAREN, + ACTIONS(3852), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [111818] = 2, + [112723] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3786), 4, - anon_sym_RPAREN, + ACTIONS(3834), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111829] = 2, + anon_sym_RBRACE, + [112734] = 5, + ACTIONS(3789), 1, + anon_sym_DOT, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3795), 1, + anon_sym_PIPE, + ACTIONS(4048), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4037), 4, - anon_sym_async, - anon_sym_def, - anon_sym_class, - anon_sym_AT, - [111840] = 5, - ACTIONS(3773), 1, - anon_sym_COLON, - ACTIONS(4039), 1, - anon_sym_RBRACE, - ACTIONS(4041), 1, - sym_type_conversion, - STATE(2677), 1, - sym_format_specifier, + [112751] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3858), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [112762] = 5, + ACTIONS(3940), 1, + anon_sym_as, + ACTIONS(4050), 1, + anon_sym_RPAREN, + ACTIONS(4052), 1, + anon_sym_COMMA, + STATE(2450), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111857] = 2, + [112779] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3788), 4, + ACTIONS(3764), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111868] = 2, + [112790] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3837), 4, + ACTIONS(3771), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [111879] = 5, - ACTIONS(1569), 1, - anon_sym_LBRACK, - ACTIONS(3923), 1, - anon_sym_LPAREN, - STATE(2558), 1, - sym_parameters, - STATE(2585), 1, - sym_type_parameter, + [112801] = 5, + ACTIONS(3930), 1, + sym_identifier, + STATE(2239), 1, + sym_dotted_name, + STATE(2486), 1, + sym_aliased_import, + STATE(2693), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111896] = 5, - ACTIONS(1569), 1, + [112818] = 5, + ACTIONS(1610), 1, anon_sym_LBRACK, - ACTIONS(3923), 1, + ACTIONS(3972), 1, anon_sym_LPAREN, STATE(2559), 1, sym_parameters, - STATE(2586), 1, + STATE(2590), 1, sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111913] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3746), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [111924] = 4, - ACTIONS(4045), 1, - anon_sym_COMMA, - STATE(2230), 1, - aux_sym_print_statement_repeat1, + [112835] = 5, + ACTIONS(1610), 1, + anon_sym_LBRACK, + ACTIONS(3972), 1, + anon_sym_LPAREN, + STATE(2560), 1, + sym_parameters, + STATE(2593), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4043), 2, - sym__newline, - anon_sym_SEMI, - [111939] = 4, - ACTIONS(3927), 1, + [112852] = 4, + ACTIONS(3924), 1, anon_sym_COMMA, - STATE(2136), 1, + STATE(2171), 1, aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4048), 2, + ACTIONS(4054), 2, sym__newline, anon_sym_SEMI, - [111954] = 2, + [112867] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3847), 4, + ACTIONS(3764), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111965] = 2, + [112878] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3837), 4, + ACTIONS(3777), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111976] = 2, + [112889] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3790), 4, + ACTIONS(3842), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111987] = 2, + [112900] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3813), 4, + ACTIONS(3787), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111998] = 5, - ACTIONS(3827), 1, - anon_sym_DOT, - ACTIONS(3829), 1, + [112911] = 4, + ACTIONS(4058), 1, anon_sym_COLON, - ACTIONS(3831), 1, - anon_sym_PIPE, - ACTIONS(4050), 1, + ACTIONS(4060), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112015] = 5, - ACTIONS(3951), 1, + ACTIONS(4056), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [112926] = 5, + ACTIONS(3806), 1, + anon_sym_RPAREN, + ACTIONS(4062), 1, + anon_sym_COMMA, + ACTIONS(4064), 1, anon_sym_as, - ACTIONS(4052), 1, + STATE(2406), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112943] = 4, + ACTIONS(4068), 1, anon_sym_COMMA, - ACTIONS(4054), 1, - anon_sym_RBRACK, - STATE(2447), 1, - aux_sym_case_clause_repeat1, + STATE(2240), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112032] = 2, + ACTIONS(4066), 2, + sym__newline, + anon_sym_SEMI, + [112958] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3888), 4, - anon_sym_RPAREN, + ACTIONS(3887), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [112043] = 5, - ACTIONS(3792), 1, - anon_sym_RPAREN, - ACTIONS(3917), 1, - sym_identifier, - STATE(2286), 1, - sym_dotted_name, - STATE(2553), 1, - sym_aliased_import, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112060] = 2, + [112969] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3881), 4, + ACTIONS(3729), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [112071] = 3, - ACTIONS(3867), 1, - anon_sym_as, + [112980] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4056), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [112084] = 4, - ACTIONS(3001), 1, - anon_sym_RBRACK, - ACTIONS(3073), 1, + ACTIONS(3812), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2451), 1, - aux_sym__collection_elements_repeat1, + anon_sym_as, + anon_sym_PIPE, + [112991] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112098] = 4, - ACTIONS(4058), 1, + ACTIONS(3771), 4, anon_sym_COMMA, - ACTIONS(4060), 1, + anon_sym_as, anon_sym_RBRACK, - STATE(2262), 1, - aux_sym_subscript_repeat1, + anon_sym_PIPE, + [113002] = 4, + ACTIONS(4071), 1, + anon_sym_COMMA, + ACTIONS(4073), 1, + anon_sym_in, + STATE(2363), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112112] = 3, - ACTIONS(4064), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4062), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [112124] = 3, - ACTIONS(4068), 1, - anon_sym_in, + [113016] = 4, + ACTIONS(1919), 1, + anon_sym_RPAREN, + ACTIONS(4075), 1, + anon_sym_COMMA, + STATE(2471), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4066), 2, - sym__newline, - anon_sym_SEMI, - [112136] = 4, - ACTIONS(4070), 1, - anon_sym_SEMI, - ACTIONS(4072), 1, - sym__newline, - STATE(2254), 1, - aux_sym__simple_statements_repeat1, + [113030] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112150] = 4, - ACTIONS(4074), 1, + ACTIONS(4014), 3, anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + [113040] = 4, ACTIONS(4077), 1, - anon_sym_COLON, - STATE(2247), 1, - aux_sym__parameters_repeat1, + sym__newline, + ACTIONS(4079), 1, + sym__indent, + STATE(754), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112164] = 4, - ACTIONS(3042), 1, - anon_sym_COMMA, - ACTIONS(3062), 1, + [113054] = 4, + ACTIONS(3605), 1, anon_sym_RPAREN, - STATE(2335), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4081), 1, + anon_sym_COMMA, + STATE(2249), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112178] = 4, - ACTIONS(4079), 1, + [113068] = 4, + ACTIONS(4084), 1, + anon_sym_SEMI, + ACTIONS(4086), 1, sym__newline, - ACTIONS(4081), 1, - sym__indent, - STATE(784), 1, - sym__match_block, + STATE(2256), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112192] = 4, - ACTIONS(4083), 1, + [113082] = 4, + ACTIONS(4088), 1, anon_sym_COMMA, - ACTIONS(4085), 1, + ACTIONS(4090), 1, anon_sym_COLON, - STATE(2285), 1, - aux_sym_match_statement_repeat1, + STATE(2412), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112206] = 4, - ACTIONS(4087), 1, + [113096] = 4, + ACTIONS(3068), 1, anon_sym_COMMA, - ACTIONS(4089), 1, - anon_sym_in, - STATE(2362), 1, - aux_sym__patterns_repeat1, + ACTIONS(3094), 1, + anon_sym_RPAREN, + STATE(2432), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113110] = 4, + ACTIONS(4092), 1, + anon_sym_COMMA, + ACTIONS(4094), 1, + anon_sym_RBRACK, + STATE(2271), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112220] = 4, - ACTIONS(3483), 1, + [113124] = 4, + ACTIONS(3432), 1, anon_sym_COMMA, - ACTIONS(3485), 1, + ACTIONS(3434), 1, anon_sym_RBRACE, - STATE(2257), 1, + STATE(2259), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112234] = 3, - ACTIONS(3908), 1, - anon_sym_as, + [113138] = 4, + ACTIONS(4096), 1, + anon_sym_COMMA, + ACTIONS(4098), 1, + anon_sym_RBRACK, + STATE(2271), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4011), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [112246] = 4, - ACTIONS(617), 1, + [113152] = 4, + ACTIONS(634), 1, sym__newline, - ACTIONS(4091), 1, + ACTIONS(4100), 1, anon_sym_SEMI, - STATE(2446), 1, + STATE(2463), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112260] = 4, - ACTIONS(3042), 1, + [113166] = 4, + ACTIONS(3068), 1, anon_sym_COMMA, - ACTIONS(4093), 1, + ACTIONS(4102), 1, anon_sym_RPAREN, - STATE(2335), 1, + STATE(2432), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112274] = 4, - ACTIONS(3042), 1, + [113180] = 4, + ACTIONS(3068), 1, anon_sym_COMMA, - ACTIONS(4095), 1, + ACTIONS(4104), 1, anon_sym_RPAREN, - STATE(2335), 1, + STATE(2432), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112288] = 4, - ACTIONS(1293), 1, + [113194] = 4, + ACTIONS(1304), 1, anon_sym_RBRACE, - ACTIONS(4097), 1, + ACTIONS(4106), 1, anon_sym_COMMA, - STATE(2481), 1, + STATE(2490), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112302] = 2, + [113208] = 3, + ACTIONS(3940), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4013), 3, + ACTIONS(3982), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - [112312] = 4, - ACTIONS(4011), 1, + [113220] = 4, + ACTIONS(3096), 1, anon_sym_RPAREN, - ACTIONS(4099), 1, + ACTIONS(3098), 1, anon_sym_COMMA, - STATE(2259), 1, - aux_sym_case_clause_repeat1, + STATE(2270), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112326] = 4, - ACTIONS(3077), 1, + [113234] = 4, + ACTIONS(4108), 1, anon_sym_RPAREN, - ACTIONS(3079), 1, + ACTIONS(4110), 1, anon_sym_COMMA, - STATE(2266), 1, + STATE(2272), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112340] = 4, - ACTIONS(4102), 1, + [113248] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4014), 3, anon_sym_RPAREN, - ACTIONS(4104), 1, anon_sym_COMMA, - STATE(2268), 1, - aux_sym_argument_list_repeat1, + anon_sym_as, + [113258] = 4, + ACTIONS(3982), 1, + anon_sym_RPAREN, + ACTIONS(4112), 1, + anon_sym_COMMA, + STATE(2264), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112354] = 4, - ACTIONS(4106), 1, + [113272] = 4, + ACTIONS(3337), 1, anon_sym_COMMA, - ACTIONS(4109), 1, + ACTIONS(3339), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2275), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112368] = 4, - ACTIONS(3282), 1, + [113286] = 4, + ACTIONS(4071), 1, anon_sym_COMMA, - ACTIONS(3284), 1, - anon_sym_RBRACK, - STATE(2271), 1, - aux_sym_subscript_repeat1, + ACTIONS(4115), 1, + anon_sym_in, + STATE(2363), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112382] = 4, - ACTIONS(3494), 1, - anon_sym_RBRACE, - ACTIONS(4111), 1, + [113300] = 4, + ACTIONS(4117), 1, anon_sym_COMMA, - STATE(2264), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4120), 1, + anon_sym_COLON, + STATE(2267), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112396] = 4, - ACTIONS(3796), 1, - anon_sym_LPAREN, - ACTIONS(4114), 1, - anon_sym_COLON, - STATE(2730), 1, - sym_argument_list, + [113314] = 4, + ACTIONS(4122), 1, + anon_sym_SEMI, + ACTIONS(4124), 1, + sym__newline, + STATE(2475), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112410] = 4, - ACTIONS(1225), 1, - anon_sym_RPAREN, - ACTIONS(4116), 1, + [113328] = 4, + ACTIONS(3588), 1, + anon_sym_RBRACE, + ACTIONS(4126), 1, anon_sym_COMMA, - STATE(2487), 1, - aux_sym_argument_list_repeat1, + STATE(2269), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112424] = 4, - ACTIONS(3235), 1, + [113342] = 4, + ACTIONS(1180), 1, anon_sym_RPAREN, - ACTIONS(4118), 1, + ACTIONS(4129), 1, anon_sym_COMMA, - STATE(2267), 1, - aux_sym_assert_statement_repeat1, + STATE(2249), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112438] = 4, - ACTIONS(1227), 1, - anon_sym_RPAREN, - ACTIONS(4121), 1, + [113356] = 4, + ACTIONS(4131), 1, anon_sym_COMMA, - STATE(2487), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4134), 1, + anon_sym_RBRACK, + STATE(2271), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112452] = 4, - ACTIONS(3001), 1, + [113370] = 4, + ACTIONS(1182), 1, anon_sym_RPAREN, - ACTIONS(3042), 1, + ACTIONS(4136), 1, anon_sym_COMMA, - STATE(2335), 1, - aux_sym__collection_elements_repeat1, + STATE(2249), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112466] = 4, - ACTIONS(4123), 1, + [113384] = 3, + ACTIONS(4140), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4138), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [113396] = 4, + ACTIONS(4142), 1, anon_sym_COMMA, - ACTIONS(4125), 1, + ACTIONS(4144), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2271), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112480] = 4, - ACTIONS(4127), 1, + [113410] = 4, + ACTIONS(4146), 1, anon_sym_COMMA, - ACTIONS(4129), 1, + ACTIONS(4148), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2271), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112494] = 4, - ACTIONS(1021), 1, - anon_sym_RBRACK, - ACTIONS(4131), 1, + [113424] = 4, + ACTIONS(3225), 1, + anon_sym_RPAREN, + ACTIONS(4150), 1, anon_sym_COMMA, - STATE(2467), 1, - aux_sym_type_parameter_repeat1, + STATE(2276), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112508] = 3, - ACTIONS(4133), 1, - anon_sym_EQ, + [113438] = 4, + ACTIONS(4153), 1, + sym__newline, + ACTIONS(4155), 1, + sym__indent, + STATE(839), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113452] = 4, + ACTIONS(1028), 1, + anon_sym_RBRACK, + ACTIONS(4157), 1, + anon_sym_COMMA, + STATE(2470), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4026), 2, + [113466] = 4, + ACTIONS(4159), 1, anon_sym_COMMA, + ACTIONS(4161), 1, anon_sym_COLON, - [112520] = 4, - ACTIONS(4079), 1, - sym__newline, - ACTIONS(4081), 1, - sym__indent, - STATE(822), 1, - sym__match_block, + STATE(2305), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112534] = 4, - ACTIONS(3146), 1, - anon_sym_RPAREN, - ACTIONS(3148), 1, + [113480] = 4, + ACTIONS(4071), 1, anon_sym_COMMA, - STATE(2469), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4163), 1, + anon_sym_in, + STATE(2363), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112548] = 4, - ACTIONS(4135), 1, + [113494] = 4, + ACTIONS(1166), 1, anon_sym_RPAREN, - ACTIONS(4137), 1, + ACTIONS(4165), 1, anon_sym_COMMA, - STATE(2405), 1, + STATE(2249), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112562] = 4, - ACTIONS(4139), 1, + [113508] = 4, + ACTIONS(4167), 1, anon_sym_COMMA, - ACTIONS(4141), 1, + ACTIONS(4169), 1, anon_sym_RBRACE, - STATE(2281), 1, + STATE(2288), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112576] = 3, - ACTIONS(3592), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [113522] = 4, + ACTIONS(4153), 1, + sym__newline, + ACTIONS(4155), 1, + sym__indent, + STATE(834), 1, + sym__match_block, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3594), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [112588] = 4, - ACTIONS(2706), 1, + [113536] = 4, + ACTIONS(2673), 1, anon_sym_RPAREN, - ACTIONS(4143), 1, + ACTIONS(4171), 1, anon_sym_COMMA, - STATE(2259), 1, + STATE(2264), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112602] = 4, - ACTIONS(2708), 1, + [113550] = 4, + ACTIONS(3027), 1, + anon_sym_RPAREN, + ACTIONS(3068), 1, + anon_sym_COMMA, + STATE(2432), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113564] = 4, + ACTIONS(2681), 1, anon_sym_RBRACK, - ACTIONS(4145), 1, + ACTIONS(4173), 1, anon_sym_COMMA, - STATE(2331), 1, + STATE(2337), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112616] = 4, - ACTIONS(4147), 1, + [113578] = 4, + ACTIONS(3122), 1, + anon_sym_RPAREN, + ACTIONS(3124), 1, anon_sym_COMMA, - ACTIONS(4149), 1, - anon_sym_RBRACE, - STATE(2358), 1, - aux_sym_dict_pattern_repeat1, + STATE(2281), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112630] = 4, - ACTIONS(4079), 1, - sym__newline, - ACTIONS(4081), 1, - sym__indent, - STATE(731), 1, - sym__match_block, + [113592] = 4, + ACTIONS(4175), 1, + anon_sym_COMMA, + ACTIONS(4177), 1, + anon_sym_RBRACE, + STATE(2361), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112644] = 4, - ACTIONS(4151), 1, + [113606] = 4, + ACTIONS(4179), 1, anon_sym_COMMA, - ACTIONS(4153), 1, + ACTIONS(4181), 1, anon_sym_RBRACE, - STATE(2358), 1, + STATE(2361), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112658] = 4, - ACTIONS(3773), 1, - anon_sym_COLON, - ACTIONS(4155), 1, + [113620] = 3, + ACTIONS(3544), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3546), 2, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(2749), 1, - sym_format_specifier, + [113632] = 4, + ACTIONS(3068), 1, + anon_sym_COMMA, + ACTIONS(4183), 1, + anon_sym_RPAREN, + STATE(2432), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112672] = 4, - ACTIONS(4157), 1, - anon_sym_COMMA, - ACTIONS(4160), 1, + [113646] = 4, + ACTIONS(3891), 1, anon_sym_COLON, - STATE(2285), 1, - aux_sym_match_statement_repeat1, + ACTIONS(4185), 1, + anon_sym_RBRACE, + STATE(2766), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112686] = 3, - ACTIONS(3898), 1, - anon_sym_as, + [113660] = 4, + ACTIONS(4153), 1, + sym__newline, + ACTIONS(4155), 1, + sym__indent, + STATE(840), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4056), 2, + [113674] = 4, + ACTIONS(2693), 1, anon_sym_RPAREN, + ACTIONS(4187), 1, anon_sym_COMMA, - [112698] = 2, + STATE(2264), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4013), 3, - anon_sym_COMMA, + [113688] = 3, + ACTIONS(4064), 1, anon_sym_as, - anon_sym_RBRACE, - [112708] = 4, - ACTIONS(2650), 1, - anon_sym_RPAREN, - ACTIONS(4162), 1, - anon_sym_COMMA, - STATE(2259), 1, - aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112722] = 3, - ACTIONS(3670), 1, + ACTIONS(4018), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [113700] = 3, + ACTIONS(3615), 1, aux_sym_format_specifier_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3672), 2, + ACTIONS(3617), 2, anon_sym_LBRACE, anon_sym_RBRACE, - [112734] = 3, - ACTIONS(3674), 1, + [113712] = 3, + ACTIONS(3619), 1, aux_sym_format_specifier_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3676), 2, + ACTIONS(3621), 2, anon_sym_LBRACE, anon_sym_RBRACE, - [112746] = 3, - ACTIONS(3678), 1, + [113724] = 3, + ACTIONS(3623), 1, aux_sym_format_specifier_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3680), 2, + ACTIONS(3625), 2, anon_sym_LBRACE, anon_sym_RBRACE, - [112758] = 4, - ACTIONS(3910), 1, + [113736] = 4, + ACTIONS(3995), 1, anon_sym_RPAREN, - ACTIONS(4164), 1, + ACTIONS(4189), 1, anon_sym_COMMA, - STATE(2292), 1, + STATE(2299), 1, aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112772] = 4, - ACTIONS(2736), 1, - sym_identifier, - ACTIONS(4167), 1, - anon_sym_import, - STATE(2757), 1, - sym_dotted_name, + [113750] = 4, + ACTIONS(3864), 1, + anon_sym_LPAREN, + ACTIONS(4192), 1, + anon_sym_COLON, + STATE(2754), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112786] = 2, + [113764] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3581), 3, + ACTIONS(3672), 3, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, - [112796] = 4, - ACTIONS(3538), 1, + [113774] = 4, + ACTIONS(3505), 1, anon_sym_PIPE, - ACTIONS(4169), 1, + ACTIONS(4194), 1, anon_sym_COLON, - STATE(1907), 1, + STATE(1892), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112810] = 4, - ACTIONS(4171), 1, + [113788] = 4, + ACTIONS(4196), 1, anon_sym_COMMA, - ACTIONS(4173), 1, + ACTIONS(4198), 1, anon_sym_RBRACE, - STATE(2458), 1, + STATE(2465), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112824] = 4, - ACTIONS(4079), 1, - sym__newline, - ACTIONS(4081), 1, - sym__indent, - STATE(769), 1, - sym__match_block, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112838] = 4, - ACTIONS(3042), 1, + [113802] = 4, + ACTIONS(3068), 1, anon_sym_COMMA, - ACTIONS(3085), 1, + ACTIONS(3104), 1, anon_sym_RPAREN, - STATE(2335), 1, + STATE(2432), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112852] = 4, - ACTIONS(4175), 1, + [113816] = 4, + ACTIONS(4200), 1, anon_sym_COMMA, - ACTIONS(4177), 1, + ACTIONS(4203), 1, anon_sym_COLON, - STATE(2389), 1, - aux_sym__parameters_repeat1, + STATE(2305), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112866] = 4, - ACTIONS(3379), 1, + [113830] = 4, + ACTIONS(3490), 1, anon_sym_COMMA, - ACTIONS(3381), 1, + ACTIONS(3492), 1, anon_sym_RBRACE, - STATE(2302), 1, + STATE(2308), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112880] = 3, - ACTIONS(4133), 1, - anon_sym_EQ, + [113844] = 4, + ACTIONS(4205), 1, + anon_sym_RPAREN, + ACTIONS(4207), 1, + anon_sym_COMMA, + STATE(2443), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4026), 2, - anon_sym_COMMA, - anon_sym_COLON, - [112892] = 4, - ACTIONS(1331), 1, + [113858] = 4, + ACTIONS(1334), 1, anon_sym_RBRACE, - ACTIONS(4179), 1, + ACTIONS(4209), 1, anon_sym_COMMA, - STATE(2481), 1, + STATE(2490), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112906] = 4, - ACTIONS(3087), 1, + [113872] = 4, + ACTIONS(3106), 1, anon_sym_RPAREN, - ACTIONS(3089), 1, + ACTIONS(3108), 1, anon_sym_COMMA, - STATE(2308), 1, + STATE(2314), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112920] = 4, - ACTIONS(4181), 1, + [113886] = 4, + ACTIONS(4211), 1, anon_sym_RPAREN, - ACTIONS(4183), 1, + ACTIONS(4213), 1, anon_sym_COMMA, - STATE(2310), 1, + STATE(2315), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112934] = 4, - ACTIONS(3296), 1, + [113900] = 4, + ACTIONS(3260), 1, anon_sym_COMMA, - ACTIONS(3298), 1, + ACTIONS(3264), 1, anon_sym_RBRACK, - STATE(2312), 1, + STATE(2317), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112948] = 4, - ACTIONS(4177), 1, - anon_sym_RPAREN, - ACTIONS(4185), 1, + [113914] = 4, + ACTIONS(3588), 1, + anon_sym_RBRACK, + ACTIONS(4215), 1, anon_sym_COMMA, - STATE(2419), 1, - aux_sym__parameters_repeat1, + STATE(2312), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112962] = 2, + [113928] = 3, + ACTIONS(4218), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3581), 3, - anon_sym_RPAREN, + ACTIONS(4056), 2, anon_sym_COMMA, - anon_sym_as, - [112972] = 4, - ACTIONS(1157), 1, + anon_sym_COLON, + [113940] = 4, + ACTIONS(1192), 1, anon_sym_RPAREN, - ACTIONS(4187), 1, + ACTIONS(4220), 1, anon_sym_COMMA, - STATE(2487), 1, + STATE(2249), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112986] = 4, - ACTIONS(3494), 1, - anon_sym_RBRACK, - ACTIONS(4189), 1, - anon_sym_COMMA, - STATE(2309), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113000] = 4, - ACTIONS(1159), 1, + [113954] = 4, + ACTIONS(1194), 1, anon_sym_RPAREN, - ACTIONS(4192), 1, + ACTIONS(4222), 1, anon_sym_COMMA, - STATE(2487), 1, + STATE(2249), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113014] = 4, - ACTIONS(4194), 1, + [113968] = 4, + ACTIONS(4224), 1, anon_sym_COMMA, - ACTIONS(4196), 1, + ACTIONS(4226), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2271), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113028] = 4, - ACTIONS(4198), 1, + [113982] = 4, + ACTIONS(4228), 1, anon_sym_COMMA, - ACTIONS(4200), 1, + ACTIONS(4230), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2271), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113042] = 3, - ACTIONS(4204), 1, - anon_sym_as, + [113996] = 3, + ACTIONS(4234), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4202), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [113054] = 4, - ACTIONS(1001), 1, + ACTIONS(4232), 2, + sym__newline, + anon_sym_SEMI, + [114008] = 4, + ACTIONS(1000), 1, anon_sym_RBRACK, - ACTIONS(4206), 1, + ACTIONS(4236), 1, anon_sym_COMMA, - STATE(2467), 1, + STATE(2470), 1, aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113068] = 4, - ACTIONS(3265), 1, + [114022] = 4, + ACTIONS(4238), 1, anon_sym_COMMA, - ACTIONS(3267), 1, - anon_sym_RBRACK, - STATE(2243), 1, - aux_sym_subscript_repeat1, + ACTIONS(4240), 1, + anon_sym_COLON, + STATE(2441), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113082] = 4, - ACTIONS(3472), 1, - sym_identifier, - STATE(2241), 1, - sym_dotted_name, - STATE(2359), 1, - sym_aliased_import, + [114036] = 3, + ACTIONS(4244), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113096] = 4, - ACTIONS(4208), 1, + ACTIONS(4242), 2, anon_sym_COMMA, - ACTIONS(4210), 1, anon_sym_RBRACE, - STATE(2322), 1, - aux_sym_dict_pattern_repeat1, + [114048] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113110] = 4, - ACTIONS(3827), 1, - anon_sym_DOT, - ACTIONS(3831), 1, - anon_sym_PIPE, - ACTIONS(4212), 1, + ACTIONS(3672), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + [114058] = 4, + ACTIONS(3272), 1, + anon_sym_COMMA, + ACTIONS(3274), 1, + anon_sym_RBRACK, + STATE(2255), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114072] = 3, + ACTIONS(4218), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4056), 2, + anon_sym_COMMA, anon_sym_COLON, + [114084] = 4, + ACTIONS(4153), 1, + sym__newline, + ACTIONS(4155), 1, + sym__indent, + STATE(772), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113124] = 4, - ACTIONS(2676), 1, - anon_sym_RPAREN, - ACTIONS(4214), 1, + [114098] = 4, + ACTIONS(4246), 1, anon_sym_COMMA, - STATE(2259), 1, - aux_sym_case_clause_repeat1, + ACTIONS(4248), 1, + anon_sym_RBRACE, + STATE(2329), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113138] = 4, - ACTIONS(4216), 1, + [114112] = 4, + ACTIONS(2675), 1, anon_sym_RPAREN, - ACTIONS(4218), 1, + ACTIONS(4250), 1, anon_sym_COMMA, - STATE(2417), 1, - aux_sym__patterns_repeat1, + STATE(2264), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113152] = 4, - ACTIONS(2678), 1, + [114126] = 4, + ACTIONS(2699), 1, anon_sym_RBRACK, - ACTIONS(4220), 1, + ACTIONS(4252), 1, anon_sym_COMMA, - STATE(2331), 1, + STATE(2337), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113166] = 4, - ACTIONS(4222), 1, + [114140] = 4, + ACTIONS(4254), 1, anon_sym_COMMA, - ACTIONS(4224), 1, + ACTIONS(4256), 1, anon_sym_RBRACE, - STATE(2358), 1, + STATE(2361), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113180] = 4, - ACTIONS(4226), 1, + [114154] = 4, + ACTIONS(4258), 1, anon_sym_COMMA, - ACTIONS(4228), 1, + ACTIONS(4260), 1, anon_sym_RBRACE, - STATE(2358), 1, + STATE(2361), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113194] = 4, - ACTIONS(993), 1, - anon_sym_RBRACK, - ACTIONS(4230), 1, - anon_sym_COMMA, - STATE(2467), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113208] = 4, - ACTIONS(4232), 1, - anon_sym_RPAREN, - ACTIONS(4234), 1, - anon_sym_COMMA, - STATE(2398), 1, - aux_sym_with_clause_repeat1, + [114168] = 4, + ACTIONS(3789), 1, + anon_sym_DOT, + ACTIONS(3795), 1, + anon_sym_PIPE, + ACTIONS(4262), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113222] = 4, - ACTIONS(4236), 1, - sym__newline, - ACTIONS(4238), 1, - sym__indent, - STATE(743), 1, - sym__match_block, + [114182] = 4, + ACTIONS(3468), 1, + sym_identifier, + STATE(2185), 1, + sym_dotted_name, + STATE(2388), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113236] = 4, - ACTIONS(3040), 1, + [114196] = 4, + ACTIONS(990), 1, + anon_sym_RBRACK, + ACTIONS(4264), 1, + anon_sym_COMMA, + STATE(2470), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114210] = 4, + ACTIONS(2717), 1, anon_sym_RPAREN, - ACTIONS(3042), 1, + ACTIONS(4266), 1, anon_sym_COMMA, - STATE(2335), 1, - aux_sym__collection_elements_repeat1, + STATE(2264), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113250] = 3, - ACTIONS(3951), 1, + [114224] = 3, + ACTIONS(3952), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4011), 2, + ACTIONS(3982), 2, anon_sym_COMMA, anon_sym_RBRACK, - [113262] = 2, + [114236] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4013), 3, + ACTIONS(4014), 3, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, - [113272] = 4, - ACTIONS(2686), 1, - anon_sym_RPAREN, - ACTIONS(4240), 1, + [114246] = 4, + ACTIONS(3982), 1, + anon_sym_RBRACK, + ACTIONS(4268), 1, anon_sym_COMMA, - STATE(2259), 1, + STATE(2337), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113286] = 4, - ACTIONS(4011), 1, - anon_sym_RBRACK, - ACTIONS(4242), 1, + [114260] = 4, + ACTIONS(3015), 1, anon_sym_COMMA, - STATE(2331), 1, - aux_sym_case_clause_repeat1, + ACTIONS(3027), 1, + anon_sym_RBRACE, + STATE(2461), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113300] = 4, - ACTIONS(625), 1, + [114274] = 4, + ACTIONS(4077), 1, sym__newline, - ACTIONS(4245), 1, - anon_sym_SEMI, - STATE(2446), 1, - aux_sym__simple_statements_repeat1, + ACTIONS(4079), 1, + sym__indent, + STATE(731), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113314] = 4, - ACTIONS(2989), 1, - anon_sym_COMMA, - ACTIONS(3001), 1, - anon_sym_RBRACE, - STATE(2457), 1, - aux_sym__collection_elements_repeat1, + [114288] = 4, + ACTIONS(4271), 1, + anon_sym_SEMI, + ACTIONS(4273), 1, + sym__newline, + STATE(2362), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113328] = 4, - ACTIONS(3827), 1, + [114302] = 4, + ACTIONS(3789), 1, anon_sym_DOT, - ACTIONS(3831), 1, + ACTIONS(3795), 1, anon_sym_PIPE, - ACTIONS(4247), 1, + ACTIONS(4275), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113342] = 4, - ACTIONS(1247), 1, - anon_sym_RPAREN, - ACTIONS(4249), 1, + [114316] = 4, + ACTIONS(3068), 1, anon_sym_COMMA, - STATE(2449), 1, + ACTIONS(3114), 1, + anon_sym_RPAREN, + STATE(2432), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113356] = 4, - ACTIONS(4251), 1, - anon_sym_SEMI, - ACTIONS(4253), 1, - sym__newline, - STATE(2361), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113370] = 4, - ACTIONS(1291), 1, - anon_sym_RBRACE, - ACTIONS(4255), 1, + [114330] = 4, + ACTIONS(4277), 1, + anon_sym_RPAREN, + ACTIONS(4279), 1, anon_sym_COMMA, - STATE(2481), 1, - aux_sym_dictionary_repeat1, + STATE(2403), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113384] = 4, - ACTIONS(4087), 1, + [114344] = 4, + ACTIONS(4281), 1, + anon_sym_RPAREN, + ACTIONS(4283), 1, anon_sym_COMMA, - ACTIONS(4257), 1, - anon_sym_in, - STATE(2362), 1, + STATE(2246), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113398] = 4, - ACTIONS(3042), 1, - anon_sym_COMMA, - ACTIONS(3095), 1, - anon_sym_RPAREN, - STATE(2335), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113412] = 4, - ACTIONS(3773), 1, - anon_sym_COLON, - ACTIONS(4259), 1, - anon_sym_RBRACE, - STATE(2671), 1, - sym_format_specifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113426] = 4, - ACTIONS(3394), 1, + [114358] = 4, + ACTIONS(3482), 1, anon_sym_COMMA, - ACTIONS(3396), 1, + ACTIONS(3484), 1, anon_sym_RBRACE, - STATE(2344), 1, + STATE(2347), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113440] = 4, - ACTIONS(3042), 1, - anon_sym_COMMA, - ACTIONS(3060), 1, + [114372] = 4, + ACTIONS(3066), 1, anon_sym_RPAREN, - STATE(2335), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113454] = 4, - ACTIONS(3367), 1, + ACTIONS(3068), 1, anon_sym_COMMA, - ACTIONS(4261), 1, - anon_sym_COLON, - STATE(2357), 1, - aux_sym_except_clause_repeat1, + STATE(2432), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113468] = 4, - ACTIONS(1317), 1, + [114386] = 4, + ACTIONS(1316), 1, anon_sym_RBRACE, - ACTIONS(4263), 1, + ACTIONS(4285), 1, anon_sym_COMMA, - STATE(2481), 1, + STATE(2490), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113482] = 4, - ACTIONS(3097), 1, + [114400] = 4, + ACTIONS(3116), 1, anon_sym_RPAREN, - ACTIONS(3099), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - STATE(2349), 1, + STATE(2354), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113496] = 4, - ACTIONS(4265), 1, + [114414] = 4, + ACTIONS(4287), 1, anon_sym_RPAREN, - ACTIONS(4267), 1, + ACTIONS(4289), 1, anon_sym_COMMA, - STATE(2351), 1, + STATE(2355), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113510] = 4, - ACTIONS(1449), 1, - anon_sym_COLON, - ACTIONS(4269), 1, + [114428] = 4, + ACTIONS(2747), 1, + sym_identifier, + ACTIONS(4291), 1, + anon_sym_import, + STATE(2713), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114442] = 4, + ACTIONS(1302), 1, + anon_sym_RBRACE, + ACTIONS(4293), 1, anon_sym_COMMA, - STATE(2407), 1, - aux_sym_with_clause_repeat1, + STATE(2490), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113524] = 4, - ACTIONS(3300), 1, + [114456] = 4, + ACTIONS(3268), 1, anon_sym_COMMA, - ACTIONS(3302), 1, + ACTIONS(3270), 1, anon_sym_RBRACK, - STATE(2353), 1, + STATE(2357), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113538] = 4, - ACTIONS(1175), 1, - anon_sym_RPAREN, - ACTIONS(4271), 1, + [114470] = 4, + ACTIONS(3387), 1, anon_sym_COMMA, - STATE(2487), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4295), 1, + anon_sym_COLON, + STATE(2364), 1, + aux_sym_except_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113552] = 4, - ACTIONS(4273), 1, + [114484] = 4, + ACTIONS(1206), 1, + anon_sym_RPAREN, + ACTIONS(4297), 1, anon_sym_COMMA, - ACTIONS(4275), 1, - anon_sym_COLON, - STATE(2347), 1, - aux_sym_with_clause_repeat1, + STATE(2249), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113566] = 4, - ACTIONS(1177), 1, + [114498] = 4, + ACTIONS(1208), 1, anon_sym_RPAREN, - ACTIONS(4277), 1, + ACTIONS(4299), 1, anon_sym_COMMA, - STATE(2487), 1, + STATE(2249), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113580] = 4, - ACTIONS(4279), 1, + [114512] = 4, + ACTIONS(4301), 1, anon_sym_COMMA, - ACTIONS(4281), 1, + ACTIONS(4303), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2271), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113594] = 4, - ACTIONS(4283), 1, + [114526] = 4, + ACTIONS(4305), 1, anon_sym_COMMA, - ACTIONS(4285), 1, + ACTIONS(4307), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2271), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113608] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1688), 3, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [113618] = 4, - ACTIONS(3413), 1, + [114540] = 4, + ACTIONS(3447), 1, anon_sym_COMMA, - ACTIONS(3415), 1, + ACTIONS(3449), 1, anon_sym_RBRACE, - STATE(2384), 1, + STATE(2386), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113632] = 4, - ACTIONS(3827), 1, - anon_sym_DOT, - ACTIONS(3831), 1, - anon_sym_PIPE, - ACTIONS(4287), 1, - anon_sym_COLON, + [114554] = 4, + ACTIONS(4240), 1, + anon_sym_RPAREN, + ACTIONS(4309), 1, + anon_sym_COMMA, + STATE(2442), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113646] = 4, - ACTIONS(4289), 1, - anon_sym_COMMA, - ACTIONS(4292), 1, + [114568] = 4, + ACTIONS(3891), 1, anon_sym_COLON, - STATE(2357), 1, - aux_sym_except_clause_repeat1, + ACTIONS(4311), 1, + anon_sym_RBRACE, + STATE(2745), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113660] = 4, - ACTIONS(4294), 1, + [114582] = 4, + ACTIONS(4313), 1, anon_sym_COMMA, - ACTIONS(4297), 1, + ACTIONS(4316), 1, anon_sym_RBRACE, - STATE(2358), 1, + STATE(2361), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113674] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4056), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [113684] = 3, - ACTIONS(4030), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4026), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [113696] = 4, - ACTIONS(623), 1, + [114596] = 4, + ACTIONS(626), 1, sym__newline, - ACTIONS(4299), 1, + ACTIONS(4318), 1, anon_sym_SEMI, - STATE(2446), 1, + STATE(2463), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113710] = 4, - ACTIONS(971), 1, + [114610] = 4, + ACTIONS(964), 1, anon_sym_in, - ACTIONS(4301), 1, + ACTIONS(4320), 1, anon_sym_COMMA, - STATE(2390), 1, + STATE(2392), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113724] = 4, - ACTIONS(3235), 1, - anon_sym_COLON, - ACTIONS(4303), 1, + [114624] = 4, + ACTIONS(4322), 1, anon_sym_COMMA, - STATE(2363), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(4325), 1, + anon_sym_COLON, + STATE(2364), 1, + aux_sym_except_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113738] = 4, - ACTIONS(3042), 1, + [114638] = 4, + ACTIONS(3068), 1, anon_sym_COMMA, - ACTIONS(3105), 1, + ACTIONS(3126), 1, anon_sym_RPAREN, - STATE(2335), 1, + STATE(2432), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113752] = 4, - ACTIONS(2696), 1, - anon_sym_RPAREN, - ACTIONS(4306), 1, - anon_sym_COMMA, - STATE(2259), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113766] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2472), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_in, - [113776] = 4, - ACTIONS(3409), 1, + [114652] = 4, + ACTIONS(3462), 1, anon_sym_COMMA, - ACTIONS(3411), 1, + ACTIONS(3464), 1, anon_sym_RBRACE, - STATE(2370), 1, + STATE(2369), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113790] = 4, - ACTIONS(3042), 1, + [114666] = 4, + ACTIONS(3068), 1, anon_sym_COMMA, - ACTIONS(4308), 1, + ACTIONS(4327), 1, anon_sym_RPAREN, - STATE(2335), 1, + STATE(2432), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113804] = 4, - ACTIONS(3042), 1, - anon_sym_COMMA, - ACTIONS(4310), 1, - anon_sym_RPAREN, - STATE(2335), 1, - aux_sym__collection_elements_repeat1, + [114680] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113818] = 4, - ACTIONS(1295), 1, + ACTIONS(2496), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_in, + [114690] = 4, + ACTIONS(1306), 1, anon_sym_RBRACE, - ACTIONS(4312), 1, + ACTIONS(4329), 1, anon_sym_COMMA, - STATE(2481), 1, + STATE(2490), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113832] = 4, - ACTIONS(3107), 1, - anon_sym_RPAREN, - ACTIONS(3109), 1, + [114704] = 4, + ACTIONS(3068), 1, anon_sym_COMMA, - STATE(2377), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4331), 1, + anon_sym_RPAREN, + STATE(2432), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113846] = 4, - ACTIONS(4314), 1, + [114718] = 4, + ACTIONS(3128), 1, anon_sym_RPAREN, - ACTIONS(4316), 1, + ACTIONS(3130), 1, anon_sym_COMMA, - STATE(2379), 1, + STATE(2377), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113860] = 4, - ACTIONS(4318), 1, + [114732] = 4, + ACTIONS(4333), 1, anon_sym_RPAREN, - ACTIONS(4320), 1, + ACTIONS(4335), 1, anon_sym_COMMA, - STATE(2373), 1, - aux_sym_with_clause_repeat1, + STATE(2378), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113874] = 4, - ACTIONS(4236), 1, - sym__newline, - ACTIONS(4238), 1, - sym__indent, - STATE(832), 1, - sym__match_block, + [114746] = 4, + ACTIONS(3789), 1, + anon_sym_DOT, + ACTIONS(3795), 1, + anon_sym_PIPE, + ACTIONS(4337), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113888] = 4, - ACTIONS(3304), 1, + [114760] = 4, + ACTIONS(3276), 1, anon_sym_COMMA, - ACTIONS(3306), 1, + ACTIONS(3278), 1, anon_sym_RBRACK, - STATE(2381), 1, + STATE(2494), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113902] = 4, - ACTIONS(4323), 1, - anon_sym_COMMA, - ACTIONS(4325), 1, - anon_sym_COLON, - STATE(2285), 1, - aux_sym_match_statement_repeat1, + [114774] = 4, + ACTIONS(4077), 1, + sym__newline, + ACTIONS(4079), 1, + sym__indent, + STATE(805), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113916] = 4, - ACTIONS(1147), 1, + [114788] = 4, + ACTIONS(2661), 1, anon_sym_RPAREN, - ACTIONS(4327), 1, + ACTIONS(4339), 1, anon_sym_COMMA, - STATE(2487), 1, - aux_sym_argument_list_repeat1, + STATE(2264), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113930] = 4, - ACTIONS(4329), 1, + [114802] = 4, + ACTIONS(1220), 1, + anon_sym_RPAREN, + ACTIONS(4341), 1, anon_sym_COMMA, - ACTIONS(4331), 1, - anon_sym_RBRACK, - STATE(2262), 1, - aux_sym_subscript_repeat1, + STATE(2249), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113944] = 4, - ACTIONS(1239), 1, + [114816] = 4, + ACTIONS(1222), 1, anon_sym_RPAREN, - ACTIONS(4333), 1, + ACTIONS(4343), 1, anon_sym_COMMA, - STATE(2487), 1, + STATE(2249), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113958] = 4, - ACTIONS(4335), 1, + [114830] = 4, + ACTIONS(4345), 1, anon_sym_COMMA, - ACTIONS(4337), 1, - anon_sym_RBRACK, - STATE(2262), 1, - aux_sym_subscript_repeat1, + ACTIONS(4347), 1, + anon_sym_COLON, + STATE(2305), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113972] = 4, - ACTIONS(4339), 1, + [114844] = 4, + ACTIONS(4349), 1, anon_sym_COMMA, - ACTIONS(4341), 1, + ACTIONS(4351), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2271), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113986] = 4, - ACTIONS(3386), 1, + [114858] = 4, + ACTIONS(3027), 1, + anon_sym_RBRACK, + ACTIONS(3043), 1, anon_sym_COMMA, - ACTIONS(3388), 1, - anon_sym_RBRACE, - STATE(2337), 1, - aux_sym_dictionary_repeat1, + STATE(2472), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114872] = 4, + ACTIONS(3225), 1, + anon_sym_COLON, + ACTIONS(4353), 1, + anon_sym_COMMA, + STATE(2382), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114000] = 2, + [114886] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4343), 3, - sym__newline, - anon_sym_SEMI, + ACTIONS(1661), 3, anon_sym_COMMA, - [114010] = 4, - ACTIONS(1335), 1, - anon_sym_RBRACE, - ACTIONS(4345), 1, + anon_sym_COLON, + anon_sym_EQ, + [114896] = 4, + ACTIONS(4071), 1, anon_sym_COMMA, - STATE(2481), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4356), 1, + anon_sym_in, + STATE(2363), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114024] = 3, - ACTIONS(4347), 1, - anon_sym_COLON, + [114910] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4026), 2, + ACTIONS(1661), 3, anon_sym_RPAREN, anon_sym_COMMA, - [114036] = 4, - ACTIONS(3042), 1, + anon_sym_EQ, + [114920] = 4, + ACTIONS(1298), 1, + anon_sym_RBRACE, + ACTIONS(4358), 1, anon_sym_COMMA, - ACTIONS(3115), 1, - anon_sym_RPAREN, - STATE(2335), 1, - aux_sym__collection_elements_repeat1, + STATE(2490), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114050] = 4, - ACTIONS(3427), 1, + [114934] = 4, + ACTIONS(3068), 1, anon_sym_COMMA, - ACTIONS(3429), 1, - anon_sym_RBRACE, - STATE(2391), 1, - aux_sym_dictionary_repeat1, + ACTIONS(3138), 1, + anon_sym_RPAREN, + STATE(2432), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114064] = 4, - ACTIONS(3981), 1, - anon_sym_RPAREN, - ACTIONS(4349), 1, - anon_sym_COMMA, - STATE(2292), 1, - aux_sym__import_list_repeat1, + [114948] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114078] = 4, - ACTIONS(2971), 1, - anon_sym_COLON, - ACTIONS(4351), 1, + ACTIONS(4018), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - STATE(2247), 1, - aux_sym__parameters_repeat1, + [114958] = 4, + ACTIONS(3441), 1, + anon_sym_COMMA, + ACTIONS(3443), 1, + anon_sym_RBRACE, + STATE(2391), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114092] = 4, - ACTIONS(2893), 1, - anon_sym_in, - ACTIONS(4353), 1, - anon_sym_COMMA, - STATE(2390), 1, - aux_sym__patterns_repeat1, + [114972] = 3, + ACTIONS(4060), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114106] = 4, - ACTIONS(1309), 1, + ACTIONS(4056), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [114984] = 4, + ACTIONS(1312), 1, anon_sym_RBRACE, - ACTIONS(4356), 1, + ACTIONS(4360), 1, anon_sym_COMMA, - STATE(2481), 1, + STATE(2490), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114120] = 3, - ACTIONS(3516), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3518), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [114132] = 4, - ACTIONS(3117), 1, - anon_sym_RPAREN, - ACTIONS(3119), 1, + [114998] = 4, + ACTIONS(2904), 1, + anon_sym_in, + ACTIONS(4362), 1, anon_sym_COMMA, - STATE(2397), 1, - aux_sym_argument_list_repeat1, + STATE(2392), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114146] = 4, - ACTIONS(4358), 1, + [115012] = 4, + ACTIONS(3140), 1, anon_sym_RPAREN, - ACTIONS(4360), 1, + ACTIONS(3142), 1, anon_sym_COMMA, - STATE(2399), 1, + STATE(2398), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114160] = 4, - ACTIONS(3981), 1, + [115026] = 4, + ACTIONS(4365), 1, anon_sym_RPAREN, - ACTIONS(4362), 1, + ACTIONS(4367), 1, anon_sym_COMMA, - STATE(2292), 1, - aux_sym__import_list_repeat1, + STATE(2400), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114174] = 4, - ACTIONS(3320), 1, + [115040] = 4, + ACTIONS(3294), 1, anon_sym_COMMA, - ACTIONS(3322), 1, + ACTIONS(3296), 1, anon_sym_RBRACK, STATE(2402), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114188] = 4, - ACTIONS(1205), 1, + [115054] = 4, + ACTIONS(4369), 1, anon_sym_RPAREN, - ACTIONS(4364), 1, + ACTIONS(4371), 1, anon_sym_COMMA, - STATE(2487), 1, - aux_sym_argument_list_repeat1, + STATE(2396), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114202] = 4, - ACTIONS(1429), 1, + [115068] = 4, + ACTIONS(3086), 1, anon_sym_RPAREN, - ACTIONS(4366), 1, + ACTIONS(3088), 1, anon_sym_COMMA, - STATE(2373), 1, - aux_sym_with_clause_repeat1, + STATE(2425), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114216] = 4, - ACTIONS(1207), 1, + [115082] = 4, + ACTIONS(1230), 1, anon_sym_RPAREN, - ACTIONS(4368), 1, + ACTIONS(4374), 1, anon_sym_COMMA, - STATE(2487), 1, + STATE(2249), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114230] = 3, - ACTIONS(3225), 1, - anon_sym_from, + [115096] = 4, + ACTIONS(4376), 1, + anon_sym_RPAREN, + ACTIONS(4378), 1, + anon_sym_COMMA, + STATE(2427), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3223), 2, - sym__newline, - anon_sym_SEMI, - [114242] = 4, - ACTIONS(4370), 1, + [115110] = 4, + ACTIONS(1232), 1, + anon_sym_RPAREN, + ACTIONS(4380), 1, anon_sym_COMMA, - ACTIONS(4372), 1, - anon_sym_RBRACK, - STATE(2262), 1, - aux_sym_subscript_repeat1, + STATE(2249), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114256] = 4, - ACTIONS(4374), 1, + [115124] = 4, + ACTIONS(4382), 1, anon_sym_COMMA, - ACTIONS(4376), 1, + ACTIONS(4384), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2271), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114270] = 4, - ACTIONS(3067), 1, - anon_sym_RPAREN, - ACTIONS(3069), 1, + [115138] = 4, + ACTIONS(4386), 1, anon_sym_COMMA, - STATE(2427), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4388), 1, + anon_sym_RBRACK, + STATE(2271), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114284] = 4, - ACTIONS(4378), 1, + [115152] = 4, + ACTIONS(1460), 1, anon_sym_RPAREN, - ACTIONS(4380), 1, + ACTIONS(4390), 1, anon_sym_COMMA, - STATE(2431), 1, - aux_sym_argument_list_repeat1, + STATE(2396), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114298] = 4, - ACTIONS(1155), 1, + [115166] = 4, + ACTIONS(4022), 1, anon_sym_RPAREN, - ACTIONS(4382), 1, + ACTIONS(4392), 1, anon_sym_COMMA, - STATE(2487), 1, - aux_sym_argument_list_repeat1, + STATE(2299), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114312] = 4, - ACTIONS(3275), 1, + [115180] = 4, + ACTIONS(3355), 1, anon_sym_COMMA, - ACTIONS(3277), 1, + ACTIONS(3357), 1, anon_sym_RBRACK, - STATE(2433), 1, + STATE(2439), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114326] = 4, - ACTIONS(4318), 1, - anon_sym_COLON, - ACTIONS(4384), 1, + [115194] = 4, + ACTIONS(4022), 1, + anon_sym_RPAREN, + ACTIONS(4394), 1, anon_sym_COMMA, - STATE(2407), 1, - aux_sym_with_clause_repeat1, + STATE(2299), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114340] = 4, - ACTIONS(3773), 1, + [115208] = 4, + ACTIONS(3891), 1, anon_sym_COLON, - ACTIONS(4387), 1, + ACTIONS(4396), 1, anon_sym_RBRACE, - STATE(2657), 1, + STATE(2665), 1, sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114354] = 4, - ACTIONS(4236), 1, + [115222] = 3, + ACTIONS(3704), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3706), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [115234] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4398), 3, sym__newline, - ACTIONS(4238), 1, + anon_sym_SEMI, + anon_sym_COMMA, + [115244] = 4, + ACTIONS(4077), 1, + sym__newline, + ACTIONS(4079), 1, sym__indent, - STATE(830), 1, + STATE(728), 1, sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114368] = 4, - ACTIONS(3042), 1, + [115258] = 4, + ACTIONS(3068), 1, anon_sym_COMMA, - ACTIONS(3127), 1, + ACTIONS(3150), 1, anon_sym_RPAREN, - STATE(2335), 1, + STATE(2432), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114382] = 4, - ACTIONS(3435), 1, + [115272] = 4, + ACTIONS(1444), 1, + anon_sym_COLON, + ACTIONS(4400), 1, + anon_sym_COMMA, + STATE(2420), 1, + aux_sym_with_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115286] = 4, + ACTIONS(3359), 1, anon_sym_COMMA, - ACTIONS(3437), 1, + ACTIONS(3361), 1, anon_sym_RBRACE, - STATE(2413), 1, + STATE(2415), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114396] = 4, - ACTIONS(4087), 1, - anon_sym_COMMA, - ACTIONS(4389), 1, - anon_sym_in, - STATE(2362), 1, - aux_sym__patterns_repeat1, + [115300] = 3, + ACTIONS(4402), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114410] = 4, - ACTIONS(1319), 1, + ACTIONS(4056), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115312] = 4, + ACTIONS(1328), 1, anon_sym_RBRACE, - ACTIONS(4391), 1, + ACTIONS(4404), 1, anon_sym_COMMA, - STATE(2481), 1, + STATE(2490), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114424] = 4, - ACTIONS(3129), 1, + [115326] = 4, + ACTIONS(3152), 1, anon_sym_RPAREN, - ACTIONS(3131), 1, + ACTIONS(3154), 1, anon_sym_COMMA, - STATE(2420), 1, + STATE(2421), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114438] = 4, - ACTIONS(4393), 1, + [115340] = 4, + ACTIONS(4406), 1, anon_sym_RPAREN, - ACTIONS(4395), 1, + ACTIONS(4408), 1, anon_sym_COMMA, - STATE(2421), 1, + STATE(2422), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114452] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3581), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [114462] = 4, - ACTIONS(2028), 1, - anon_sym_RPAREN, - ACTIONS(4397), 1, + [115354] = 4, + ACTIONS(3068), 1, anon_sym_COMMA, - STATE(2465), 1, - aux_sym__patterns_repeat1, + ACTIONS(4410), 1, + anon_sym_RPAREN, + STATE(2432), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114476] = 4, - ACTIONS(3324), 1, + [115368] = 4, + ACTIONS(3317), 1, anon_sym_COMMA, - ACTIONS(3326), 1, + ACTIONS(3319), 1, anon_sym_RBRACK, - STATE(2423), 1, + STATE(2424), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114490] = 4, - ACTIONS(2971), 1, - anon_sym_RPAREN, - ACTIONS(4399), 1, + [115382] = 4, + ACTIONS(4369), 1, + anon_sym_COLON, + ACTIONS(4412), 1, anon_sym_COMMA, - STATE(2440), 1, - aux_sym__parameters_repeat1, + STATE(2420), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114504] = 4, - ACTIONS(1217), 1, + [115396] = 4, + ACTIONS(1240), 1, anon_sym_RPAREN, - ACTIONS(4401), 1, + ACTIONS(4415), 1, anon_sym_COMMA, - STATE(2487), 1, + STATE(2249), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114518] = 4, - ACTIONS(1219), 1, + [115410] = 4, + ACTIONS(1242), 1, anon_sym_RPAREN, - ACTIONS(4403), 1, + ACTIONS(4417), 1, anon_sym_COMMA, - STATE(2487), 1, + STATE(2249), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114532] = 4, - ACTIONS(4405), 1, + [115424] = 4, + ACTIONS(4419), 1, anon_sym_COMMA, - ACTIONS(4407), 1, + ACTIONS(4421), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2271), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114546] = 4, - ACTIONS(4409), 1, + [115438] = 4, + ACTIONS(4423), 1, anon_sym_COMMA, - ACTIONS(4411), 1, + ACTIONS(4425), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2271), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114560] = 4, - ACTIONS(3042), 1, - anon_sym_COMMA, - ACTIONS(4413), 1, + [115452] = 4, + ACTIONS(1156), 1, anon_sym_RPAREN, - STATE(2335), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4427), 1, + anon_sym_COMMA, + STATE(2249), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114574] = 2, + [115466] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3964), 3, - sym__newline, - anon_sym_SEMI, + ACTIONS(3672), 3, anon_sym_COMMA, - [114584] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2479), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_in, - [114594] = 4, - ACTIONS(1173), 1, + anon_sym_as, + anon_sym_RBRACE, + [115476] = 4, + ACTIONS(1202), 1, anon_sym_RPAREN, - ACTIONS(4415), 1, + ACTIONS(4429), 1, anon_sym_COMMA, - STATE(2487), 1, + STATE(2249), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114608] = 4, - ACTIONS(3241), 1, + [115490] = 4, + ACTIONS(3321), 1, anon_sym_COMMA, - ACTIONS(3245), 1, + ACTIONS(3323), 1, anon_sym_RBRACK, STATE(2430), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114622] = 4, - ACTIONS(4417), 1, + [115504] = 4, + ACTIONS(4431), 1, anon_sym_COMMA, - ACTIONS(4419), 1, + ACTIONS(4433), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2271), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114636] = 4, - ACTIONS(4421), 1, + [115518] = 4, + ACTIONS(4435), 1, anon_sym_COMMA, - ACTIONS(4423), 1, + ACTIONS(4437), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2271), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114650] = 4, - ACTIONS(1183), 1, + [115532] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2484), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_in, + [115542] = 4, + ACTIONS(1274), 1, anon_sym_RPAREN, - ACTIONS(4425), 1, + ACTIONS(4439), 1, anon_sym_COMMA, - STATE(2487), 1, - aux_sym_argument_list_repeat1, + STATE(2466), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114664] = 4, - ACTIONS(4427), 1, + [115556] = 3, + ACTIONS(3244), 1, + anon_sym_from, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3242), 2, + sym__newline, + anon_sym_SEMI, + [115568] = 4, + ACTIONS(4441), 1, anon_sym_COMMA, - ACTIONS(4429), 1, + ACTIONS(4443), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2271), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114678] = 4, - ACTIONS(4431), 1, + [115582] = 4, + ACTIONS(3325), 1, anon_sym_COMMA, - ACTIONS(4433), 1, + ACTIONS(3327), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2438), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114692] = 4, - ACTIONS(3773), 1, - anon_sym_COLON, - ACTIONS(4435), 1, - anon_sym_RBRACE, - STATE(2700), 1, - sym_format_specifier, + [115596] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114706] = 4, - ACTIONS(3330), 1, + ACTIONS(3986), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [115606] = 4, + ACTIONS(4445), 1, anon_sym_COMMA, - ACTIONS(3332), 1, + ACTIONS(4447), 1, anon_sym_RBRACK, - STATE(2437), 1, + STATE(2271), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114720] = 4, - ACTIONS(4437), 1, + [115620] = 4, + ACTIONS(4449), 1, anon_sym_COMMA, - ACTIONS(4439), 1, + ACTIONS(4451), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2271), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114734] = 4, - ACTIONS(4441), 1, + [115634] = 4, + ACTIONS(4453), 1, anon_sym_COMMA, - ACTIONS(4443), 1, + ACTIONS(4455), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2271), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114748] = 4, - ACTIONS(1273), 1, - anon_sym_RBRACK, - ACTIONS(4445), 1, - anon_sym_COMMA, - STATE(2485), 1, - aux_sym_assert_statement_repeat1, + [115648] = 4, + ACTIONS(3891), 1, + anon_sym_COLON, + ACTIONS(4457), 1, + anon_sym_RBRACE, + STATE(2712), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114762] = 4, - ACTIONS(3042), 1, + [115662] = 4, + ACTIONS(2984), 1, + anon_sym_COLON, + ACTIONS(4459), 1, anon_sym_COMMA, - ACTIONS(4447), 1, - anon_sym_RPAREN, - STATE(2335), 1, - aux_sym__collection_elements_repeat1, + STATE(2267), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114776] = 4, - ACTIONS(4077), 1, + [115676] = 4, + ACTIONS(2984), 1, anon_sym_RPAREN, - ACTIONS(4449), 1, + ACTIONS(4461), 1, anon_sym_COMMA, - STATE(2440), 1, + STATE(2451), 1, aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114790] = 4, - ACTIONS(2652), 1, + [115690] = 4, + ACTIONS(1178), 1, anon_sym_RPAREN, - ACTIONS(4452), 1, + ACTIONS(4463), 1, anon_sym_COMMA, - STATE(2259), 1, - aux_sym_case_clause_repeat1, + STATE(2249), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114804] = 4, - ACTIONS(3367), 1, + [115704] = 4, + ACTIONS(1284), 1, + anon_sym_RBRACK, + ACTIONS(4465), 1, anon_sym_COMMA, - ACTIONS(4454), 1, - anon_sym_COLON, - STATE(2357), 1, - aux_sym_except_clause_repeat1, + STATE(2488), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114818] = 4, - ACTIONS(999), 1, - anon_sym_RBRACK, - ACTIONS(4456), 1, + [115718] = 4, + ACTIONS(3497), 1, anon_sym_COMMA, - STATE(2467), 1, - aux_sym_type_parameter_repeat1, + ACTIONS(3499), 1, + anon_sym_RBRACE, + STATE(2351), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114832] = 4, - ACTIONS(3796), 1, + [115732] = 4, + ACTIONS(3864), 1, anon_sym_LPAREN, - ACTIONS(4458), 1, + ACTIONS(4467), 1, anon_sym_COLON, - STATE(2688), 1, + STATE(2692), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114846] = 4, - ACTIONS(4087), 1, + [115746] = 4, + ACTIONS(4071), 1, anon_sym_COMMA, - ACTIONS(4460), 1, + ACTIONS(4469), 1, anon_sym_in, - STATE(2362), 1, + STATE(2363), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114860] = 4, - ACTIONS(4462), 1, - anon_sym_SEMI, - ACTIONS(4465), 1, - sym__newline, - STATE(2446), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114874] = 4, - ACTIONS(2654), 1, + [115760] = 4, + ACTIONS(1026), 1, anon_sym_RBRACK, - ACTIONS(4467), 1, + ACTIONS(4471), 1, anon_sym_COMMA, - STATE(2331), 1, - aux_sym_case_clause_repeat1, + STATE(2470), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114888] = 4, - ACTIONS(4087), 1, + [115774] = 4, + ACTIONS(4071), 1, anon_sym_COMMA, - ACTIONS(4469), 1, + ACTIONS(4473), 1, anon_sym_in, - STATE(2362), 1, + STATE(2363), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114902] = 4, - ACTIONS(3494), 1, + [115788] = 4, + ACTIONS(2709), 1, anon_sym_RPAREN, - ACTIONS(4471), 1, + ACTIONS(4475), 1, anon_sym_COMMA, - STATE(2449), 1, - aux_sym__collection_elements_repeat1, + STATE(2264), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115802] = 4, + ACTIONS(4120), 1, + anon_sym_RPAREN, + ACTIONS(4477), 1, + anon_sym_COMMA, + STATE(2451), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114916] = 4, - ACTIONS(3827), 1, + [115816] = 4, + ACTIONS(3789), 1, anon_sym_DOT, - ACTIONS(3831), 1, + ACTIONS(3795), 1, anon_sym_PIPE, - ACTIONS(4474), 1, + ACTIONS(4480), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115830] = 4, + ACTIONS(3387), 1, + anon_sym_COMMA, + ACTIONS(4482), 1, anon_sym_COLON, + STATE(2364), 1, + aux_sym_except_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114930] = 4, - ACTIONS(1247), 1, + [115844] = 4, + ACTIONS(2713), 1, anon_sym_RBRACK, - ACTIONS(4476), 1, + ACTIONS(4484), 1, anon_sym_COMMA, - STATE(2309), 1, - aux_sym__collection_elements_repeat1, + STATE(2337), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114944] = 4, - ACTIONS(3827), 1, + [115858] = 4, + ACTIONS(3789), 1, anon_sym_DOT, - ACTIONS(3831), 1, + ACTIONS(3795), 1, anon_sym_PIPE, - ACTIONS(4478), 1, + ACTIONS(4486), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114958] = 4, - ACTIONS(3367), 1, + [115872] = 4, + ACTIONS(3387), 1, anon_sym_COMMA, - ACTIONS(4480), 1, + ACTIONS(4488), 1, anon_sym_COLON, - STATE(2357), 1, + STATE(2364), 1, aux_sym_except_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114972] = 4, - ACTIONS(3827), 1, + [115886] = 4, + ACTIONS(3789), 1, anon_sym_DOT, - ACTIONS(3831), 1, + ACTIONS(3795), 1, anon_sym_PIPE, - ACTIONS(4482), 1, + ACTIONS(4490), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114986] = 4, - ACTIONS(3827), 1, + [115900] = 4, + ACTIONS(3789), 1, anon_sym_DOT, - ACTIONS(3831), 1, + ACTIONS(3795), 1, anon_sym_PIPE, - ACTIONS(4484), 1, + ACTIONS(4492), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115000] = 4, - ACTIONS(3367), 1, + [115914] = 4, + ACTIONS(3387), 1, anon_sym_COMMA, - ACTIONS(4486), 1, + ACTIONS(4494), 1, anon_sym_COLON, - STATE(2357), 1, + STATE(2364), 1, aux_sym_except_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115014] = 4, - ACTIONS(1247), 1, - anon_sym_RBRACE, - ACTIONS(4488), 1, + [115928] = 4, + ACTIONS(3068), 1, anon_sym_COMMA, - STATE(2264), 1, + ACTIONS(3082), 1, + anon_sym_RPAREN, + STATE(2432), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115028] = 4, - ACTIONS(4490), 1, - anon_sym_COMMA, - ACTIONS(4492), 1, + [115942] = 4, + ACTIONS(1274), 1, anon_sym_RBRACE, - STATE(2358), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(4496), 1, + anon_sym_COMMA, + STATE(2269), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115042] = 2, + [115956] = 4, + ACTIONS(4071), 1, + anon_sym_COMMA, + ACTIONS(4498), 1, + anon_sym_in, + STATE(2363), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2902), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [115052] = 4, - ACTIONS(4494), 1, + [115970] = 4, + ACTIONS(4500), 1, anon_sym_SEMI, - ACTIONS(4496), 1, + ACTIONS(4503), 1, sym__newline, - STATE(2332), 1, + STATE(2463), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115066] = 4, - ACTIONS(4087), 1, - anon_sym_COMMA, - ACTIONS(4498), 1, - anon_sym_in, - STATE(2362), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115080] = 4, - ACTIONS(4087), 1, + [115984] = 4, + ACTIONS(4281), 1, + anon_sym_RBRACK, + ACTIONS(4505), 1, anon_sym_COMMA, - ACTIONS(4500), 1, - anon_sym_in, - STATE(2362), 1, + STATE(2489), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115094] = 4, - ACTIONS(4502), 1, + [115998] = 4, + ACTIONS(4507), 1, anon_sym_COMMA, - ACTIONS(4504), 1, + ACTIONS(4509), 1, anon_sym_RBRACE, - STATE(2358), 1, + STATE(2361), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115108] = 4, - ACTIONS(1273), 1, + [116012] = 4, + ACTIONS(3588), 1, anon_sym_RPAREN, - ACTIONS(4506), 1, + ACTIONS(4511), 1, anon_sym_COMMA, - STATE(2267), 1, - aux_sym_assert_statement_repeat1, + STATE(2466), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115122] = 4, - ACTIONS(2893), 1, - anon_sym_RPAREN, - ACTIONS(4508), 1, + [116026] = 4, + ACTIONS(4514), 1, anon_sym_COMMA, - STATE(2465), 1, - aux_sym__patterns_repeat1, + ACTIONS(4516), 1, + anon_sym_RBRACE, + STATE(2361), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115136] = 4, - ACTIONS(2028), 1, - anon_sym_RBRACK, - ACTIONS(4511), 1, + [116040] = 4, + ACTIONS(1284), 1, + anon_sym_RPAREN, + ACTIONS(4518), 1, anon_sym_COMMA, - STATE(2483), 1, - aux_sym__patterns_repeat1, + STATE(2276), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115150] = 4, - ACTIONS(3821), 1, - anon_sym_RBRACK, - ACTIONS(4513), 1, + [116054] = 4, + ACTIONS(4520), 1, anon_sym_COMMA, - STATE(2467), 1, - aux_sym_type_parameter_repeat1, + ACTIONS(4522), 1, + anon_sym_RBRACE, + STATE(2478), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115164] = 4, - ACTIONS(4516), 1, + [116068] = 4, + ACTIONS(3854), 1, + anon_sym_RBRACK, + ACTIONS(4524), 1, anon_sym_COMMA, - ACTIONS(4518), 1, - anon_sym_RBRACE, - STATE(2477), 1, - aux_sym_dict_pattern_repeat1, + STATE(2470), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115178] = 4, - ACTIONS(1237), 1, + [116082] = 4, + ACTIONS(2904), 1, anon_sym_RPAREN, - ACTIONS(4520), 1, + ACTIONS(4527), 1, anon_sym_COMMA, - STATE(2487), 1, - aux_sym_argument_list_repeat1, + STATE(2471), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115192] = 3, - ACTIONS(3682), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3684), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [115204] = 4, - ACTIONS(4087), 1, + [116096] = 4, + ACTIONS(1274), 1, + anon_sym_RBRACK, + ACTIONS(4530), 1, anon_sym_COMMA, - ACTIONS(4522), 1, - anon_sym_in, - STATE(2362), 1, - aux_sym__patterns_repeat1, + STATE(2312), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115218] = 3, - ACTIONS(3697), 1, + [116110] = 3, + ACTIONS(3522), 1, aux_sym_format_specifier_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3699), 2, + ACTIONS(3524), 2, anon_sym_LBRACE, anon_sym_RBRACE, - [115230] = 4, - ACTIONS(2710), 1, + [116122] = 4, + ACTIONS(2705), 1, anon_sym_RPAREN, - ACTIONS(4524), 1, + ACTIONS(4532), 1, anon_sym_COMMA, - STATE(2259), 1, + STATE(2264), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115244] = 4, - ACTIONS(3827), 1, - anon_sym_DOT, - ACTIONS(3831), 1, - anon_sym_PIPE, - ACTIONS(4526), 1, - anon_sym_COLON, + [116136] = 4, + ACTIONS(630), 1, + sym__newline, + ACTIONS(4534), 1, + anon_sym_SEMI, + STATE(2463), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115258] = 4, - ACTIONS(2700), 1, + [116150] = 4, + ACTIONS(2707), 1, anon_sym_RBRACK, - ACTIONS(4528), 1, + ACTIONS(4536), 1, anon_sym_COMMA, - STATE(2331), 1, + STATE(2337), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115272] = 3, - ACTIONS(3528), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [116164] = 4, + ACTIONS(3789), 1, + anon_sym_DOT, + ACTIONS(3795), 1, + anon_sym_PIPE, + ACTIONS(4538), 1, + anon_sym_COLON, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3530), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [115284] = 4, - ACTIONS(4530), 1, + [116178] = 4, + ACTIONS(4540), 1, anon_sym_COMMA, - ACTIONS(4532), 1, + ACTIONS(4542), 1, anon_sym_RBRACE, - STATE(2358), 1, + STATE(2361), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115298] = 4, - ACTIONS(4534), 1, + [116192] = 4, + ACTIONS(4544), 1, anon_sym_COMMA, - ACTIONS(4536), 1, + ACTIONS(4546), 1, anon_sym_RBRACE, - STATE(2358), 1, + STATE(2361), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115312] = 4, - ACTIONS(3917), 1, + [116206] = 3, + ACTIONS(3538), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3540), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [116218] = 3, + ACTIONS(3563), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3565), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [116230] = 4, + ACTIONS(3930), 1, sym_identifier, - STATE(2286), 1, + STATE(2295), 1, sym_dotted_name, - STATE(2553), 1, + STATE(2569), 1, sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115326] = 4, - ACTIONS(1273), 1, - anon_sym_COLON, - ACTIONS(4538), 1, - anon_sym_COMMA, - STATE(2363), 1, - aux_sym_assert_statement_repeat1, + [116244] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115340] = 4, - ACTIONS(4540), 1, + ACTIONS(2915), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4543), 1, - anon_sym_RBRACE, - STATE(2481), 1, - aux_sym_dictionary_repeat1, + anon_sym_EQ, + [116254] = 4, + ACTIONS(2904), 1, + anon_sym_RBRACK, + ACTIONS(4548), 1, + anon_sym_COMMA, + STATE(2484), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115354] = 4, - ACTIONS(3863), 1, + [116268] = 4, + ACTIONS(2711), 1, anon_sym_RPAREN, - ACTIONS(3896), 1, + ACTIONS(4551), 1, anon_sym_COMMA, - STATE(2388), 1, - aux_sym__import_list_repeat1, + STATE(2264), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115368] = 4, - ACTIONS(2893), 1, - anon_sym_RBRACK, - ACTIONS(4545), 1, + [116282] = 4, + ACTIONS(3806), 1, + anon_sym_RPAREN, + ACTIONS(4062), 1, anon_sym_COMMA, - STATE(2483), 1, - aux_sym__patterns_repeat1, + STATE(2404), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115382] = 4, - ACTIONS(2660), 1, - anon_sym_RPAREN, - ACTIONS(4548), 1, + [116296] = 4, + ACTIONS(1284), 1, + anon_sym_COLON, + ACTIONS(4553), 1, anon_sym_COMMA, - STATE(2259), 1, - aux_sym_case_clause_repeat1, + STATE(2382), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115396] = 4, - ACTIONS(3235), 1, + [116310] = 4, + ACTIONS(3225), 1, anon_sym_RBRACK, - ACTIONS(4550), 1, + ACTIONS(4555), 1, anon_sym_COMMA, - STATE(2485), 1, + STATE(2488), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115410] = 4, - ACTIONS(4216), 1, + [116324] = 4, + ACTIONS(1919), 1, anon_sym_RBRACK, - ACTIONS(4553), 1, + ACTIONS(4558), 1, anon_sym_COMMA, - STATE(2466), 1, + STATE(2484), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115424] = 4, - ACTIONS(3665), 1, - anon_sym_RPAREN, - ACTIONS(4555), 1, + [116338] = 4, + ACTIONS(4560), 1, anon_sym_COMMA, - STATE(2487), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4563), 1, + anon_sym_RBRACE, + STATE(2490), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115438] = 4, - ACTIONS(4087), 1, + [116352] = 4, + ACTIONS(4071), 1, anon_sym_COMMA, - ACTIONS(4558), 1, + ACTIONS(4565), 1, anon_sym_in, - STATE(2362), 1, + STATE(2363), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115452] = 4, - ACTIONS(4087), 1, + [116366] = 4, + ACTIONS(4071), 1, anon_sym_COMMA, - ACTIONS(4560), 1, + ACTIONS(4567), 1, anon_sym_in, - STATE(2362), 1, + STATE(2363), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115466] = 4, - ACTIONS(4236), 1, - sym__newline, - ACTIONS(4238), 1, - sym__indent, - STATE(838), 1, - sym__match_block, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115480] = 2, + [116380] = 4, + ACTIONS(4071), 1, + anon_sym_COMMA, + ACTIONS(4569), 1, + anon_sym_in, + STATE(2363), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1688), 3, - anon_sym_RPAREN, + [116394] = 4, + ACTIONS(4571), 1, anon_sym_COMMA, - anon_sym_EQ, - [115490] = 2, + ACTIONS(4573), 1, + anon_sym_RBRACK, + STATE(2271), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4562), 2, - sym__newline, - anon_sym_SEMI, - [115499] = 3, - ACTIONS(3923), 1, - anon_sym_LPAREN, - STATE(2543), 1, - sym_parameters, + [116408] = 3, + ACTIONS(4575), 1, + anon_sym_COLON, + ACTIONS(4577), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115510] = 2, + [116419] = 3, + ACTIONS(4579), 1, + sym_integer, + ACTIONS(4581), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4318), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115519] = 2, + [116430] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1692), 2, + ACTIONS(1632), 2, sym__dedent, anon_sym_case, - [115528] = 2, + [116439] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4564), 2, + ACTIONS(4583), 2, anon_sym_COMMA, - anon_sym_COLON, - [115537] = 2, + anon_sym_RBRACK, + [116448] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4566), 2, + ACTIONS(4585), 2, sym__dedent, anon_sym_case, - [115546] = 2, + [116457] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4568), 2, + ACTIONS(4587), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [115555] = 2, + anon_sym_COLON, + [116466] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4570), 2, + ACTIONS(4589), 2, sym__dedent, anon_sym_case, - [115564] = 2, + [116475] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4572), 2, + ACTIONS(4591), 2, sym__dedent, anon_sym_case, - [115573] = 2, + [116484] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4026), 2, - anon_sym_RPAREN, + ACTIONS(4593), 2, anon_sym_COMMA, - [115582] = 2, + anon_sym_RBRACK, + [116493] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3316), 2, - sym__newline, - anon_sym_SEMI, - [115591] = 2, + ACTIONS(3588), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [116502] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4574), 2, - sym__dedent, - anon_sym_case, - [115600] = 2, + ACTIONS(4369), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [116511] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4576), 2, + ACTIONS(4587), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [115609] = 2, + [116520] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3494), 2, + ACTIONS(4583), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [115618] = 2, + anon_sym_RBRACE, + [116529] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4595), 2, + anon_sym__, + sym_identifier, + [116538] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3318), 2, + ACTIONS(3203), 2, sym__newline, anon_sym_SEMI, - [115627] = 2, + [116547] = 3, + ACTIONS(4597), 1, + sym_integer, + ACTIONS(4599), 1, + sym_float, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116558] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4026), 2, + ACTIONS(4056), 2, + anon_sym_RPAREN, anon_sym_COMMA, + [116567] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3306), 2, + sym__newline, + anon_sym_SEMI, + [116576] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1636), 2, + sym__dedent, + anon_sym_case, + [116585] = 3, + ACTIONS(4601), 1, anon_sym_COLON, - [115636] = 2, + ACTIONS(4603), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4578), 2, - anon_sym__, - sym_identifier, - [115645] = 2, + [116596] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4580), 2, + ACTIONS(3312), 2, sym__newline, anon_sym_SEMI, - [115654] = 2, + [116605] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4077), 2, + ACTIONS(4369), 2, anon_sym_COMMA, anon_sym_COLON, - [115663] = 2, + [116614] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 2, - sym__dedent, - anon_sym_case, - [115672] = 3, - ACTIONS(4582), 1, + ACTIONS(4605), 2, + anon_sym__, + sym_identifier, + [116623] = 3, + ACTIONS(4607), 1, sym_integer, - ACTIONS(4584), 1, + ACTIONS(4609), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115683] = 2, + [116634] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4026), 2, + ACTIONS(3197), 2, anon_sym_COMMA, - anon_sym_COLON, - [115692] = 2, + anon_sym_RBRACK, + [116643] = 3, + ACTIONS(4611), 1, + sym_integer, + ACTIONS(4613), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4318), 2, - anon_sym_COMMA, - anon_sym_COLON, - [115701] = 2, + [116654] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3199), 2, - sym__newline, - anon_sym_SEMI, - [115710] = 2, + ACTIONS(1627), 2, + sym__dedent, + anon_sym_case, + [116663] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4586), 2, + ACTIONS(4615), 2, + sym__newline, + anon_sym_SEMI, + [116672] = 3, + ACTIONS(4617), 1, anon_sym_COLON, + ACTIONS(4619), 1, anon_sym_DASH_GT, - [115719] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3199), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115728] = 2, + [116683] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4588), 2, + ACTIONS(4621), 2, anon_sym__, sym_identifier, - [115737] = 3, - ACTIONS(4590), 1, - anon_sym_COLON, - ACTIONS(4592), 1, - anon_sym_DASH_GT, + [116692] = 3, + ACTIONS(4623), 1, + sym_integer, + ACTIONS(4625), 1, + sym_float, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116703] = 3, + ACTIONS(3972), 1, + anon_sym_LPAREN, + STATE(2543), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115748] = 2, + [116714] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3494), 2, + ACTIONS(1612), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [115757] = 3, - ACTIONS(4594), 1, - sym_integer, - ACTIONS(4596), 1, - sym_float, + anon_sym_RBRACK, + [116723] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115768] = 2, + ACTIONS(4627), 2, + sym__newline, + anon_sym_SEMI, + [116732] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4598), 2, + ACTIONS(4629), 2, anon_sym_COLON, anon_sym_DASH_GT, - [115777] = 2, + [116741] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3199), 2, + ACTIONS(4056), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [115786] = 3, - ACTIONS(3923), 1, - anon_sym_LPAREN, - STATE(2592), 1, - sym_parameters, + anon_sym_COLON, + [116750] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115797] = 2, + ACTIONS(4631), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [116759] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [115806] = 2, + ACTIONS(4633), 2, + sym__dedent, + anon_sym_case, + [116768] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4600), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [115815] = 2, + ACTIONS(4635), 2, + sym__dedent, + anon_sym_case, + [116777] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4602), 2, - sym__newline, - anon_sym_SEMI, - [115824] = 2, + ACTIONS(3197), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [116786] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 2, + ACTIONS(4637), 2, sym__dedent, anon_sym_case, - [115833] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4604), 2, - anon_sym__, - sym_identifier, - [115842] = 2, + [116795] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4606), 2, - sym__newline, - anon_sym_SEMI, - [115851] = 3, - ACTIONS(4608), 1, + ACTIONS(4639), 2, + sym__dedent, + anon_sym_case, + [116804] = 3, + ACTIONS(4641), 1, sym_integer, - ACTIONS(4610), 1, + ACTIONS(4643), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115862] = 3, - ACTIONS(4612), 1, + [116815] = 3, + ACTIONS(4645), 1, sym_integer, - ACTIONS(4614), 1, + ACTIONS(4647), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115873] = 2, + [116826] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4616), 2, - sym__newline, - anon_sym_SEMI, - [115882] = 2, + ACTIONS(4593), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [116835] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4618), 2, + ACTIONS(4649), 2, sym__newline, anon_sym_SEMI, - [115891] = 3, - ACTIONS(4620), 1, - sym_integer, - ACTIONS(4622), 1, - sym_float, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115902] = 2, + [116844] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4624), 2, - sym__dedent, - anon_sym_case, - [115911] = 2, + ACTIONS(2913), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [116853] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4626), 2, - sym__newline, - anon_sym_SEMI, - [115920] = 2, + ACTIONS(4056), 2, + anon_sym_COMMA, + anon_sym_COLON, + [116862] = 3, + ACTIONS(4651), 1, + anon_sym_COLON, + ACTIONS(4653), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, - sym__dedent, - anon_sym_case, - [115929] = 3, - ACTIONS(4630), 1, + [116873] = 3, + ACTIONS(4655), 1, sym_integer, - ACTIONS(4632), 1, + ACTIONS(4657), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115940] = 2, + [116884] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2904), 2, + ACTIONS(4659), 2, anon_sym_RPAREN, anon_sym_COMMA, - [115949] = 2, + [116893] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4634), 2, + ACTIONS(1623), 2, sym__dedent, anon_sym_case, - [115958] = 2, + [116902] = 3, + ACTIONS(3972), 1, + anon_sym_LPAREN, + STATE(2495), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4636), 2, - sym__dedent, - anon_sym_case, - [115967] = 3, - ACTIONS(4638), 1, - anon_sym_COLON, - ACTIONS(4640), 1, - anon_sym_DASH_GT, + [116913] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115978] = 2, + ACTIONS(4120), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [116922] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4642), 2, + ACTIONS(4661), 2, sym__newline, anon_sym_SEMI, - [115987] = 2, + [116931] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4644), 2, + ACTIONS(4663), 2, sym__newline, anon_sym_SEMI, - [115996] = 2, + [116940] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1662), 2, - sym__dedent, - anon_sym_case, - [116005] = 3, - ACTIONS(4646), 1, - sym_integer, - ACTIONS(4648), 1, - sym_float, + ACTIONS(4665), 2, + sym__newline, + anon_sym_SEMI, + [116949] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116016] = 2, + ACTIONS(4667), 2, + sym__newline, + anon_sym_SEMI, + [116958] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4077), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [116025] = 2, + ACTIONS(4669), 2, + sym__newline, + anon_sym_SEMI, + [116967] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4564), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [116034] = 2, + ACTIONS(4671), 2, + sym__newline, + anon_sym_SEMI, + [116976] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4568), 2, + ACTIONS(4583), 2, anon_sym_RPAREN, anon_sym_COMMA, - [116043] = 2, + [116985] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4650), 2, + ACTIONS(4673), 2, sym__dedent, anon_sym_case, - [116052] = 2, + [116994] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4652), 2, - sym__dedent, - anon_sym_case, - [116061] = 2, + ACTIONS(4675), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [117003] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4056), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [116070] = 2, + ACTIONS(4677), 2, + sym__dedent, + anon_sym_case, + [117012] = 3, + ACTIONS(4679), 1, + anon_sym_COLON, + ACTIONS(4681), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4465), 2, - sym__newline, - anon_sym_SEMI, - [116079] = 2, + [117023] = 3, + ACTIONS(4683), 1, + anon_sym_COLON, + ACTIONS(4685), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4576), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [116088] = 2, + [117034] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3494), 2, + ACTIONS(4593), 2, anon_sym_RPAREN, anon_sym_COMMA, - [116097] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4654), 2, - sym__dedent, - anon_sym_case, - [116106] = 3, - ACTIONS(4656), 1, + [117043] = 3, + ACTIONS(4687), 1, anon_sym_COLON, - ACTIONS(4658), 1, + ACTIONS(4689), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116117] = 3, - ACTIONS(4660), 1, + [117054] = 3, + ACTIONS(4691), 1, anon_sym_COLON, - ACTIONS(4662), 1, + ACTIONS(4693), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116128] = 3, - ACTIONS(4664), 1, - anon_sym_COLON, - ACTIONS(4666), 1, - anon_sym_DASH_GT, + [117065] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116139] = 3, - ACTIONS(4668), 1, - sym_integer, - ACTIONS(4670), 1, - sym_float, + ACTIONS(3588), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [117074] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116150] = 3, - ACTIONS(4672), 1, - anon_sym_COLON, - ACTIONS(4674), 1, - anon_sym_DASH_GT, + ACTIONS(3588), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [117083] = 3, + ACTIONS(4695), 1, + sym_integer, + ACTIONS(4697), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116161] = 2, + [117094] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2893), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [116170] = 2, + ACTIONS(4699), 2, + sym__dedent, + anon_sym_case, + [117103] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4676), 2, - sym__dedent, - anon_sym_case, - [116179] = 2, + ACTIONS(4503), 2, + sym__newline, + anon_sym_SEMI, + [117112] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2902), 2, + ACTIONS(4018), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [116188] = 2, + [117121] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4678), 2, + ACTIONS(4701), 2, anon_sym__, sym_identifier, - [116197] = 3, - ACTIONS(4680), 1, + [117130] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4703), 2, + sym__dedent, + anon_sym_case, + [117139] = 3, + ACTIONS(4705), 1, sym_integer, - ACTIONS(4682), 1, + ACTIONS(4707), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116208] = 3, - ACTIONS(4684), 1, + [117150] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2915), 2, anon_sym_COMMA, - STATE(1966), 1, - aux_sym__patterns_repeat1, + anon_sym_RBRACK, + [117159] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116219] = 2, + ACTIONS(4120), 2, + anon_sym_COMMA, + anon_sym_COLON, + [117168] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4686), 2, + ACTIONS(4709), 2, sym__newline, anon_sym_SEMI, - [116228] = 2, + [117177] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4688), 2, - sym__newline, - anon_sym_SEMI, - [116237] = 3, - ACTIONS(4690), 1, + ACTIONS(2904), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [117186] = 3, + ACTIONS(4711), 1, sym_integer, - ACTIONS(4692), 1, + ACTIONS(4713), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116248] = 2, + [117197] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4694), 2, - sym__newline, - anon_sym_SEMI, - [116257] = 2, + ACTIONS(4715), 2, + sym__dedent, + anon_sym_case, + [117206] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4343), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [116266] = 2, + ACTIONS(4717), 2, + sym__newline, + anon_sym_SEMI, + [117215] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2904), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [116275] = 2, + ACTIONS(4719), 2, + sym__newline, + anon_sym_SEMI, + [117224] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4568), 2, + ACTIONS(2913), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [116284] = 3, - ACTIONS(4696), 1, + anon_sym_RBRACK, + [117233] = 3, + ACTIONS(4721), 1, sym_integer, - ACTIONS(4698), 1, + ACTIONS(4723), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116295] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4700), 2, - sym__newline, - anon_sym_SEMI, - [116304] = 2, + [117244] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 2, + ACTIONS(4398), 2, anon_sym_RPAREN, anon_sym_COMMA, - [116313] = 2, + [117253] = 3, + ACTIONS(4725), 1, + anon_sym_COMMA, + STATE(1898), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4702), 2, - sym__dedent, - anon_sym_case, - [116322] = 2, + [117264] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4543), 2, + ACTIONS(1612), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [116331] = 2, + [117273] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3468), 2, + ACTIONS(3439), 2, anon_sym_COMMA, anon_sym_RBRACK, - [116340] = 2, + [117282] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4576), 2, + ACTIONS(4563), 2, anon_sym_COMMA, anon_sym_RBRACE, - [116349] = 2, + [117291] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 2, + ACTIONS(1642), 2, sym__dedent, anon_sym_case, - [116358] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2893), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [116367] = 3, - ACTIONS(3923), 1, - anon_sym_LPAREN, - STATE(2560), 1, - sym_parameters, + [117300] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116378] = 3, - ACTIONS(3923), 1, + ACTIONS(4727), 2, + sym__newline, + anon_sym_SEMI, + [117309] = 3, + ACTIONS(3972), 1, anon_sym_LPAREN, STATE(2562), 1, sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116389] = 2, + [117320] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3665), 2, - anon_sym_RPAREN, + ACTIONS(2904), 2, anon_sym_COMMA, - [116398] = 3, - ACTIONS(4704), 1, - sym_integer, - ACTIONS(4706), 1, - sym_float, + anon_sym_RBRACK, + [117329] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116409] = 3, - ACTIONS(4708), 1, - anon_sym_COLON, - ACTIONS(4710), 1, - anon_sym_DASH_GT, + ACTIONS(4729), 2, + sym__dedent, + anon_sym_case, + [117338] = 3, + ACTIONS(3972), 1, + anon_sym_LPAREN, + STATE(2563), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116420] = 2, + [117349] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4712), 2, + ACTIONS(3605), 2, anon_sym_RPAREN, anon_sym_COMMA, - [116429] = 2, + [117358] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3192), 2, + ACTIONS(4731), 2, sym__newline, anon_sym_SEMI, - [116438] = 3, - ACTIONS(4714), 1, - anon_sym_COLON, - ACTIONS(4716), 1, - anon_sym_DASH_GT, + [117367] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116449] = 2, - ACTIONS(4718), 1, + ACTIONS(3197), 2, + sym__newline, + anon_sym_SEMI, + [117376] = 2, + ACTIONS(4733), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116457] = 2, - ACTIONS(4720), 1, - anon_sym_RBRACE, + [117384] = 2, + ACTIONS(4735), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116465] = 2, - ACTIONS(3407), 1, - anon_sym_COLON, + [117392] = 2, + ACTIONS(4737), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116473] = 2, - ACTIONS(4722), 1, + [117400] = 2, + ACTIONS(4739), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116481] = 2, - ACTIONS(4724), 1, - sym_identifier, + [117408] = 2, + ACTIONS(4741), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116489] = 2, - ACTIONS(4726), 1, - anon_sym_RPAREN, + [117416] = 2, + ACTIONS(4743), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116497] = 2, - ACTIONS(4728), 1, - sym_identifier, + [117424] = 2, + ACTIONS(4745), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116505] = 2, - ACTIONS(4730), 1, + [117432] = 2, + ACTIONS(4747), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116513] = 2, - ACTIONS(4732), 1, - sym_identifier, + [117440] = 2, + ACTIONS(4749), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116521] = 2, - ACTIONS(4734), 1, - anon_sym_COLON, + [117448] = 2, + ACTIONS(4751), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116529] = 2, - ACTIONS(4736), 1, + [117456] = 2, + ACTIONS(4753), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116537] = 2, - ACTIONS(3437), 1, + [117464] = 2, + ACTIONS(3361), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116545] = 2, - ACTIONS(4738), 1, - anon_sym_COLON, + [117472] = 2, + ACTIONS(4163), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116553] = 2, - ACTIONS(4740), 1, + [117480] = 2, + ACTIONS(4755), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116561] = 2, - ACTIONS(4742), 1, + [117488] = 2, + ACTIONS(4757), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116569] = 2, - ACTIONS(4744), 1, + [117496] = 2, + ACTIONS(4759), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116577] = 2, - ACTIONS(4746), 1, + [117504] = 2, + ACTIONS(4761), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116585] = 2, - ACTIONS(4748), 1, - anon_sym_RPAREN, + [117512] = 2, + ACTIONS(4763), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116593] = 2, - ACTIONS(4750), 1, + [117520] = 2, + ACTIONS(4765), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116601] = 2, - ACTIONS(4752), 1, + [117528] = 2, + ACTIONS(4767), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116609] = 2, - ACTIONS(4754), 1, - anon_sym_import, + [117536] = 2, + ACTIONS(4769), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116617] = 2, - ACTIONS(4756), 1, - sym_identifier, + [117544] = 2, + ACTIONS(4771), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116625] = 2, - ACTIONS(4758), 1, + [117552] = 2, + ACTIONS(4773), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116633] = 2, - ACTIONS(4760), 1, + [117560] = 2, + ACTIONS(4775), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116641] = 2, - ACTIONS(4762), 1, - anon_sym_COLON, + [117568] = 2, + ACTIONS(4777), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116649] = 2, - ACTIONS(3129), 1, + [117576] = 2, + ACTIONS(3152), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116657] = 2, - ACTIONS(4764), 1, - anon_sym_RPAREN, + [117584] = 2, + ACTIONS(4115), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [117592] = 2, + ACTIONS(4779), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116665] = 2, - ACTIONS(4766), 1, + [117600] = 2, + ACTIONS(4781), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116673] = 2, - ACTIONS(4768), 1, - sym_identifier, + [117608] = 2, + ACTIONS(3492), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [117616] = 2, + ACTIONS(3128), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116681] = 2, - ACTIONS(4770), 1, + [117624] = 2, + ACTIONS(4783), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116689] = 2, - ACTIONS(4772), 1, + [117632] = 2, + ACTIONS(4785), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116697] = 2, - ACTIONS(4774), 1, - anon_sym_RBRACE, + [117640] = 2, + ACTIONS(4787), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116705] = 2, - ACTIONS(4776), 1, - anon_sym_COLON_EQ, + [117648] = 2, + ACTIONS(4789), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116713] = 2, - ACTIONS(4778), 1, - anon_sym_RBRACK, + [117656] = 2, + ACTIONS(4791), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116721] = 2, - ACTIONS(4780), 1, + [117664] = 2, + ACTIONS(4793), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116729] = 2, - ACTIONS(4782), 1, + [117672] = 2, + ACTIONS(4795), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116737] = 2, - ACTIONS(4784), 1, - anon_sym_RBRACK, + [117680] = 2, + ACTIONS(4797), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116745] = 2, - ACTIONS(4786), 1, + [117688] = 2, + ACTIONS(4799), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116753] = 2, - ACTIONS(4788), 1, + [117696] = 2, + ACTIONS(4801), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116761] = 2, - ACTIONS(1473), 1, - anon_sym_def, + [117704] = 2, + ACTIONS(4803), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116769] = 2, - ACTIONS(4790), 1, + [117712] = 2, + ACTIONS(4805), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116777] = 2, - ACTIONS(4792), 1, - anon_sym_in, + [117720] = 2, + ACTIONS(4807), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116785] = 2, - ACTIONS(4794), 1, - sym_identifier, + [117728] = 2, + ACTIONS(4809), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116793] = 2, - ACTIONS(3087), 1, - anon_sym_RPAREN, + [117736] = 2, + ACTIONS(4811), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116801] = 2, - ACTIONS(4796), 1, - anon_sym_RBRACK, + [117744] = 2, + ACTIONS(4813), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116809] = 2, - ACTIONS(3377), 1, - anon_sym_COLON, + [117752] = 2, + ACTIONS(4815), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116817] = 2, - ACTIONS(4798), 1, - anon_sym_COLON, + [117760] = 2, + ACTIONS(4817), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116825] = 2, - ACTIONS(4389), 1, - anon_sym_in, + [117768] = 2, + ACTIONS(4819), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116833] = 2, - ACTIONS(4800), 1, - sym_identifier, + [117776] = 2, + ACTIONS(4821), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116841] = 2, - ACTIONS(4802), 1, + [117784] = 2, + ACTIONS(4823), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116849] = 2, - ACTIONS(4804), 1, - anon_sym_RBRACE, + [117792] = 2, + ACTIONS(4825), 1, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116857] = 2, - ACTIONS(4806), 1, - anon_sym_RPAREN, + [117800] = 2, + ACTIONS(4827), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116865] = 2, - ACTIONS(4808), 1, - sym_identifier, + [117808] = 2, + ACTIONS(3096), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116873] = 2, - ACTIONS(4810), 1, - anon_sym_RBRACK, + [117816] = 2, + ACTIONS(4829), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116881] = 2, - ACTIONS(4812), 1, + [117824] = 2, + ACTIONS(4831), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116889] = 2, - ACTIONS(4814), 1, + [117832] = 2, + ACTIONS(4833), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116897] = 2, - ACTIONS(4816), 1, - anon_sym_RBRACE, + [117840] = 2, + ACTIONS(4835), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116905] = 2, - ACTIONS(4818), 1, + [117848] = 2, + ACTIONS(4837), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116913] = 2, - ACTIONS(4820), 1, + [117856] = 2, + ACTIONS(4839), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116921] = 2, - ACTIONS(3077), 1, + [117864] = 2, + ACTIONS(4841), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116929] = 2, - ACTIONS(4822), 1, - anon_sym_COLON_EQ, + [117872] = 2, + ACTIONS(4843), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116937] = 2, - ACTIONS(4824), 1, - anon_sym_RBRACE, + [117880] = 2, + ACTIONS(4845), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116945] = 2, - ACTIONS(3485), 1, - anon_sym_RBRACE, + [117888] = 2, + ACTIONS(4847), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116953] = 2, - ACTIONS(4826), 1, - anon_sym_RPAREN, + [117896] = 2, + ACTIONS(4849), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116961] = 2, - ACTIONS(4828), 1, + [117904] = 2, + ACTIONS(4851), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116969] = 2, - ACTIONS(4830), 1, - anon_sym_RBRACK, + [117912] = 2, + ACTIONS(4853), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116977] = 2, - ACTIONS(4832), 1, - anon_sym_RPAREN, + [117920] = 2, + ACTIONS(4855), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116985] = 2, - ACTIONS(4834), 1, + [117928] = 2, + ACTIONS(4857), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116993] = 2, - ACTIONS(3381), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117001] = 2, - ACTIONS(4836), 1, - anon_sym_RBRACE, + [117936] = 2, + ACTIONS(4356), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117009] = 2, - ACTIONS(4838), 1, + [117944] = 2, + ACTIONS(4859), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117017] = 2, - ACTIONS(4840), 1, - sym_identifier, + [117952] = 2, + ACTIONS(4861), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117025] = 2, - ACTIONS(3429), 1, - anon_sym_RBRACE, + [117960] = 2, + ACTIONS(4863), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117033] = 2, - ACTIONS(4842), 1, + [117968] = 2, + ACTIONS(4865), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117041] = 2, - ACTIONS(4844), 1, - anon_sym_COLON, + [117976] = 2, + ACTIONS(3106), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117049] = 2, - ACTIONS(4846), 1, - sym_identifier, + [117984] = 2, + ACTIONS(4867), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117057] = 2, - ACTIONS(4848), 1, - anon_sym_RBRACE, + [117992] = 2, + ACTIONS(4869), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117065] = 2, - ACTIONS(4850), 1, - anon_sym_COLON_EQ, + [118000] = 2, + ACTIONS(4871), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117073] = 2, - ACTIONS(4852), 1, + [118008] = 2, + ACTIONS(4873), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117081] = 2, - ACTIONS(4854), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117089] = 2, - ACTIONS(4856), 1, - anon_sym_import, + [118016] = 2, + ACTIONS(4875), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117097] = 2, - ACTIONS(4858), 1, + [118024] = 2, + ACTIONS(4877), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117105] = 2, - ACTIONS(4860), 1, - anon_sym_COLON_EQ, + [118032] = 2, + ACTIONS(4879), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117113] = 2, - ACTIONS(4862), 1, + [118040] = 2, + ACTIONS(3443), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117121] = 2, - ACTIONS(4864), 1, - anon_sym_RBRACE, + [118048] = 2, + ACTIONS(4881), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117129] = 2, - ACTIONS(4866), 1, + [118056] = 2, + ACTIONS(4883), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117137] = 2, - ACTIONS(3388), 1, - anon_sym_RBRACE, + [118064] = 2, + ACTIONS(4885), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117145] = 2, - ACTIONS(4460), 1, + [118072] = 2, + ACTIONS(4469), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117153] = 2, - ACTIONS(4868), 1, - anon_sym_COLON, + [118080] = 2, + ACTIONS(4887), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117161] = 2, - ACTIONS(3451), 1, + [118088] = 2, + ACTIONS(3393), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117169] = 2, - ACTIONS(4870), 1, - anon_sym_RPAREN, + [118096] = 2, + ACTIONS(4889), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117177] = 2, - ACTIONS(4872), 1, + [118104] = 2, + ACTIONS(4891), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117185] = 2, - ACTIONS(4874), 1, - anon_sym_RBRACE, + [118112] = 2, + ACTIONS(4893), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117193] = 2, - ACTIONS(4876), 1, + [118120] = 2, + ACTIONS(4895), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117201] = 2, - ACTIONS(4878), 1, - sym_identifier, + [118128] = 2, + ACTIONS(4897), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117209] = 2, - ACTIONS(4880), 1, + [118136] = 2, + ACTIONS(4899), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117217] = 2, - ACTIONS(4882), 1, + [118144] = 2, + ACTIONS(4901), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117225] = 2, - ACTIONS(4469), 1, + [118152] = 2, + ACTIONS(4473), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117233] = 2, - ACTIONS(3453), 1, + [118160] = 2, + ACTIONS(3395), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117241] = 2, - ACTIONS(4884), 1, - anon_sym_COLON, + [118168] = 2, + ACTIONS(4903), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117249] = 2, - ACTIONS(4886), 1, - anon_sym_RPAREN, + [118176] = 2, + ACTIONS(4905), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117257] = 2, - ACTIONS(4888), 1, - anon_sym_RPAREN, + [118184] = 2, + ACTIONS(4907), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117265] = 2, - ACTIONS(4890), 1, - ts_builtin_sym_end, + [118192] = 2, + ACTIONS(3434), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117273] = 2, - ACTIONS(4892), 1, - sym_identifier, + [118200] = 2, + ACTIONS(4909), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117281] = 2, - ACTIONS(4894), 1, + [118208] = 2, + ACTIONS(4911), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117289] = 2, - ACTIONS(4896), 1, - anon_sym_RBRACK, + [118216] = 2, + ACTIONS(4913), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117297] = 2, - ACTIONS(4898), 1, - anon_sym_RBRACK, + [118224] = 2, + ACTIONS(4915), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117305] = 2, - ACTIONS(4900), 1, - anon_sym_RBRACE, + [118232] = 2, + ACTIONS(4917), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117313] = 2, - ACTIONS(4902), 1, + [118240] = 2, + ACTIONS(4919), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117321] = 2, - ACTIONS(4904), 1, - anon_sym_RBRACE, + [118248] = 2, + ACTIONS(4921), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117329] = 2, - ACTIONS(4906), 1, + [118256] = 2, + ACTIONS(4923), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117337] = 2, - ACTIONS(3396), 1, - anon_sym_RBRACE, + [118264] = 2, + ACTIONS(4925), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117345] = 2, - ACTIONS(4908), 1, + [118272] = 2, + ACTIONS(3484), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117353] = 2, - ACTIONS(4910), 1, - sym_identifier, + [118280] = 2, + ACTIONS(4927), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117361] = 2, - ACTIONS(4912), 1, - anon_sym_RPAREN, + [118288] = 2, + ACTIONS(4929), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117369] = 2, - ACTIONS(3411), 1, + [118296] = 2, + ACTIONS(4931), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117377] = 2, - ACTIONS(4914), 1, - anon_sym_RBRACE, + [118304] = 2, + ACTIONS(4933), 1, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117385] = 2, - ACTIONS(4916), 1, - anon_sym_RBRACE, + [118312] = 2, + ACTIONS(3122), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117393] = 2, - ACTIONS(4918), 1, + [118320] = 2, + ACTIONS(4935), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117401] = 2, - ACTIONS(4920), 1, - sym_identifier, + [118328] = 2, + ACTIONS(4937), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117409] = 2, - ACTIONS(4922), 1, - anon_sym_COLON, + [118336] = 2, + ACTIONS(4939), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117417] = 2, - ACTIONS(4924), 1, - sym_identifier, + [118344] = 2, + ACTIONS(4941), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117425] = 2, - ACTIONS(4926), 1, - anon_sym_RPAREN, + [118352] = 2, + ACTIONS(4943), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117433] = 2, + [118360] = 2, ACTIONS(4498), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117441] = 2, - ACTIONS(4928), 1, - sym_identifier, + [118368] = 2, + ACTIONS(3140), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117449] = 2, - ACTIONS(4500), 1, + [118376] = 2, + ACTIONS(4073), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117457] = 2, - ACTIONS(3117), 1, - anon_sym_RPAREN, + [118384] = 2, + ACTIONS(4945), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117465] = 2, - ACTIONS(4930), 1, + [118392] = 2, + ACTIONS(4947), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117473] = 2, - ACTIONS(4932), 1, - anon_sym_RPAREN, + [118400] = 2, + ACTIONS(4949), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117481] = 2, - ACTIONS(4934), 1, - anon_sym_RBRACK, + [118408] = 2, + ACTIONS(4951), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117489] = 2, - ACTIONS(4936), 1, - anon_sym_COLON, + [118416] = 2, + ACTIONS(4953), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117497] = 2, - ACTIONS(4938), 1, - anon_sym_RBRACK, + [118424] = 2, + ACTIONS(4955), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117505] = 2, - ACTIONS(4940), 1, - anon_sym_COLON, + [118432] = 2, + ACTIONS(4957), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117513] = 2, - ACTIONS(4942), 1, - anon_sym_for, + [118440] = 2, + ACTIONS(4959), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117521] = 2, - ACTIONS(3146), 1, - anon_sym_RPAREN, + [118448] = 2, + ACTIONS(4961), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117529] = 2, - ACTIONS(4944), 1, - anon_sym_RBRACE, + [118456] = 2, + ACTIONS(4963), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117537] = 2, - ACTIONS(4946), 1, + [118464] = 2, + ACTIONS(3499), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117545] = 2, - ACTIONS(4948), 1, - anon_sym_COLON, + [118472] = 2, + ACTIONS(4965), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117553] = 2, - ACTIONS(4950), 1, + [118480] = 2, + ACTIONS(4967), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117561] = 2, - ACTIONS(4952), 1, - anon_sym_RBRACK, + [118488] = 2, + ACTIONS(3086), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117569] = 2, - ACTIONS(3067), 1, - anon_sym_RPAREN, + [118496] = 2, + ACTIONS(3466), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117577] = 2, - ACTIONS(4954), 1, + [118504] = 2, + ACTIONS(4969), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117585] = 2, - ACTIONS(4257), 1, - anon_sym_in, + [118512] = 2, + ACTIONS(1536), 1, + anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117593] = 2, - ACTIONS(3097), 1, - anon_sym_RPAREN, + [118520] = 2, + ACTIONS(4971), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117601] = 2, - ACTIONS(4956), 1, - sym_identifier, + [118528] = 2, + ACTIONS(4973), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117609] = 2, - ACTIONS(4958), 1, - sym_identifier, + [118536] = 2, + ACTIONS(3369), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117617] = 2, - ACTIONS(4960), 1, - anon_sym_RBRACK, + [118544] = 2, + ACTIONS(4975), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117625] = 2, - ACTIONS(4962), 1, - anon_sym_COLON, + [118552] = 2, + ACTIONS(4977), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117633] = 2, - ACTIONS(4089), 1, - anon_sym_in, + [118560] = 2, + ACTIONS(4979), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117641] = 2, - ACTIONS(4964), 1, - anon_sym_RBRACE, + [118568] = 2, + ACTIONS(3116), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117649] = 2, - ACTIONS(1431), 1, + [118576] = 2, + ACTIONS(4981), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117657] = 2, - ACTIONS(4966), 1, - anon_sym_RBRACE, + [118584] = 2, + ACTIONS(4983), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117665] = 2, - ACTIONS(4968), 1, - anon_sym_COLON, + [118592] = 2, + ACTIONS(4985), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117673] = 2, - ACTIONS(4970), 1, - sym_identifier, + [118600] = 2, + ACTIONS(4987), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117681] = 2, - ACTIONS(4972), 1, - anon_sym_RBRACK, + [118608] = 2, + ACTIONS(4989), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117689] = 2, - ACTIONS(4974), 1, - sym_identifier, + [118616] = 2, + ACTIONS(4991), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117697] = 2, - ACTIONS(4976), 1, - anon_sym_RBRACE, + [118624] = 2, + ACTIONS(4993), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117705] = 2, - ACTIONS(4978), 1, - anon_sym_RBRACK, + [118632] = 2, + ACTIONS(4995), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117713] = 2, - ACTIONS(4980), 1, - sym_identifier, + [118640] = 2, + ACTIONS(4997), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117721] = 2, - ACTIONS(4982), 1, + [118648] = 2, + ACTIONS(4999), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117729] = 2, - ACTIONS(4984), 1, + [118656] = 2, + ACTIONS(5001), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117737] = 2, - ACTIONS(4986), 1, - anon_sym_RBRACE, + [118664] = 2, + ACTIONS(5003), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117745] = 2, - ACTIONS(4988), 1, + [118672] = 2, + ACTIONS(5005), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117753] = 2, - ACTIONS(4990), 1, - anon_sym_RPAREN, + [118680] = 2, + ACTIONS(5007), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117761] = 2, - ACTIONS(4992), 1, - anon_sym_import, + [118688] = 2, + ACTIONS(5009), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117769] = 2, - ACTIONS(3415), 1, + [118696] = 2, + ACTIONS(3464), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117777] = 2, - ACTIONS(4994), 1, - anon_sym_RPAREN, + [118704] = 2, + ACTIONS(1448), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117785] = 2, - ACTIONS(4522), 1, - anon_sym_in, + [118712] = 2, + ACTIONS(5011), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117793] = 2, - ACTIONS(4996), 1, - anon_sym_RBRACK, + [118720] = 2, + ACTIONS(5013), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117801] = 2, - ACTIONS(4998), 1, - anon_sym_COLON_EQ, + [118728] = 2, + ACTIONS(5015), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [118736] = 2, + ACTIONS(5017), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117809] = 2, - ACTIONS(5000), 1, + [118744] = 2, + ACTIONS(5019), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117817] = 2, - ACTIONS(5002), 1, - anon_sym_COLON_EQ, + [118752] = 2, + ACTIONS(5021), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117825] = 2, - ACTIONS(5004), 1, + [118760] = 2, + ACTIONS(5023), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117833] = 2, - ACTIONS(5006), 1, - anon_sym_RBRACE, + [118768] = 2, + ACTIONS(5025), 1, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117841] = 2, - ACTIONS(5008), 1, - anon_sym_RBRACE, + [118776] = 2, + ACTIONS(5027), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117849] = 2, - ACTIONS(5010), 1, - sym_identifier, + [118784] = 2, + ACTIONS(5029), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117857] = 2, - ACTIONS(5012), 1, - anon_sym_RPAREN, + [118792] = 2, + ACTIONS(3449), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117865] = 2, - ACTIONS(3107), 1, - anon_sym_RPAREN, + [118800] = 2, + ACTIONS(5031), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117873] = 2, - ACTIONS(5014), 1, + [118808] = 2, + ACTIONS(5033), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117881] = 2, - ACTIONS(5016), 1, + [118816] = 2, + ACTIONS(5035), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117889] = 2, - ACTIONS(5018), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117897] = 2, - ACTIONS(5020), 1, - anon_sym_RPAREN, + [118824] = 2, + ACTIONS(5037), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117905] = 2, - ACTIONS(5022), 1, - anon_sym_COLON, + [118832] = 2, + ACTIONS(5039), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117913] = 2, - ACTIONS(5024), 1, + [118840] = 2, + ACTIONS(5041), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117921] = 2, - ACTIONS(5026), 1, + [118848] = 2, + ACTIONS(5043), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117929] = 2, - ACTIONS(5028), 1, + [118856] = 2, + ACTIONS(5045), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117937] = 2, - ACTIONS(4558), 1, + [118864] = 2, + ACTIONS(4567), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117945] = 2, - ACTIONS(1481), 1, + [118872] = 2, + ACTIONS(1502), 1, anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117953] = 2, - ACTIONS(5030), 1, + [118880] = 2, + ACTIONS(5047), 1, anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117961] = 2, - ACTIONS(5032), 1, - sym_identifier, + [118888] = 2, + ACTIONS(5049), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117969] = 2, - ACTIONS(4560), 1, + [118896] = 2, + ACTIONS(4569), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117977] = 2, - ACTIONS(5034), 1, + [118904] = 2, + ACTIONS(5051), 1, anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117985] = 2, - ACTIONS(5036), 1, - anon_sym_RPAREN, + [118912] = 2, + ACTIONS(4565), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117993] = 2, - ACTIONS(5038), 1, - anon_sym_COLON, + [118920] = 2, + ACTIONS(5053), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118001] = 2, - ACTIONS(5040), 1, + [118928] = 2, + ACTIONS(5055), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, @@ -124762,2608 +126016,2612 @@ static const uint16_t ts_small_parse_table[] = { static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(185)] = 0, - [SMALL_STATE(186)] = 120, - [SMALL_STATE(187)] = 244, - [SMALL_STATE(188)] = 370, - [SMALL_STATE(189)] = 494, - [SMALL_STATE(190)] = 618, - [SMALL_STATE(191)] = 746, - [SMALL_STATE(192)] = 872, - [SMALL_STATE(193)] = 992, - [SMALL_STATE(194)] = 1120, - [SMALL_STATE(195)] = 1240, - [SMALL_STATE(196)] = 1366, - [SMALL_STATE(197)] = 1490, - [SMALL_STATE(198)] = 1614, - [SMALL_STATE(199)] = 1740, - [SMALL_STATE(200)] = 1864, - [SMALL_STATE(201)] = 1988, - [SMALL_STATE(202)] = 2114, - [SMALL_STATE(203)] = 2238, - [SMALL_STATE(204)] = 2362, - [SMALL_STATE(205)] = 2488, - [SMALL_STATE(206)] = 2612, - [SMALL_STATE(207)] = 2736, - [SMALL_STATE(208)] = 2862, - [SMALL_STATE(209)] = 2986, - [SMALL_STATE(210)] = 3110, - [SMALL_STATE(211)] = 3236, - [SMALL_STATE(212)] = 3360, - [SMALL_STATE(213)] = 3484, - [SMALL_STATE(214)] = 3610, - [SMALL_STATE(215)] = 3734, - [SMALL_STATE(216)] = 3858, - [SMALL_STATE(217)] = 3982, - [SMALL_STATE(218)] = 4106, - [SMALL_STATE(219)] = 4213, - [SMALL_STATE(220)] = 4320, - [SMALL_STATE(221)] = 4436, - [SMALL_STATE(222)] = 4552, - [SMALL_STATE(223)] = 4668, - [SMALL_STATE(224)] = 4784, - [SMALL_STATE(225)] = 4900, - [SMALL_STATE(226)] = 5016, - [SMALL_STATE(227)] = 5132, - [SMALL_STATE(228)] = 5248, - [SMALL_STATE(229)] = 5364, - [SMALL_STATE(230)] = 5480, - [SMALL_STATE(231)] = 5593, - [SMALL_STATE(232)] = 5706, - [SMALL_STATE(233)] = 5811, - [SMALL_STATE(234)] = 5924, - [SMALL_STATE(235)] = 6037, - [SMALL_STATE(236)] = 6150, - [SMALL_STATE(237)] = 6263, - [SMALL_STATE(238)] = 6376, - [SMALL_STATE(239)] = 6489, - [SMALL_STATE(240)] = 6602, - [SMALL_STATE(241)] = 6717, - [SMALL_STATE(242)] = 6830, - [SMALL_STATE(243)] = 6943, - [SMALL_STATE(244)] = 7054, - [SMALL_STATE(245)] = 7167, - [SMALL_STATE(246)] = 7282, - [SMALL_STATE(247)] = 7397, - [SMALL_STATE(248)] = 7510, - [SMALL_STATE(249)] = 7623, - [SMALL_STATE(250)] = 7736, - [SMALL_STATE(251)] = 7849, - [SMALL_STATE(252)] = 7964, - [SMALL_STATE(253)] = 8079, - [SMALL_STATE(254)] = 8196, - [SMALL_STATE(255)] = 8311, - [SMALL_STATE(256)] = 8416, - [SMALL_STATE(257)] = 8529, - [SMALL_STATE(258)] = 8644, - [SMALL_STATE(259)] = 8759, - [SMALL_STATE(260)] = 8872, - [SMALL_STATE(261)] = 8985, - [SMALL_STATE(262)] = 9098, - [SMALL_STATE(263)] = 9211, - [SMALL_STATE(264)] = 9324, - [SMALL_STATE(265)] = 9437, - [SMALL_STATE(266)] = 9550, - [SMALL_STATE(267)] = 9663, - [SMALL_STATE(268)] = 9778, - [SMALL_STATE(269)] = 9890, - [SMALL_STATE(270)] = 10002, - [SMALL_STATE(271)] = 10118, - [SMALL_STATE(272)] = 10230, - [SMALL_STATE(273)] = 10342, - [SMALL_STATE(274)] = 10454, - [SMALL_STATE(275)] = 10566, - [SMALL_STATE(276)] = 10678, - [SMALL_STATE(277)] = 10790, - [SMALL_STATE(278)] = 10902, - [SMALL_STATE(279)] = 11016, - [SMALL_STATE(280)] = 11128, - [SMALL_STATE(281)] = 11244, - [SMALL_STATE(282)] = 11356, - [SMALL_STATE(283)] = 11468, - [SMALL_STATE(284)] = 11580, - [SMALL_STATE(285)] = 11692, - [SMALL_STATE(286)] = 11804, - [SMALL_STATE(287)] = 11916, - [SMALL_STATE(288)] = 12030, - [SMALL_STATE(289)] = 12142, - [SMALL_STATE(290)] = 12258, - [SMALL_STATE(291)] = 12372, - [SMALL_STATE(292)] = 12484, - [SMALL_STATE(293)] = 12598, - [SMALL_STATE(294)] = 12710, - [SMALL_STATE(295)] = 12822, - [SMALL_STATE(296)] = 12936, - [SMALL_STATE(297)] = 13048, - [SMALL_STATE(298)] = 13162, - [SMALL_STATE(299)] = 13274, - [SMALL_STATE(300)] = 13390, - [SMALL_STATE(301)] = 13502, - [SMALL_STATE(302)] = 13614, - [SMALL_STATE(303)] = 13726, - [SMALL_STATE(304)] = 13838, - [SMALL_STATE(305)] = 13952, - [SMALL_STATE(306)] = 14064, - [SMALL_STATE(307)] = 14180, - [SMALL_STATE(308)] = 14292, - [SMALL_STATE(309)] = 14404, - [SMALL_STATE(310)] = 14516, - [SMALL_STATE(311)] = 14628, - [SMALL_STATE(312)] = 14742, - [SMALL_STATE(313)] = 14854, - [SMALL_STATE(314)] = 14966, - [SMALL_STATE(315)] = 15078, - [SMALL_STATE(316)] = 15190, - [SMALL_STATE(317)] = 15302, - [SMALL_STATE(318)] = 15414, - [SMALL_STATE(319)] = 15526, - [SMALL_STATE(320)] = 15638, - [SMALL_STATE(321)] = 15754, - [SMALL_STATE(322)] = 15866, - [SMALL_STATE(323)] = 15975, - [SMALL_STATE(324)] = 16084, - [SMALL_STATE(325)] = 16181, - [SMALL_STATE(326)] = 16290, - [SMALL_STATE(327)] = 16399, - [SMALL_STATE(328)] = 16508, - [SMALL_STATE(329)] = 16617, - [SMALL_STATE(330)] = 16722, - [SMALL_STATE(331)] = 16831, - [SMALL_STATE(332)] = 16940, - [SMALL_STATE(333)] = 17049, - [SMALL_STATE(334)] = 17154, - [SMALL_STATE(335)] = 17263, - [SMALL_STATE(336)] = 17372, - [SMALL_STATE(337)] = 17481, - [SMALL_STATE(338)] = 17590, - [SMALL_STATE(339)] = 17699, - [SMALL_STATE(340)] = 17808, - [SMALL_STATE(341)] = 17917, - [SMALL_STATE(342)] = 18026, - [SMALL_STATE(343)] = 18135, - [SMALL_STATE(344)] = 18244, - [SMALL_STATE(345)] = 18352, - [SMALL_STATE(346)] = 18460, - [SMALL_STATE(347)] = 18568, - [SMALL_STATE(348)] = 18676, - [SMALL_STATE(349)] = 18784, - [SMALL_STATE(350)] = 18892, - [SMALL_STATE(351)] = 18998, - [SMALL_STATE(352)] = 19104, - [SMALL_STATE(353)] = 19212, - [SMALL_STATE(354)] = 19320, - [SMALL_STATE(355)] = 19428, - [SMALL_STATE(356)] = 19536, - [SMALL_STATE(357)] = 19644, - [SMALL_STATE(358)] = 19752, - [SMALL_STATE(359)] = 19860, - [SMALL_STATE(360)] = 19968, - [SMALL_STATE(361)] = 20076, - [SMALL_STATE(362)] = 20182, - [SMALL_STATE(363)] = 20290, - [SMALL_STATE(364)] = 20398, - [SMALL_STATE(365)] = 20506, - [SMALL_STATE(366)] = 20614, - [SMALL_STATE(367)] = 20722, - [SMALL_STATE(368)] = 20829, - [SMALL_STATE(369)] = 20936, - [SMALL_STATE(370)] = 21043, - [SMALL_STATE(371)] = 21150, - [SMALL_STATE(372)] = 21255, - [SMALL_STATE(373)] = 21362, - [SMALL_STATE(374)] = 21467, - [SMALL_STATE(375)] = 21574, - [SMALL_STATE(376)] = 21681, - [SMALL_STATE(377)] = 21788, - [SMALL_STATE(378)] = 21895, - [SMALL_STATE(379)] = 22002, - [SMALL_STATE(380)] = 22107, - [SMALL_STATE(381)] = 22214, - [SMALL_STATE(382)] = 22321, - [SMALL_STATE(383)] = 22428, - [SMALL_STATE(384)] = 22535, - [SMALL_STATE(385)] = 22642, - [SMALL_STATE(386)] = 22747, - [SMALL_STATE(387)] = 22842, - [SMALL_STATE(388)] = 22949, - [SMALL_STATE(389)] = 23056, - [SMALL_STATE(390)] = 23163, - [SMALL_STATE(391)] = 23270, - [SMALL_STATE(392)] = 23377, - [SMALL_STATE(393)] = 23484, - [SMALL_STATE(394)] = 23591, - [SMALL_STATE(395)] = 23698, - [SMALL_STATE(396)] = 23805, - [SMALL_STATE(397)] = 23910, - [SMALL_STATE(398)] = 24017, - [SMALL_STATE(399)] = 24124, - [SMALL_STATE(400)] = 24229, - [SMALL_STATE(401)] = 24324, - [SMALL_STATE(402)] = 24431, - [SMALL_STATE(403)] = 24538, - [SMALL_STATE(404)] = 24645, - [SMALL_STATE(405)] = 24752, - [SMALL_STATE(406)] = 24856, - [SMALL_STATE(407)] = 24950, - [SMALL_STATE(408)] = 25044, - [SMALL_STATE(409)] = 25146, - [SMALL_STATE(410)] = 25248, - [SMALL_STATE(411)] = 25352, - [SMALL_STATE(412)] = 25448, - [SMALL_STATE(413)] = 25552, - [SMALL_STATE(414)] = 25656, - [SMALL_STATE(415)] = 25758, - [SMALL_STATE(416)] = 25860, - [SMALL_STATE(417)] = 25962, - [SMALL_STATE(418)] = 26056, - [SMALL_STATE(419)] = 26150, - [SMALL_STATE(420)] = 26252, - [SMALL_STATE(421)] = 26354, - [SMALL_STATE(422)] = 26456, - [SMALL_STATE(423)] = 26558, - [SMALL_STATE(424)] = 26662, - [SMALL_STATE(425)] = 26764, - [SMALL_STATE(426)] = 26866, - [SMALL_STATE(427)] = 26968, - [SMALL_STATE(428)] = 27070, - [SMALL_STATE(429)] = 27172, - [SMALL_STATE(430)] = 27274, - [SMALL_STATE(431)] = 27376, - [SMALL_STATE(432)] = 27478, - [SMALL_STATE(433)] = 27580, - [SMALL_STATE(434)] = 27684, - [SMALL_STATE(435)] = 27786, - [SMALL_STATE(436)] = 27888, - [SMALL_STATE(437)] = 27990, - [SMALL_STATE(438)] = 28092, - [SMALL_STATE(439)] = 28194, - [SMALL_STATE(440)] = 28298, - [SMALL_STATE(441)] = 28400, - [SMALL_STATE(442)] = 28502, - [SMALL_STATE(443)] = 28604, - [SMALL_STATE(444)] = 28706, - [SMALL_STATE(445)] = 28810, - [SMALL_STATE(446)] = 28914, - [SMALL_STATE(447)] = 29016, - [SMALL_STATE(448)] = 29120, - [SMALL_STATE(449)] = 29224, - [SMALL_STATE(450)] = 29328, - [SMALL_STATE(451)] = 29432, - [SMALL_STATE(452)] = 29536, - [SMALL_STATE(453)] = 29640, - [SMALL_STATE(454)] = 29744, - [SMALL_STATE(455)] = 29848, - [SMALL_STATE(456)] = 29952, - [SMALL_STATE(457)] = 30056, - [SMALL_STATE(458)] = 30160, - [SMALL_STATE(459)] = 30264, - [SMALL_STATE(460)] = 30366, - [SMALL_STATE(461)] = 30441, - [SMALL_STATE(462)] = 30542, - [SMALL_STATE(463)] = 30643, - [SMALL_STATE(464)] = 30744, - [SMALL_STATE(465)] = 30821, - [SMALL_STATE(466)] = 30922, - [SMALL_STATE(467)] = 31023, - [SMALL_STATE(468)] = 31124, - [SMALL_STATE(469)] = 31225, - [SMALL_STATE(470)] = 31326, - [SMALL_STATE(471)] = 31401, - [SMALL_STATE(472)] = 31502, - [SMALL_STATE(473)] = 31603, - [SMALL_STATE(474)] = 31704, - [SMALL_STATE(475)] = 31805, - [SMALL_STATE(476)] = 31880, - [SMALL_STATE(477)] = 31981, - [SMALL_STATE(478)] = 32082, - [SMALL_STATE(479)] = 32183, - [SMALL_STATE(480)] = 32281, - [SMALL_STATE(481)] = 32353, - [SMALL_STATE(482)] = 32451, - [SMALL_STATE(483)] = 32523, - [SMALL_STATE(484)] = 32621, - [SMALL_STATE(485)] = 32719, - [SMALL_STATE(486)] = 32817, - [SMALL_STATE(487)] = 32915, - [SMALL_STATE(488)] = 33013, - [SMALL_STATE(489)] = 33113, - [SMALL_STATE(490)] = 33185, - [SMALL_STATE(491)] = 33257, - [SMALL_STATE(492)] = 33355, - [SMALL_STATE(493)] = 33453, - [SMALL_STATE(494)] = 33551, - [SMALL_STATE(495)] = 33649, - [SMALL_STATE(496)] = 33747, - [SMALL_STATE(497)] = 33845, - [SMALL_STATE(498)] = 33943, - [SMALL_STATE(499)] = 34041, - [SMALL_STATE(500)] = 34139, - [SMALL_STATE(501)] = 34237, - [SMALL_STATE(502)] = 34335, - [SMALL_STATE(503)] = 34433, - [SMALL_STATE(504)] = 34531, - [SMALL_STATE(505)] = 34629, - [SMALL_STATE(506)] = 34727, - [SMALL_STATE(507)] = 34825, - [SMALL_STATE(508)] = 34923, - [SMALL_STATE(509)] = 35021, - [SMALL_STATE(510)] = 35119, - [SMALL_STATE(511)] = 35217, - [SMALL_STATE(512)] = 35315, - [SMALL_STATE(513)] = 35413, - [SMALL_STATE(514)] = 35511, - [SMALL_STATE(515)] = 35609, - [SMALL_STATE(516)] = 35707, - [SMALL_STATE(517)] = 35805, - [SMALL_STATE(518)] = 35903, - [SMALL_STATE(519)] = 36001, - [SMALL_STATE(520)] = 36099, - [SMALL_STATE(521)] = 36197, - [SMALL_STATE(522)] = 36295, - [SMALL_STATE(523)] = 36393, - [SMALL_STATE(524)] = 36491, - [SMALL_STATE(525)] = 36589, - [SMALL_STATE(526)] = 36687, - [SMALL_STATE(527)] = 36785, - [SMALL_STATE(528)] = 36883, - [SMALL_STATE(529)] = 36981, - [SMALL_STATE(530)] = 37079, - [SMALL_STATE(531)] = 37177, - [SMALL_STATE(532)] = 37275, - [SMALL_STATE(533)] = 37373, - [SMALL_STATE(534)] = 37471, - [SMALL_STATE(535)] = 37569, - [SMALL_STATE(536)] = 37667, - [SMALL_STATE(537)] = 37765, - [SMALL_STATE(538)] = 37863, - [SMALL_STATE(539)] = 37961, - [SMALL_STATE(540)] = 38059, - [SMALL_STATE(541)] = 38157, - [SMALL_STATE(542)] = 38255, - [SMALL_STATE(543)] = 38353, - [SMALL_STATE(544)] = 38451, - [SMALL_STATE(545)] = 38549, - [SMALL_STATE(546)] = 38649, - [SMALL_STATE(547)] = 38747, - [SMALL_STATE(548)] = 38845, - [SMALL_STATE(549)] = 38943, - [SMALL_STATE(550)] = 39041, - [SMALL_STATE(551)] = 39139, - [SMALL_STATE(552)] = 39237, - [SMALL_STATE(553)] = 39309, - [SMALL_STATE(554)] = 39407, - [SMALL_STATE(555)] = 39505, - [SMALL_STATE(556)] = 39603, - [SMALL_STATE(557)] = 39701, - [SMALL_STATE(558)] = 39799, - [SMALL_STATE(559)] = 39897, - [SMALL_STATE(560)] = 39995, - [SMALL_STATE(561)] = 40093, - [SMALL_STATE(562)] = 40191, - [SMALL_STATE(563)] = 40289, - [SMALL_STATE(564)] = 40387, - [SMALL_STATE(565)] = 40485, - [SMALL_STATE(566)] = 40583, - [SMALL_STATE(567)] = 40681, - [SMALL_STATE(568)] = 40779, - [SMALL_STATE(569)] = 40879, - [SMALL_STATE(570)] = 40977, - [SMALL_STATE(571)] = 41075, - [SMALL_STATE(572)] = 41173, - [SMALL_STATE(573)] = 41271, - [SMALL_STATE(574)] = 41369, - [SMALL_STATE(575)] = 41467, - [SMALL_STATE(576)] = 41567, - [SMALL_STATE(577)] = 41665, - [SMALL_STATE(578)] = 41763, - [SMALL_STATE(579)] = 41863, - [SMALL_STATE(580)] = 41961, - [SMALL_STATE(581)] = 42061, - [SMALL_STATE(582)] = 42159, - [SMALL_STATE(583)] = 42257, - [SMALL_STATE(584)] = 42355, - [SMALL_STATE(585)] = 42453, - [SMALL_STATE(586)] = 42551, - [SMALL_STATE(587)] = 42649, - [SMALL_STATE(588)] = 42747, - [SMALL_STATE(589)] = 42819, - [SMALL_STATE(590)] = 42891, - [SMALL_STATE(591)] = 42989, - [SMALL_STATE(592)] = 43089, - [SMALL_STATE(593)] = 43187, - [SMALL_STATE(594)] = 43285, - [SMALL_STATE(595)] = 43383, - [SMALL_STATE(596)] = 43481, - [SMALL_STATE(597)] = 43579, - [SMALL_STATE(598)] = 43677, - [SMALL_STATE(599)] = 43775, - [SMALL_STATE(600)] = 43873, - [SMALL_STATE(601)] = 43971, - [SMALL_STATE(602)] = 44069, - [SMALL_STATE(603)] = 44167, - [SMALL_STATE(604)] = 44239, - [SMALL_STATE(605)] = 44337, - [SMALL_STATE(606)] = 44435, - [SMALL_STATE(607)] = 44508, - [SMALL_STATE(608)] = 44570, - [SMALL_STATE(609)] = 44638, - [SMALL_STATE(610)] = 44706, - [SMALL_STATE(611)] = 44768, - [SMALL_STATE(612)] = 44836, - [SMALL_STATE(613)] = 44904, - [SMALL_STATE(614)] = 44972, - [SMALL_STATE(615)] = 45040, - [SMALL_STATE(616)] = 45108, - [SMALL_STATE(617)] = 45174, - [SMALL_STATE(618)] = 45240, - [SMALL_STATE(619)] = 45306, - [SMALL_STATE(620)] = 45374, - [SMALL_STATE(621)] = 45442, - [SMALL_STATE(622)] = 45510, - [SMALL_STATE(623)] = 45567, - [SMALL_STATE(624)] = 45624, - [SMALL_STATE(625)] = 45681, - [SMALL_STATE(626)] = 45738, - [SMALL_STATE(627)] = 45795, - [SMALL_STATE(628)] = 45860, - [SMALL_STATE(629)] = 45923, - [SMALL_STATE(630)] = 45986, - [SMALL_STATE(631)] = 46043, - [SMALL_STATE(632)] = 46106, - [SMALL_STATE(633)] = 46163, - [SMALL_STATE(634)] = 46220, - [SMALL_STATE(635)] = 46277, - [SMALL_STATE(636)] = 46334, - [SMALL_STATE(637)] = 46391, - [SMALL_STATE(638)] = 46454, - [SMALL_STATE(639)] = 46511, - [SMALL_STATE(640)] = 46568, - [SMALL_STATE(641)] = 46631, - [SMALL_STATE(642)] = 46694, - [SMALL_STATE(643)] = 46757, - [SMALL_STATE(644)] = 46818, - [SMALL_STATE(645)] = 46881, - [SMALL_STATE(646)] = 46944, - [SMALL_STATE(647)] = 47001, - [SMALL_STATE(648)] = 47062, - [SMALL_STATE(649)] = 47119, - [SMALL_STATE(650)] = 47176, - [SMALL_STATE(651)] = 47239, - [SMALL_STATE(652)] = 47296, - [SMALL_STATE(653)] = 47357, - [SMALL_STATE(654)] = 47413, - [SMALL_STATE(655)] = 47469, - [SMALL_STATE(656)] = 47525, - [SMALL_STATE(657)] = 47581, - [SMALL_STATE(658)] = 47637, - [SMALL_STATE(659)] = 47693, - [SMALL_STATE(660)] = 47749, - [SMALL_STATE(661)] = 47805, - [SMALL_STATE(662)] = 47861, - [SMALL_STATE(663)] = 47917, - [SMALL_STATE(664)] = 47973, - [SMALL_STATE(665)] = 48029, - [SMALL_STATE(666)] = 48085, - [SMALL_STATE(667)] = 48141, - [SMALL_STATE(668)] = 48197, - [SMALL_STATE(669)] = 48253, - [SMALL_STATE(670)] = 48309, - [SMALL_STATE(671)] = 48365, - [SMALL_STATE(672)] = 48421, - [SMALL_STATE(673)] = 48477, - [SMALL_STATE(674)] = 48533, - [SMALL_STATE(675)] = 48589, - [SMALL_STATE(676)] = 48645, - [SMALL_STATE(677)] = 48701, - [SMALL_STATE(678)] = 48757, - [SMALL_STATE(679)] = 48813, - [SMALL_STATE(680)] = 48869, - [SMALL_STATE(681)] = 48925, - [SMALL_STATE(682)] = 48981, - [SMALL_STATE(683)] = 49037, - [SMALL_STATE(684)] = 49129, - [SMALL_STATE(685)] = 49185, - [SMALL_STATE(686)] = 49277, - [SMALL_STATE(687)] = 49333, - [SMALL_STATE(688)] = 49389, - [SMALL_STATE(689)] = 49445, - [SMALL_STATE(690)] = 49501, - [SMALL_STATE(691)] = 49557, - [SMALL_STATE(692)] = 49612, - [SMALL_STATE(693)] = 49667, - [SMALL_STATE(694)] = 49726, - [SMALL_STATE(695)] = 49785, - [SMALL_STATE(696)] = 49840, - [SMALL_STATE(697)] = 49895, - [SMALL_STATE(698)] = 49954, - [SMALL_STATE(699)] = 50013, - [SMALL_STATE(700)] = 50072, - [SMALL_STATE(701)] = 50131, - [SMALL_STATE(702)] = 50190, - [SMALL_STATE(703)] = 50249, - [SMALL_STATE(704)] = 50308, - [SMALL_STATE(705)] = 50367, - [SMALL_STATE(706)] = 50426, - [SMALL_STATE(707)] = 50485, - [SMALL_STATE(708)] = 50544, - [SMALL_STATE(709)] = 50603, - [SMALL_STATE(710)] = 50658, - [SMALL_STATE(711)] = 50713, - [SMALL_STATE(712)] = 50772, - [SMALL_STATE(713)] = 50831, - [SMALL_STATE(714)] = 50890, - [SMALL_STATE(715)] = 50949, - [SMALL_STATE(716)] = 51008, - [SMALL_STATE(717)] = 51067, - [SMALL_STATE(718)] = 51159, - [SMALL_STATE(719)] = 51213, - [SMALL_STATE(720)] = 51267, - [SMALL_STATE(721)] = 51321, - [SMALL_STATE(722)] = 51375, - [SMALL_STATE(723)] = 51467, - [SMALL_STATE(724)] = 51520, - [SMALL_STATE(725)] = 51573, - [SMALL_STATE(726)] = 51626, - [SMALL_STATE(727)] = 51679, - [SMALL_STATE(728)] = 51732, - [SMALL_STATE(729)] = 51785, - [SMALL_STATE(730)] = 51874, - [SMALL_STATE(731)] = 51927, - [SMALL_STATE(732)] = 51980, - [SMALL_STATE(733)] = 52033, - [SMALL_STATE(734)] = 52086, - [SMALL_STATE(735)] = 52139, - [SMALL_STATE(736)] = 52192, - [SMALL_STATE(737)] = 52245, - [SMALL_STATE(738)] = 52298, - [SMALL_STATE(739)] = 52351, - [SMALL_STATE(740)] = 52404, - [SMALL_STATE(741)] = 52457, - [SMALL_STATE(742)] = 52510, - [SMALL_STATE(743)] = 52563, - [SMALL_STATE(744)] = 52616, - [SMALL_STATE(745)] = 52669, - [SMALL_STATE(746)] = 52722, - [SMALL_STATE(747)] = 52775, - [SMALL_STATE(748)] = 52828, - [SMALL_STATE(749)] = 52881, - [SMALL_STATE(750)] = 52934, - [SMALL_STATE(751)] = 52987, - [SMALL_STATE(752)] = 53040, - [SMALL_STATE(753)] = 53093, - [SMALL_STATE(754)] = 53146, - [SMALL_STATE(755)] = 53199, - [SMALL_STATE(756)] = 53252, - [SMALL_STATE(757)] = 53305, - [SMALL_STATE(758)] = 53358, - [SMALL_STATE(759)] = 53411, - [SMALL_STATE(760)] = 53464, - [SMALL_STATE(761)] = 53553, - [SMALL_STATE(762)] = 53606, - [SMALL_STATE(763)] = 53659, - [SMALL_STATE(764)] = 53712, - [SMALL_STATE(765)] = 53765, - [SMALL_STATE(766)] = 53818, - [SMALL_STATE(767)] = 53871, - [SMALL_STATE(768)] = 53924, - [SMALL_STATE(769)] = 53977, - [SMALL_STATE(770)] = 54030, - [SMALL_STATE(771)] = 54083, - [SMALL_STATE(772)] = 54136, - [SMALL_STATE(773)] = 54189, - [SMALL_STATE(774)] = 54278, - [SMALL_STATE(775)] = 54331, - [SMALL_STATE(776)] = 54384, - [SMALL_STATE(777)] = 54437, - [SMALL_STATE(778)] = 54490, - [SMALL_STATE(779)] = 54543, - [SMALL_STATE(780)] = 54596, - [SMALL_STATE(781)] = 54649, - [SMALL_STATE(782)] = 54738, - [SMALL_STATE(783)] = 54791, - [SMALL_STATE(784)] = 54844, - [SMALL_STATE(785)] = 54897, - [SMALL_STATE(786)] = 54950, - [SMALL_STATE(787)] = 55003, - [SMALL_STATE(788)] = 55056, - [SMALL_STATE(789)] = 55109, - [SMALL_STATE(790)] = 55162, - [SMALL_STATE(791)] = 55215, - [SMALL_STATE(792)] = 55268, - [SMALL_STATE(793)] = 55321, - [SMALL_STATE(794)] = 55374, - [SMALL_STATE(795)] = 55427, - [SMALL_STATE(796)] = 55516, - [SMALL_STATE(797)] = 55569, - [SMALL_STATE(798)] = 55622, - [SMALL_STATE(799)] = 55711, - [SMALL_STATE(800)] = 55764, - [SMALL_STATE(801)] = 55817, - [SMALL_STATE(802)] = 55870, - [SMALL_STATE(803)] = 55923, - [SMALL_STATE(804)] = 56012, - [SMALL_STATE(805)] = 56065, - [SMALL_STATE(806)] = 56118, - [SMALL_STATE(807)] = 56171, - [SMALL_STATE(808)] = 56224, - [SMALL_STATE(809)] = 56277, - [SMALL_STATE(810)] = 56330, - [SMALL_STATE(811)] = 56383, - [SMALL_STATE(812)] = 56472, - [SMALL_STATE(813)] = 56525, - [SMALL_STATE(814)] = 56578, - [SMALL_STATE(815)] = 56631, - [SMALL_STATE(816)] = 56684, - [SMALL_STATE(817)] = 56737, - [SMALL_STATE(818)] = 56790, - [SMALL_STATE(819)] = 56843, - [SMALL_STATE(820)] = 56896, - [SMALL_STATE(821)] = 56949, - [SMALL_STATE(822)] = 57002, - [SMALL_STATE(823)] = 57055, - [SMALL_STATE(824)] = 57108, - [SMALL_STATE(825)] = 57197, - [SMALL_STATE(826)] = 57250, - [SMALL_STATE(827)] = 57339, - [SMALL_STATE(828)] = 57392, - [SMALL_STATE(829)] = 57481, - [SMALL_STATE(830)] = 57534, - [SMALL_STATE(831)] = 57587, - [SMALL_STATE(832)] = 57640, - [SMALL_STATE(833)] = 57693, - [SMALL_STATE(834)] = 57746, - [SMALL_STATE(835)] = 57799, - [SMALL_STATE(836)] = 57852, - [SMALL_STATE(837)] = 57905, - [SMALL_STATE(838)] = 57994, - [SMALL_STATE(839)] = 58047, - [SMALL_STATE(840)] = 58136, - [SMALL_STATE(841)] = 58189, - [SMALL_STATE(842)] = 58242, - [SMALL_STATE(843)] = 58331, - [SMALL_STATE(844)] = 58420, - [SMALL_STATE(845)] = 58473, - [SMALL_STATE(846)] = 58562, - [SMALL_STATE(847)] = 58615, - [SMALL_STATE(848)] = 58701, - [SMALL_STATE(849)] = 58787, - [SMALL_STATE(850)] = 58873, - [SMALL_STATE(851)] = 58959, - [SMALL_STATE(852)] = 59045, - [SMALL_STATE(853)] = 59131, - [SMALL_STATE(854)] = 59214, - [SMALL_STATE(855)] = 59297, - [SMALL_STATE(856)] = 59375, - [SMALL_STATE(857)] = 59453, - [SMALL_STATE(858)] = 59531, - [SMALL_STATE(859)] = 59609, - [SMALL_STATE(860)] = 59695, - [SMALL_STATE(861)] = 59773, - [SMALL_STATE(862)] = 59851, - [SMALL_STATE(863)] = 59929, - [SMALL_STATE(864)] = 60007, - [SMALL_STATE(865)] = 60082, - [SMALL_STATE(866)] = 60157, - [SMALL_STATE(867)] = 60232, - [SMALL_STATE(868)] = 60307, - [SMALL_STATE(869)] = 60382, - [SMALL_STATE(870)] = 60467, - [SMALL_STATE(871)] = 60546, - [SMALL_STATE(872)] = 60621, - [SMALL_STATE(873)] = 60696, - [SMALL_STATE(874)] = 60771, - [SMALL_STATE(875)] = 60846, - [SMALL_STATE(876)] = 60921, - [SMALL_STATE(877)] = 61000, - [SMALL_STATE(878)] = 61075, - [SMALL_STATE(879)] = 61150, - [SMALL_STATE(880)] = 61225, - [SMALL_STATE(881)] = 61300, - [SMALL_STATE(882)] = 61375, - [SMALL_STATE(883)] = 61450, - [SMALL_STATE(884)] = 61525, - [SMALL_STATE(885)] = 61600, - [SMALL_STATE(886)] = 61675, - [SMALL_STATE(887)] = 61750, - [SMALL_STATE(888)] = 61825, - [SMALL_STATE(889)] = 61900, - [SMALL_STATE(890)] = 61975, - [SMALL_STATE(891)] = 62050, - [SMALL_STATE(892)] = 62125, - [SMALL_STATE(893)] = 62200, - [SMALL_STATE(894)] = 62275, - [SMALL_STATE(895)] = 62354, - [SMALL_STATE(896)] = 62429, - [SMALL_STATE(897)] = 62504, - [SMALL_STATE(898)] = 62579, - [SMALL_STATE(899)] = 62654, - [SMALL_STATE(900)] = 62733, - [SMALL_STATE(901)] = 62808, - [SMALL_STATE(902)] = 62883, - [SMALL_STATE(903)] = 62958, - [SMALL_STATE(904)] = 63033, - [SMALL_STATE(905)] = 63108, - [SMALL_STATE(906)] = 63183, - [SMALL_STATE(907)] = 63262, - [SMALL_STATE(908)] = 63337, - [SMALL_STATE(909)] = 63412, - [SMALL_STATE(910)] = 63491, - [SMALL_STATE(911)] = 63566, - [SMALL_STATE(912)] = 63641, - [SMALL_STATE(913)] = 63716, - [SMALL_STATE(914)] = 63795, - [SMALL_STATE(915)] = 63874, - [SMALL_STATE(916)] = 63953, - [SMALL_STATE(917)] = 64032, - [SMALL_STATE(918)] = 64111, - [SMALL_STATE(919)] = 64186, - [SMALL_STATE(920)] = 64261, - [SMALL_STATE(921)] = 64336, - [SMALL_STATE(922)] = 64411, - [SMALL_STATE(923)] = 64486, - [SMALL_STATE(924)] = 64561, - [SMALL_STATE(925)] = 64636, - [SMALL_STATE(926)] = 64715, - [SMALL_STATE(927)] = 64790, - [SMALL_STATE(928)] = 64869, - [SMALL_STATE(929)] = 64948, - [SMALL_STATE(930)] = 65023, - [SMALL_STATE(931)] = 65098, - [SMALL_STATE(932)] = 65177, - [SMALL_STATE(933)] = 65256, - [SMALL_STATE(934)] = 65331, - [SMALL_STATE(935)] = 65410, - [SMALL_STATE(936)] = 65495, - [SMALL_STATE(937)] = 65570, - [SMALL_STATE(938)] = 65645, - [SMALL_STATE(939)] = 65720, - [SMALL_STATE(940)] = 65795, - [SMALL_STATE(941)] = 65870, - [SMALL_STATE(942)] = 65945, - [SMALL_STATE(943)] = 66030, - [SMALL_STATE(944)] = 66105, - [SMALL_STATE(945)] = 66180, - [SMALL_STATE(946)] = 66255, - [SMALL_STATE(947)] = 66330, - [SMALL_STATE(948)] = 66405, - [SMALL_STATE(949)] = 66480, - [SMALL_STATE(950)] = 66555, - [SMALL_STATE(951)] = 66630, - [SMALL_STATE(952)] = 66709, - [SMALL_STATE(953)] = 66788, - [SMALL_STATE(954)] = 66867, - [SMALL_STATE(955)] = 66942, - [SMALL_STATE(956)] = 67017, - [SMALL_STATE(957)] = 67092, - [SMALL_STATE(958)] = 67167, - [SMALL_STATE(959)] = 67242, - [SMALL_STATE(960)] = 67326, - [SMALL_STATE(961)] = 67378, - [SMALL_STATE(962)] = 67430, - [SMALL_STATE(963)] = 67514, - [SMALL_STATE(964)] = 67596, - [SMALL_STATE(965)] = 67680, - [SMALL_STATE(966)] = 67732, - [SMALL_STATE(967)] = 67783, - [SMALL_STATE(968)] = 67840, - [SMALL_STATE(969)] = 67891, - [SMALL_STATE(970)] = 67942, - [SMALL_STATE(971)] = 68013, - [SMALL_STATE(972)] = 68064, - [SMALL_STATE(973)] = 68121, - [SMALL_STATE(974)] = 68172, - [SMALL_STATE(975)] = 68233, - [SMALL_STATE(976)] = 68302, - [SMALL_STATE(977)] = 68383, - [SMALL_STATE(978)] = 68440, - [SMALL_STATE(979)] = 68491, - [SMALL_STATE(980)] = 68558, - [SMALL_STATE(981)] = 68609, - [SMALL_STATE(982)] = 68660, - [SMALL_STATE(983)] = 68711, - [SMALL_STATE(984)] = 68776, - [SMALL_STATE(985)] = 68833, - [SMALL_STATE(986)] = 68896, - [SMALL_STATE(987)] = 68948, - [SMALL_STATE(988)] = 69004, - [SMALL_STATE(989)] = 69074, - [SMALL_STATE(990)] = 69134, - [SMALL_STATE(991)] = 69180, - [SMALL_STATE(992)] = 69260, - [SMALL_STATE(993)] = 69340, - [SMALL_STATE(994)] = 69390, - [SMALL_STATE(995)] = 69460, - [SMALL_STATE(996)] = 69526, - [SMALL_STATE(997)] = 69574, - [SMALL_STATE(998)] = 69624, - [SMALL_STATE(999)] = 69688, - [SMALL_STATE(1000)] = 69744, - [SMALL_STATE(1001)] = 69800, - [SMALL_STATE(1002)] = 69866, - [SMALL_STATE(1003)] = 69922, - [SMALL_STATE(1004)] = 69986, - [SMALL_STATE(1005)] = 70066, - [SMALL_STATE(1006)] = 70122, - [SMALL_STATE(1007)] = 70182, - [SMALL_STATE(1008)] = 70228, - [SMALL_STATE(1009)] = 70274, - [SMALL_STATE(1010)] = 70324, - [SMALL_STATE(1011)] = 70386, - [SMALL_STATE(1012)] = 70438, - [SMALL_STATE(1013)] = 70488, - [SMALL_STATE(1014)] = 70534, - [SMALL_STATE(1015)] = 70580, - [SMALL_STATE(1016)] = 70626, - [SMALL_STATE(1017)] = 70682, - [SMALL_STATE(1018)] = 70732, - [SMALL_STATE(1019)] = 70780, - [SMALL_STATE(1020)] = 70830, - [SMALL_STATE(1021)] = 70898, - [SMALL_STATE(1022)] = 70954, - [SMALL_STATE(1023)] = 71010, - [SMALL_STATE(1024)] = 71056, - [SMALL_STATE(1025)] = 71112, - [SMALL_STATE(1026)] = 71168, - [SMALL_STATE(1027)] = 71218, - [SMALL_STATE(1028)] = 71280, - [SMALL_STATE(1029)] = 71326, - [SMALL_STATE(1030)] = 71374, - [SMALL_STATE(1031)] = 71430, - [SMALL_STATE(1032)] = 71476, - [SMALL_STATE(1033)] = 71538, - [SMALL_STATE(1034)] = 71588, - [SMALL_STATE(1035)] = 71654, - [SMALL_STATE(1036)] = 71724, - [SMALL_STATE(1037)] = 71792, - [SMALL_STATE(1038)] = 71848, - [SMALL_STATE(1039)] = 71908, - [SMALL_STATE(1040)] = 71972, - [SMALL_STATE(1041)] = 72040, - [SMALL_STATE(1042)] = 72090, - [SMALL_STATE(1043)] = 72141, - [SMALL_STATE(1044)] = 72186, - [SMALL_STATE(1045)] = 72241, - [SMALL_STATE(1046)] = 72302, - [SMALL_STATE(1047)] = 72371, - [SMALL_STATE(1048)] = 72426, - [SMALL_STATE(1049)] = 72471, - [SMALL_STATE(1050)] = 72530, - [SMALL_STATE(1051)] = 72597, - [SMALL_STATE(1052)] = 72662, - [SMALL_STATE(1053)] = 72717, - [SMALL_STATE(1054)] = 72780, - [SMALL_STATE(1055)] = 72835, - [SMALL_STATE(1056)] = 72880, - [SMALL_STATE(1057)] = 72925, - [SMALL_STATE(1058)] = 72970, - [SMALL_STATE(1059)] = 73025, - [SMALL_STATE(1060)] = 73086, - [SMALL_STATE(1061)] = 73155, - [SMALL_STATE(1062)] = 73210, - [SMALL_STATE(1063)] = 73269, - [SMALL_STATE(1064)] = 73336, - [SMALL_STATE(1065)] = 73401, - [SMALL_STATE(1066)] = 73464, - [SMALL_STATE(1067)] = 73509, - [SMALL_STATE(1068)] = 73554, - [SMALL_STATE(1069)] = 73603, - [SMALL_STATE(1070)] = 73648, - [SMALL_STATE(1071)] = 73695, - [SMALL_STATE(1072)] = 73742, - [SMALL_STATE(1073)] = 73789, - [SMALL_STATE(1074)] = 73834, - [SMALL_STATE(1075)] = 73879, - [SMALL_STATE(1076)] = 73924, - [SMALL_STATE(1077)] = 73969, - [SMALL_STATE(1078)] = 74014, - [SMALL_STATE(1079)] = 74063, - [SMALL_STATE(1080)] = 74112, - [SMALL_STATE(1081)] = 74161, - [SMALL_STATE(1082)] = 74210, - [SMALL_STATE(1083)] = 74261, - [SMALL_STATE(1084)] = 74312, - [SMALL_STATE(1085)] = 74357, - [SMALL_STATE(1086)] = 74402, - [SMALL_STATE(1087)] = 74451, - [SMALL_STATE(1088)] = 74502, - [SMALL_STATE(1089)] = 74551, - [SMALL_STATE(1090)] = 74596, - [SMALL_STATE(1091)] = 74641, - [SMALL_STATE(1092)] = 74692, - [SMALL_STATE(1093)] = 74743, - [SMALL_STATE(1094)] = 74788, - [SMALL_STATE(1095)] = 74833, - [SMALL_STATE(1096)] = 74878, - [SMALL_STATE(1097)] = 74923, - [SMALL_STATE(1098)] = 74968, - [SMALL_STATE(1099)] = 75017, - [SMALL_STATE(1100)] = 75072, - [SMALL_STATE(1101)] = 75117, - [SMALL_STATE(1102)] = 75162, - [SMALL_STATE(1103)] = 75207, - [SMALL_STATE(1104)] = 75262, - [SMALL_STATE(1105)] = 75307, - [SMALL_STATE(1106)] = 75368, - [SMALL_STATE(1107)] = 75437, - [SMALL_STATE(1108)] = 75492, - [SMALL_STATE(1109)] = 75537, - [SMALL_STATE(1110)] = 75582, - [SMALL_STATE(1111)] = 75631, - [SMALL_STATE(1112)] = 75680, - [SMALL_STATE(1113)] = 75729, - [SMALL_STATE(1114)] = 75778, - [SMALL_STATE(1115)] = 75825, - [SMALL_STATE(1116)] = 75870, - [SMALL_STATE(1117)] = 75915, - [SMALL_STATE(1118)] = 75962, - [SMALL_STATE(1119)] = 76009, - [SMALL_STATE(1120)] = 76068, - [SMALL_STATE(1121)] = 76113, - [SMALL_STATE(1122)] = 76180, - [SMALL_STATE(1123)] = 76235, - [SMALL_STATE(1124)] = 76300, - [SMALL_STATE(1125)] = 76355, - [SMALL_STATE(1126)] = 76418, - [SMALL_STATE(1127)] = 76463, - [SMALL_STATE(1128)] = 76518, - [SMALL_STATE(1129)] = 76565, - [SMALL_STATE(1130)] = 76612, - [SMALL_STATE(1131)] = 76659, - [SMALL_STATE(1132)] = 76712, - [SMALL_STATE(1133)] = 76757, - [SMALL_STATE(1134)] = 76802, - [SMALL_STATE(1135)] = 76853, - [SMALL_STATE(1136)] = 76904, - [SMALL_STATE(1137)] = 76955, - [SMALL_STATE(1138)] = 77000, - [SMALL_STATE(1139)] = 77045, - [SMALL_STATE(1140)] = 77090, - [SMALL_STATE(1141)] = 77135, - [SMALL_STATE(1142)] = 77180, - [SMALL_STATE(1143)] = 77224, - [SMALL_STATE(1144)] = 77268, - [SMALL_STATE(1145)] = 77312, - [SMALL_STATE(1146)] = 77360, - [SMALL_STATE(1147)] = 77404, - [SMALL_STATE(1148)] = 77448, - [SMALL_STATE(1149)] = 77502, - [SMALL_STATE(1150)] = 77556, - [SMALL_STATE(1151)] = 77600, - [SMALL_STATE(1152)] = 77644, - [SMALL_STATE(1153)] = 77688, - [SMALL_STATE(1154)] = 77732, - [SMALL_STATE(1155)] = 77776, - [SMALL_STATE(1156)] = 77830, - [SMALL_STATE(1157)] = 77890, - [SMALL_STATE(1158)] = 77958, - [SMALL_STATE(1159)] = 78012, - [SMALL_STATE(1160)] = 78070, - [SMALL_STATE(1161)] = 78136, - [SMALL_STATE(1162)] = 78200, - [SMALL_STATE(1163)] = 78262, - [SMALL_STATE(1164)] = 78310, - [SMALL_STATE(1165)] = 78358, - [SMALL_STATE(1166)] = 78406, - [SMALL_STATE(1167)] = 78454, - [SMALL_STATE(1168)] = 78502, - [SMALL_STATE(1169)] = 78550, - [SMALL_STATE(1170)] = 78596, - [SMALL_STATE(1171)] = 78642, - [SMALL_STATE(1172)] = 78688, - [SMALL_STATE(1173)] = 78734, - [SMALL_STATE(1174)] = 78778, - [SMALL_STATE(1175)] = 78822, - [SMALL_STATE(1176)] = 78866, - [SMALL_STATE(1177)] = 78910, - [SMALL_STATE(1178)] = 78954, - [SMALL_STATE(1179)] = 78998, - [SMALL_STATE(1180)] = 79044, - [SMALL_STATE(1181)] = 79088, - [SMALL_STATE(1182)] = 79134, - [SMALL_STATE(1183)] = 79178, - [SMALL_STATE(1184)] = 79226, - [SMALL_STATE(1185)] = 79274, - [SMALL_STATE(1186)] = 79318, - [SMALL_STATE(1187)] = 79362, - [SMALL_STATE(1188)] = 79406, - [SMALL_STATE(1189)] = 79450, - [SMALL_STATE(1190)] = 79494, - [SMALL_STATE(1191)] = 79538, - [SMALL_STATE(1192)] = 79582, - [SMALL_STATE(1193)] = 79626, - [SMALL_STATE(1194)] = 79670, - [SMALL_STATE(1195)] = 79714, - [SMALL_STATE(1196)] = 79758, - [SMALL_STATE(1197)] = 79802, - [SMALL_STATE(1198)] = 79846, - [SMALL_STATE(1199)] = 79890, - [SMALL_STATE(1200)] = 79934, - [SMALL_STATE(1201)] = 79978, - [SMALL_STATE(1202)] = 80022, - [SMALL_STATE(1203)] = 80066, - [SMALL_STATE(1204)] = 80110, - [SMALL_STATE(1205)] = 80154, - [SMALL_STATE(1206)] = 80198, - [SMALL_STATE(1207)] = 80242, - [SMALL_STATE(1208)] = 80286, - [SMALL_STATE(1209)] = 80332, - [SMALL_STATE(1210)] = 80376, - [SMALL_STATE(1211)] = 80422, - [SMALL_STATE(1212)] = 80468, - [SMALL_STATE(1213)] = 80516, - [SMALL_STATE(1214)] = 80564, - [SMALL_STATE(1215)] = 80610, - [SMALL_STATE(1216)] = 80658, - [SMALL_STATE(1217)] = 80704, - [SMALL_STATE(1218)] = 80750, - [SMALL_STATE(1219)] = 80796, - [SMALL_STATE(1220)] = 80840, - [SMALL_STATE(1221)] = 80886, - [SMALL_STATE(1222)] = 80930, - [SMALL_STATE(1223)] = 80974, - [SMALL_STATE(1224)] = 81018, - [SMALL_STATE(1225)] = 81066, - [SMALL_STATE(1226)] = 81114, - [SMALL_STATE(1227)] = 81158, - [SMALL_STATE(1228)] = 81202, - [SMALL_STATE(1229)] = 81250, - [SMALL_STATE(1230)] = 81300, - [SMALL_STATE(1231)] = 81348, - [SMALL_STATE(1232)] = 81392, - [SMALL_STATE(1233)] = 81436, - [SMALL_STATE(1234)] = 81480, - [SMALL_STATE(1235)] = 81524, - [SMALL_STATE(1236)] = 81568, - [SMALL_STATE(1237)] = 81612, - [SMALL_STATE(1238)] = 81656, - [SMALL_STATE(1239)] = 81700, - [SMALL_STATE(1240)] = 81744, - [SMALL_STATE(1241)] = 81788, - [SMALL_STATE(1242)] = 81832, - [SMALL_STATE(1243)] = 81876, - [SMALL_STATE(1244)] = 81926, - [SMALL_STATE(1245)] = 81976, - [SMALL_STATE(1246)] = 82026, - [SMALL_STATE(1247)] = 82070, - [SMALL_STATE(1248)] = 82114, - [SMALL_STATE(1249)] = 82158, - [SMALL_STATE(1250)] = 82202, - [SMALL_STATE(1251)] = 82246, - [SMALL_STATE(1252)] = 82290, - [SMALL_STATE(1253)] = 82334, - [SMALL_STATE(1254)] = 82378, - [SMALL_STATE(1255)] = 82422, - [SMALL_STATE(1256)] = 82466, - [SMALL_STATE(1257)] = 82510, - [SMALL_STATE(1258)] = 82554, - [SMALL_STATE(1259)] = 82598, - [SMALL_STATE(1260)] = 82642, - [SMALL_STATE(1261)] = 82686, - [SMALL_STATE(1262)] = 82730, - [SMALL_STATE(1263)] = 82774, - [SMALL_STATE(1264)] = 82818, - [SMALL_STATE(1265)] = 82866, - [SMALL_STATE(1266)] = 82910, - [SMALL_STATE(1267)] = 82958, - [SMALL_STATE(1268)] = 83004, - [SMALL_STATE(1269)] = 83048, - [SMALL_STATE(1270)] = 83092, - [SMALL_STATE(1271)] = 83136, - [SMALL_STATE(1272)] = 83180, - [SMALL_STATE(1273)] = 83224, - [SMALL_STATE(1274)] = 83268, - [SMALL_STATE(1275)] = 83312, - [SMALL_STATE(1276)] = 83356, - [SMALL_STATE(1277)] = 83400, - [SMALL_STATE(1278)] = 83444, - [SMALL_STATE(1279)] = 83488, - [SMALL_STATE(1280)] = 83532, - [SMALL_STATE(1281)] = 83576, - [SMALL_STATE(1282)] = 83620, - [SMALL_STATE(1283)] = 83664, - [SMALL_STATE(1284)] = 83708, - [SMALL_STATE(1285)] = 83752, - [SMALL_STATE(1286)] = 83796, - [SMALL_STATE(1287)] = 83840, - [SMALL_STATE(1288)] = 83884, - [SMALL_STATE(1289)] = 83928, - [SMALL_STATE(1290)] = 83972, - [SMALL_STATE(1291)] = 84016, - [SMALL_STATE(1292)] = 84060, - [SMALL_STATE(1293)] = 84108, - [SMALL_STATE(1294)] = 84152, - [SMALL_STATE(1295)] = 84196, - [SMALL_STATE(1296)] = 84239, - [SMALL_STATE(1297)] = 84284, - [SMALL_STATE(1298)] = 84331, - [SMALL_STATE(1299)] = 84374, - [SMALL_STATE(1300)] = 84417, - [SMALL_STATE(1301)] = 84460, - [SMALL_STATE(1302)] = 84503, - [SMALL_STATE(1303)] = 84554, - [SMALL_STATE(1304)] = 84599, - [SMALL_STATE(1305)] = 84650, - [SMALL_STATE(1306)] = 84693, - [SMALL_STATE(1307)] = 84736, - [SMALL_STATE(1308)] = 84779, - [SMALL_STATE(1309)] = 84822, - [SMALL_STATE(1310)] = 84869, - [SMALL_STATE(1311)] = 84912, - [SMALL_STATE(1312)] = 84955, - [SMALL_STATE(1313)] = 84998, - [SMALL_STATE(1314)] = 85041, - [SMALL_STATE(1315)] = 85084, - [SMALL_STATE(1316)] = 85127, - [SMALL_STATE(1317)] = 85170, - [SMALL_STATE(1318)] = 85213, - [SMALL_STATE(1319)] = 85256, - [SMALL_STATE(1320)] = 85299, - [SMALL_STATE(1321)] = 85342, - [SMALL_STATE(1322)] = 85385, - [SMALL_STATE(1323)] = 85428, - [SMALL_STATE(1324)] = 85471, - [SMALL_STATE(1325)] = 85514, - [SMALL_STATE(1326)] = 85557, - [SMALL_STATE(1327)] = 85600, - [SMALL_STATE(1328)] = 85643, - [SMALL_STATE(1329)] = 85686, - [SMALL_STATE(1330)] = 85729, - [SMALL_STATE(1331)] = 85772, - [SMALL_STATE(1332)] = 85815, - [SMALL_STATE(1333)] = 85858, - [SMALL_STATE(1334)] = 85901, - [SMALL_STATE(1335)] = 85944, - [SMALL_STATE(1336)] = 85987, - [SMALL_STATE(1337)] = 86030, - [SMALL_STATE(1338)] = 86073, - [SMALL_STATE(1339)] = 86116, - [SMALL_STATE(1340)] = 86159, - [SMALL_STATE(1341)] = 86202, - [SMALL_STATE(1342)] = 86245, - [SMALL_STATE(1343)] = 86292, - [SMALL_STATE(1344)] = 86335, - [SMALL_STATE(1345)] = 86382, - [SMALL_STATE(1346)] = 86429, - [SMALL_STATE(1347)] = 86474, - [SMALL_STATE(1348)] = 86517, - [SMALL_STATE(1349)] = 86560, - [SMALL_STATE(1350)] = 86607, - [SMALL_STATE(1351)] = 86650, - [SMALL_STATE(1352)] = 86693, - [SMALL_STATE(1353)] = 86736, - [SMALL_STATE(1354)] = 86779, - [SMALL_STATE(1355)] = 86822, - [SMALL_STATE(1356)] = 86865, - [SMALL_STATE(1357)] = 86908, - [SMALL_STATE(1358)] = 86955, - [SMALL_STATE(1359)] = 86998, - [SMALL_STATE(1360)] = 87043, - [SMALL_STATE(1361)] = 87086, - [SMALL_STATE(1362)] = 87129, - [SMALL_STATE(1363)] = 87174, - [SMALL_STATE(1364)] = 87217, - [SMALL_STATE(1365)] = 87262, - [SMALL_STATE(1366)] = 87309, - [SMALL_STATE(1367)] = 87354, - [SMALL_STATE(1368)] = 87397, - [SMALL_STATE(1369)] = 87440, - [SMALL_STATE(1370)] = 87483, - [SMALL_STATE(1371)] = 87526, - [SMALL_STATE(1372)] = 87569, - [SMALL_STATE(1373)] = 87612, - [SMALL_STATE(1374)] = 87655, - [SMALL_STATE(1375)] = 87700, - [SMALL_STATE(1376)] = 87743, - [SMALL_STATE(1377)] = 87786, - [SMALL_STATE(1378)] = 87831, - [SMALL_STATE(1379)] = 87874, - [SMALL_STATE(1380)] = 87919, - [SMALL_STATE(1381)] = 87964, - [SMALL_STATE(1382)] = 88009, - [SMALL_STATE(1383)] = 88052, - [SMALL_STATE(1384)] = 88095, - [SMALL_STATE(1385)] = 88138, - [SMALL_STATE(1386)] = 88181, - [SMALL_STATE(1387)] = 88224, - [SMALL_STATE(1388)] = 88271, - [SMALL_STATE(1389)] = 88318, - [SMALL_STATE(1390)] = 88361, - [SMALL_STATE(1391)] = 88404, - [SMALL_STATE(1392)] = 88447, - [SMALL_STATE(1393)] = 88492, - [SMALL_STATE(1394)] = 88537, - [SMALL_STATE(1395)] = 88580, - [SMALL_STATE(1396)] = 88623, - [SMALL_STATE(1397)] = 88666, - [SMALL_STATE(1398)] = 88709, - [SMALL_STATE(1399)] = 88754, - [SMALL_STATE(1400)] = 88797, - [SMALL_STATE(1401)] = 88842, - [SMALL_STATE(1402)] = 88887, - [SMALL_STATE(1403)] = 88930, - [SMALL_STATE(1404)] = 88973, - [SMALL_STATE(1405)] = 89016, - [SMALL_STATE(1406)] = 89059, - [SMALL_STATE(1407)] = 89102, - [SMALL_STATE(1408)] = 89145, - [SMALL_STATE(1409)] = 89188, - [SMALL_STATE(1410)] = 89231, - [SMALL_STATE(1411)] = 89274, - [SMALL_STATE(1412)] = 89321, - [SMALL_STATE(1413)] = 89368, - [SMALL_STATE(1414)] = 89411, - [SMALL_STATE(1415)] = 89454, - [SMALL_STATE(1416)] = 89497, - [SMALL_STATE(1417)] = 89540, - [SMALL_STATE(1418)] = 89585, - [SMALL_STATE(1419)] = 89628, - [SMALL_STATE(1420)] = 89671, - [SMALL_STATE(1421)] = 89714, - [SMALL_STATE(1422)] = 89756, - [SMALL_STATE(1423)] = 89798, - [SMALL_STATE(1424)] = 89842, - [SMALL_STATE(1425)] = 89886, - [SMALL_STATE(1426)] = 89932, - [SMALL_STATE(1427)] = 89976, - [SMALL_STATE(1428)] = 90026, - [SMALL_STATE(1429)] = 90068, - [SMALL_STATE(1430)] = 90110, - [SMALL_STATE(1431)] = 90156, - [SMALL_STATE(1432)] = 90198, - [SMALL_STATE(1433)] = 90242, - [SMALL_STATE(1434)] = 90284, - [SMALL_STATE(1435)] = 90326, - [SMALL_STATE(1436)] = 90370, - [SMALL_STATE(1437)] = 90412, - [SMALL_STATE(1438)] = 90456, - [SMALL_STATE(1439)] = 90498, - [SMALL_STATE(1440)] = 90540, - [SMALL_STATE(1441)] = 90582, - [SMALL_STATE(1442)] = 90624, - [SMALL_STATE(1443)] = 90666, - [SMALL_STATE(1444)] = 90708, - [SMALL_STATE(1445)] = 90750, - [SMALL_STATE(1446)] = 90792, - [SMALL_STATE(1447)] = 90834, - [SMALL_STATE(1448)] = 90876, - [SMALL_STATE(1449)] = 90918, - [SMALL_STATE(1450)] = 90960, - [SMALL_STATE(1451)] = 91002, - [SMALL_STATE(1452)] = 91046, - [SMALL_STATE(1453)] = 91090, - [SMALL_STATE(1454)] = 91134, - [SMALL_STATE(1455)] = 91176, - [SMALL_STATE(1456)] = 91218, - [SMALL_STATE(1457)] = 91264, - [SMALL_STATE(1458)] = 91306, - [SMALL_STATE(1459)] = 91348, - [SMALL_STATE(1460)] = 91390, - [SMALL_STATE(1461)] = 91432, - [SMALL_STATE(1462)] = 91474, - [SMALL_STATE(1463)] = 91516, - [SMALL_STATE(1464)] = 91558, - [SMALL_STATE(1465)] = 91600, - [SMALL_STATE(1466)] = 91648, - [SMALL_STATE(1467)] = 91690, - [SMALL_STATE(1468)] = 91732, - [SMALL_STATE(1469)] = 91775, - [SMALL_STATE(1470)] = 91818, - [SMALL_STATE(1471)] = 91859, - [SMALL_STATE(1472)] = 91902, - [SMALL_STATE(1473)] = 91943, - [SMALL_STATE(1474)] = 91984, - [SMALL_STATE(1475)] = 92025, - [SMALL_STATE(1476)] = 92068, - [SMALL_STATE(1477)] = 92109, - [SMALL_STATE(1478)] = 92150, - [SMALL_STATE(1479)] = 92191, - [SMALL_STATE(1480)] = 92234, - [SMALL_STATE(1481)] = 92277, - [SMALL_STATE(1482)] = 92320, - [SMALL_STATE(1483)] = 92363, - [SMALL_STATE(1484)] = 92406, - [SMALL_STATE(1485)] = 92447, - [SMALL_STATE(1486)] = 92488, - [SMALL_STATE(1487)] = 92529, - [SMALL_STATE(1488)] = 92603, - [SMALL_STATE(1489)] = 92677, - [SMALL_STATE(1490)] = 92745, - [SMALL_STATE(1491)] = 92813, - [SMALL_STATE(1492)] = 92881, - [SMALL_STATE(1493)] = 92949, - [SMALL_STATE(1494)] = 93017, - [SMALL_STATE(1495)] = 93085, - [SMALL_STATE(1496)] = 93153, - [SMALL_STATE(1497)] = 93221, - [SMALL_STATE(1498)] = 93289, - [SMALL_STATE(1499)] = 93357, - [SMALL_STATE(1500)] = 93425, - [SMALL_STATE(1501)] = 93493, - [SMALL_STATE(1502)] = 93561, - [SMALL_STATE(1503)] = 93629, - [SMALL_STATE(1504)] = 93697, - [SMALL_STATE(1505)] = 93765, - [SMALL_STATE(1506)] = 93833, - [SMALL_STATE(1507)] = 93901, - [SMALL_STATE(1508)] = 93969, - [SMALL_STATE(1509)] = 94037, - [SMALL_STATE(1510)] = 94105, - [SMALL_STATE(1511)] = 94173, - [SMALL_STATE(1512)] = 94241, - [SMALL_STATE(1513)] = 94309, - [SMALL_STATE(1514)] = 94377, - [SMALL_STATE(1515)] = 94445, - [SMALL_STATE(1516)] = 94513, - [SMALL_STATE(1517)] = 94581, - [SMALL_STATE(1518)] = 94649, - [SMALL_STATE(1519)] = 94717, - [SMALL_STATE(1520)] = 94785, - [SMALL_STATE(1521)] = 94853, - [SMALL_STATE(1522)] = 94921, - [SMALL_STATE(1523)] = 94989, - [SMALL_STATE(1524)] = 95057, - [SMALL_STATE(1525)] = 95125, - [SMALL_STATE(1526)] = 95190, - [SMALL_STATE(1527)] = 95255, - [SMALL_STATE(1528)] = 95320, - [SMALL_STATE(1529)] = 95385, - [SMALL_STATE(1530)] = 95450, - [SMALL_STATE(1531)] = 95516, - [SMALL_STATE(1532)] = 95582, - [SMALL_STATE(1533)] = 95648, - [SMALL_STATE(1534)] = 95714, - [SMALL_STATE(1535)] = 95780, - [SMALL_STATE(1536)] = 95846, - [SMALL_STATE(1537)] = 95912, - [SMALL_STATE(1538)] = 95978, - [SMALL_STATE(1539)] = 96044, - [SMALL_STATE(1540)] = 96110, - [SMALL_STATE(1541)] = 96176, - [SMALL_STATE(1542)] = 96242, - [SMALL_STATE(1543)] = 96308, - [SMALL_STATE(1544)] = 96374, - [SMALL_STATE(1545)] = 96440, - [SMALL_STATE(1546)] = 96506, - [SMALL_STATE(1547)] = 96572, - [SMALL_STATE(1548)] = 96638, - [SMALL_STATE(1549)] = 96704, - [SMALL_STATE(1550)] = 96770, - [SMALL_STATE(1551)] = 96833, - [SMALL_STATE(1552)] = 96891, - [SMALL_STATE(1553)] = 96949, - [SMALL_STATE(1554)] = 96995, - [SMALL_STATE(1555)] = 97053, - [SMALL_STATE(1556)] = 97111, - [SMALL_STATE(1557)] = 97169, - [SMALL_STATE(1558)] = 97227, - [SMALL_STATE(1559)] = 97285, - [SMALL_STATE(1560)] = 97331, - [SMALL_STATE(1561)] = 97389, - [SMALL_STATE(1562)] = 97434, - [SMALL_STATE(1563)] = 97479, - [SMALL_STATE(1564)] = 97523, - [SMALL_STATE(1565)] = 97567, - [SMALL_STATE(1566)] = 97611, - [SMALL_STATE(1567)] = 97655, - [SMALL_STATE(1568)] = 97698, - [SMALL_STATE(1569)] = 97741, - [SMALL_STATE(1570)] = 97782, - [SMALL_STATE(1571)] = 97825, - [SMALL_STATE(1572)] = 97868, - [SMALL_STATE(1573)] = 97909, - [SMALL_STATE(1574)] = 97951, - [SMALL_STATE(1575)] = 97983, - [SMALL_STATE(1576)] = 98015, - [SMALL_STATE(1577)] = 98047, - [SMALL_STATE(1578)] = 98077, - [SMALL_STATE(1579)] = 98109, - [SMALL_STATE(1580)] = 98151, - [SMALL_STATE(1581)] = 98183, - [SMALL_STATE(1582)] = 98215, - [SMALL_STATE(1583)] = 98245, - [SMALL_STATE(1584)] = 98275, - [SMALL_STATE(1585)] = 98305, - [SMALL_STATE(1586)] = 98335, - [SMALL_STATE(1587)] = 98365, - [SMALL_STATE(1588)] = 98395, - [SMALL_STATE(1589)] = 98425, - [SMALL_STATE(1590)] = 98455, - [SMALL_STATE(1591)] = 98485, - [SMALL_STATE(1592)] = 98514, - [SMALL_STATE(1593)] = 98539, - [SMALL_STATE(1594)] = 98568, - [SMALL_STATE(1595)] = 98593, - [SMALL_STATE(1596)] = 98622, - [SMALL_STATE(1597)] = 98651, - [SMALL_STATE(1598)] = 98680, - [SMALL_STATE(1599)] = 98709, - [SMALL_STATE(1600)] = 98738, - [SMALL_STATE(1601)] = 98767, - [SMALL_STATE(1602)] = 98796, - [SMALL_STATE(1603)] = 98825, - [SMALL_STATE(1604)] = 98854, - [SMALL_STATE(1605)] = 98883, - [SMALL_STATE(1606)] = 98912, - [SMALL_STATE(1607)] = 98941, - [SMALL_STATE(1608)] = 98970, - [SMALL_STATE(1609)] = 98999, - [SMALL_STATE(1610)] = 99028, - [SMALL_STATE(1611)] = 99057, - [SMALL_STATE(1612)] = 99082, - [SMALL_STATE(1613)] = 99111, - [SMALL_STATE(1614)] = 99140, - [SMALL_STATE(1615)] = 99165, - [SMALL_STATE(1616)] = 99212, - [SMALL_STATE(1617)] = 99241, - [SMALL_STATE(1618)] = 99270, - [SMALL_STATE(1619)] = 99299, - [SMALL_STATE(1620)] = 99328, - [SMALL_STATE(1621)] = 99375, - [SMALL_STATE(1622)] = 99422, - [SMALL_STATE(1623)] = 99469, - [SMALL_STATE(1624)] = 99516, - [SMALL_STATE(1625)] = 99563, - [SMALL_STATE(1626)] = 99610, - [SMALL_STATE(1627)] = 99657, - [SMALL_STATE(1628)] = 99704, - [SMALL_STATE(1629)] = 99751, - [SMALL_STATE(1630)] = 99775, - [SMALL_STATE(1631)] = 99821, - [SMALL_STATE(1632)] = 99849, - [SMALL_STATE(1633)] = 99895, - [SMALL_STATE(1634)] = 99927, - [SMALL_STATE(1635)] = 99951, - [SMALL_STATE(1636)] = 99997, - [SMALL_STATE(1637)] = 100043, - [SMALL_STATE(1638)] = 100089, - [SMALL_STATE(1639)] = 100113, - [SMALL_STATE(1640)] = 100143, - [SMALL_STATE(1641)] = 100171, - [SMALL_STATE(1642)] = 100217, - [SMALL_STATE(1643)] = 100263, - [SMALL_STATE(1644)] = 100287, - [SMALL_STATE(1645)] = 100333, - [SMALL_STATE(1646)] = 100379, - [SMALL_STATE(1647)] = 100425, - [SMALL_STATE(1648)] = 100471, - [SMALL_STATE(1649)] = 100503, - [SMALL_STATE(1650)] = 100546, - [SMALL_STATE(1651)] = 100572, - [SMALL_STATE(1652)] = 100612, - [SMALL_STATE(1653)] = 100652, - [SMALL_STATE(1654)] = 100692, - [SMALL_STATE(1655)] = 100732, - [SMALL_STATE(1656)] = 100769, - [SMALL_STATE(1657)] = 100808, - [SMALL_STATE(1658)] = 100845, - [SMALL_STATE(1659)] = 100886, - [SMALL_STATE(1660)] = 100913, - [SMALL_STATE(1661)] = 100932, - [SMALL_STATE(1662)] = 100955, - [SMALL_STATE(1663)] = 100974, - [SMALL_STATE(1664)] = 100995, - [SMALL_STATE(1665)] = 101022, - [SMALL_STATE(1666)] = 101041, - [SMALL_STATE(1667)] = 101068, - [SMALL_STATE(1668)] = 101109, - [SMALL_STATE(1669)] = 101150, - [SMALL_STATE(1670)] = 101191, - [SMALL_STATE(1671)] = 101232, - [SMALL_STATE(1672)] = 101273, - [SMALL_STATE(1673)] = 101314, - [SMALL_STATE(1674)] = 101355, - [SMALL_STATE(1675)] = 101380, - [SMALL_STATE(1676)] = 101410, - [SMALL_STATE(1677)] = 101448, - [SMALL_STATE(1678)] = 101478, - [SMALL_STATE(1679)] = 101508, - [SMALL_STATE(1680)] = 101546, - [SMALL_STATE(1681)] = 101584, - [SMALL_STATE(1682)] = 101622, - [SMALL_STATE(1683)] = 101652, - [SMALL_STATE(1684)] = 101690, - [SMALL_STATE(1685)] = 101720, - [SMALL_STATE(1686)] = 101758, - [SMALL_STATE(1687)] = 101796, - [SMALL_STATE(1688)] = 101826, - [SMALL_STATE(1689)] = 101856, - [SMALL_STATE(1690)] = 101894, - [SMALL_STATE(1691)] = 101932, - [SMALL_STATE(1692)] = 101962, - [SMALL_STATE(1693)] = 101992, - [SMALL_STATE(1694)] = 102030, - [SMALL_STATE(1695)] = 102068, - [SMALL_STATE(1696)] = 102094, - [SMALL_STATE(1697)] = 102124, - [SMALL_STATE(1698)] = 102144, - [SMALL_STATE(1699)] = 102174, - [SMALL_STATE(1700)] = 102212, - [SMALL_STATE(1701)] = 102250, - [SMALL_STATE(1702)] = 102280, - [SMALL_STATE(1703)] = 102310, - [SMALL_STATE(1704)] = 102348, - [SMALL_STATE(1705)] = 102386, - [SMALL_STATE(1706)] = 102406, - [SMALL_STATE(1707)] = 102436, - [SMALL_STATE(1708)] = 102466, - [SMALL_STATE(1709)] = 102504, - [SMALL_STATE(1710)] = 102542, - [SMALL_STATE(1711)] = 102572, - [SMALL_STATE(1712)] = 102602, - [SMALL_STATE(1713)] = 102640, - [SMALL_STATE(1714)] = 102670, - [SMALL_STATE(1715)] = 102708, - [SMALL_STATE(1716)] = 102734, - [SMALL_STATE(1717)] = 102772, - [SMALL_STATE(1718)] = 102796, - [SMALL_STATE(1719)] = 102834, - [SMALL_STATE(1720)] = 102872, - [SMALL_STATE(1721)] = 102896, - [SMALL_STATE(1722)] = 102916, - [SMALL_STATE(1723)] = 102954, - [SMALL_STATE(1724)] = 102976, - [SMALL_STATE(1725)] = 103014, - [SMALL_STATE(1726)] = 103052, - [SMALL_STATE(1727)] = 103082, - [SMALL_STATE(1728)] = 103108, - [SMALL_STATE(1729)] = 103129, - [SMALL_STATE(1730)] = 103154, - [SMALL_STATE(1731)] = 103171, - [SMALL_STATE(1732)] = 103196, - [SMALL_STATE(1733)] = 103219, - [SMALL_STATE(1734)] = 103244, - [SMALL_STATE(1735)] = 103269, - [SMALL_STATE(1736)] = 103286, - [SMALL_STATE(1737)] = 103305, - [SMALL_STATE(1738)] = 103326, - [SMALL_STATE(1739)] = 103355, - [SMALL_STATE(1740)] = 103372, - [SMALL_STATE(1741)] = 103401, - [SMALL_STATE(1742)] = 103420, - [SMALL_STATE(1743)] = 103445, - [SMALL_STATE(1744)] = 103462, - [SMALL_STATE(1745)] = 103479, - [SMALL_STATE(1746)] = 103504, - [SMALL_STATE(1747)] = 103529, - [SMALL_STATE(1748)] = 103554, - [SMALL_STATE(1749)] = 103577, - [SMALL_STATE(1750)] = 103606, - [SMALL_STATE(1751)] = 103623, - [SMALL_STATE(1752)] = 103643, - [SMALL_STATE(1753)] = 103667, - [SMALL_STATE(1754)] = 103683, - [SMALL_STATE(1755)] = 103701, - [SMALL_STATE(1756)] = 103723, - [SMALL_STATE(1757)] = 103745, - [SMALL_STATE(1758)] = 103769, - [SMALL_STATE(1759)] = 103793, - [SMALL_STATE(1760)] = 103815, - [SMALL_STATE(1761)] = 103835, - [SMALL_STATE(1762)] = 103865, - [SMALL_STATE(1763)] = 103881, - [SMALL_STATE(1764)] = 103905, - [SMALL_STATE(1765)] = 103925, - [SMALL_STATE(1766)] = 103943, - [SMALL_STATE(1767)] = 103967, - [SMALL_STATE(1768)] = 103991, - [SMALL_STATE(1769)] = 104007, - [SMALL_STATE(1770)] = 104027, - [SMALL_STATE(1771)] = 104049, - [SMALL_STATE(1772)] = 104073, - [SMALL_STATE(1773)] = 104091, - [SMALL_STATE(1774)] = 104107, - [SMALL_STATE(1775)] = 104131, - [SMALL_STATE(1776)] = 104155, - [SMALL_STATE(1777)] = 104179, - [SMALL_STATE(1778)] = 104195, - [SMALL_STATE(1779)] = 104215, - [SMALL_STATE(1780)] = 104239, - [SMALL_STATE(1781)] = 104263, - [SMALL_STATE(1782)] = 104279, - [SMALL_STATE(1783)] = 104297, - [SMALL_STATE(1784)] = 104317, - [SMALL_STATE(1785)] = 104339, - [SMALL_STATE(1786)] = 104363, - [SMALL_STATE(1787)] = 104381, - [SMALL_STATE(1788)] = 104410, - [SMALL_STATE(1789)] = 104435, - [SMALL_STATE(1790)] = 104454, - [SMALL_STATE(1791)] = 104475, - [SMALL_STATE(1792)] = 104502, - [SMALL_STATE(1793)] = 104529, - [SMALL_STATE(1794)] = 104550, - [SMALL_STATE(1795)] = 104571, - [SMALL_STATE(1796)] = 104600, - [SMALL_STATE(1797)] = 104627, - [SMALL_STATE(1798)] = 104650, - [SMALL_STATE(1799)] = 104675, - [SMALL_STATE(1800)] = 104704, - [SMALL_STATE(1801)] = 104725, - [SMALL_STATE(1802)] = 104746, - [SMALL_STATE(1803)] = 104767, - [SMALL_STATE(1804)] = 104784, - [SMALL_STATE(1805)] = 104803, - [SMALL_STATE(1806)] = 104826, - [SMALL_STATE(1807)] = 104855, - [SMALL_STATE(1808)] = 104878, - [SMALL_STATE(1809)] = 104899, - [SMALL_STATE(1810)] = 104920, - [SMALL_STATE(1811)] = 104935, - [SMALL_STATE(1812)] = 104956, - [SMALL_STATE(1813)] = 104985, - [SMALL_STATE(1814)] = 105006, - [SMALL_STATE(1815)] = 105027, - [SMALL_STATE(1816)] = 105056, - [SMALL_STATE(1817)] = 105085, - [SMALL_STATE(1818)] = 105112, - [SMALL_STATE(1819)] = 105139, - [SMALL_STATE(1820)] = 105166, - [SMALL_STATE(1821)] = 105193, - [SMALL_STATE(1822)] = 105222, - [SMALL_STATE(1823)] = 105245, - [SMALL_STATE(1824)] = 105274, - [SMALL_STATE(1825)] = 105301, - [SMALL_STATE(1826)] = 105330, - [SMALL_STATE(1827)] = 105353, - [SMALL_STATE(1828)] = 105374, - [SMALL_STATE(1829)] = 105391, - [SMALL_STATE(1830)] = 105412, - [SMALL_STATE(1831)] = 105435, - [SMALL_STATE(1832)] = 105458, - [SMALL_STATE(1833)] = 105479, - [SMALL_STATE(1834)] = 105496, - [SMALL_STATE(1835)] = 105512, - [SMALL_STATE(1836)] = 105536, - [SMALL_STATE(1837)] = 105560, - [SMALL_STATE(1838)] = 105580, - [SMALL_STATE(1839)] = 105602, - [SMALL_STATE(1840)] = 105622, - [SMALL_STATE(1841)] = 105648, - [SMALL_STATE(1842)] = 105670, - [SMALL_STATE(1843)] = 105696, - [SMALL_STATE(1844)] = 105714, - [SMALL_STATE(1845)] = 105740, - [SMALL_STATE(1846)] = 105758, - [SMALL_STATE(1847)] = 105776, - [SMALL_STATE(1848)] = 105802, - [SMALL_STATE(1849)] = 105824, - [SMALL_STATE(1850)] = 105850, - [SMALL_STATE(1851)] = 105872, - [SMALL_STATE(1852)] = 105898, - [SMALL_STATE(1853)] = 105924, - [SMALL_STATE(1854)] = 105942, - [SMALL_STATE(1855)] = 105968, - [SMALL_STATE(1856)] = 105986, - [SMALL_STATE(1857)] = 106012, - [SMALL_STATE(1858)] = 106038, - [SMALL_STATE(1859)] = 106054, - [SMALL_STATE(1860)] = 106080, - [SMALL_STATE(1861)] = 106102, - [SMALL_STATE(1862)] = 106124, - [SMALL_STATE(1863)] = 106150, - [SMALL_STATE(1864)] = 106168, - [SMALL_STATE(1865)] = 106194, - [SMALL_STATE(1866)] = 106212, - [SMALL_STATE(1867)] = 106238, - [SMALL_STATE(1868)] = 106260, - [SMALL_STATE(1869)] = 106286, - [SMALL_STATE(1870)] = 106312, - [SMALL_STATE(1871)] = 106338, - [SMALL_STATE(1872)] = 106364, - [SMALL_STATE(1873)] = 106390, - [SMALL_STATE(1874)] = 106410, - [SMALL_STATE(1875)] = 106436, - [SMALL_STATE(1876)] = 106458, - [SMALL_STATE(1877)] = 106482, - [SMALL_STATE(1878)] = 106506, - [SMALL_STATE(1879)] = 106528, - [SMALL_STATE(1880)] = 106554, - [SMALL_STATE(1881)] = 106572, - [SMALL_STATE(1882)] = 106594, - [SMALL_STATE(1883)] = 106618, - [SMALL_STATE(1884)] = 106636, - [SMALL_STATE(1885)] = 106662, - [SMALL_STATE(1886)] = 106680, - [SMALL_STATE(1887)] = 106698, - [SMALL_STATE(1888)] = 106720, - [SMALL_STATE(1889)] = 106738, - [SMALL_STATE(1890)] = 106755, - [SMALL_STATE(1891)] = 106776, - [SMALL_STATE(1892)] = 106797, - [SMALL_STATE(1893)] = 106818, - [SMALL_STATE(1894)] = 106841, - [SMALL_STATE(1895)] = 106858, - [SMALL_STATE(1896)] = 106879, - [SMALL_STATE(1897)] = 106900, - [SMALL_STATE(1898)] = 106921, - [SMALL_STATE(1899)] = 106938, - [SMALL_STATE(1900)] = 106959, - [SMALL_STATE(1901)] = 106976, - [SMALL_STATE(1902)] = 106993, - [SMALL_STATE(1903)] = 107010, - [SMALL_STATE(1904)] = 107023, - [SMALL_STATE(1905)] = 107040, - [SMALL_STATE(1906)] = 107055, - [SMALL_STATE(1907)] = 107072, - [SMALL_STATE(1908)] = 107089, - [SMALL_STATE(1909)] = 107104, - [SMALL_STATE(1910)] = 107121, - [SMALL_STATE(1911)] = 107142, - [SMALL_STATE(1912)] = 107155, - [SMALL_STATE(1913)] = 107172, - [SMALL_STATE(1914)] = 107185, - [SMALL_STATE(1915)] = 107202, - [SMALL_STATE(1916)] = 107219, - [SMALL_STATE(1917)] = 107242, - [SMALL_STATE(1918)] = 107257, - [SMALL_STATE(1919)] = 107274, - [SMALL_STATE(1920)] = 107297, - [SMALL_STATE(1921)] = 107314, - [SMALL_STATE(1922)] = 107335, - [SMALL_STATE(1923)] = 107356, - [SMALL_STATE(1924)] = 107373, - [SMALL_STATE(1925)] = 107386, - [SMALL_STATE(1926)] = 107403, - [SMALL_STATE(1927)] = 107420, - [SMALL_STATE(1928)] = 107435, - [SMALL_STATE(1929)] = 107456, - [SMALL_STATE(1930)] = 107469, - [SMALL_STATE(1931)] = 107490, - [SMALL_STATE(1932)] = 107505, - [SMALL_STATE(1933)] = 107518, - [SMALL_STATE(1934)] = 107535, - [SMALL_STATE(1935)] = 107556, - [SMALL_STATE(1936)] = 107573, - [SMALL_STATE(1937)] = 107586, - [SMALL_STATE(1938)] = 107605, - [SMALL_STATE(1939)] = 107622, - [SMALL_STATE(1940)] = 107635, - [SMALL_STATE(1941)] = 107648, - [SMALL_STATE(1942)] = 107661, - [SMALL_STATE(1943)] = 107674, - [SMALL_STATE(1944)] = 107695, - [SMALL_STATE(1945)] = 107716, - [SMALL_STATE(1946)] = 107737, - [SMALL_STATE(1947)] = 107758, - [SMALL_STATE(1948)] = 107771, - [SMALL_STATE(1949)] = 107792, - [SMALL_STATE(1950)] = 107815, - [SMALL_STATE(1951)] = 107836, - [SMALL_STATE(1952)] = 107857, - [SMALL_STATE(1953)] = 107880, - [SMALL_STATE(1954)] = 107901, - [SMALL_STATE(1955)] = 107922, - [SMALL_STATE(1956)] = 107943, - [SMALL_STATE(1957)] = 107960, - [SMALL_STATE(1958)] = 107981, - [SMALL_STATE(1959)] = 107994, - [SMALL_STATE(1960)] = 108007, - [SMALL_STATE(1961)] = 108020, - [SMALL_STATE(1962)] = 108041, - [SMALL_STATE(1963)] = 108058, - [SMALL_STATE(1964)] = 108079, - [SMALL_STATE(1965)] = 108092, - [SMALL_STATE(1966)] = 108113, - [SMALL_STATE(1967)] = 108130, - [SMALL_STATE(1968)] = 108147, - [SMALL_STATE(1969)] = 108164, - [SMALL_STATE(1970)] = 108185, - [SMALL_STATE(1971)] = 108206, - [SMALL_STATE(1972)] = 108219, - [SMALL_STATE(1973)] = 108240, - [SMALL_STATE(1974)] = 108253, - [SMALL_STATE(1975)] = 108266, - [SMALL_STATE(1976)] = 108283, - [SMALL_STATE(1977)] = 108300, - [SMALL_STATE(1978)] = 108317, - [SMALL_STATE(1979)] = 108334, - [SMALL_STATE(1980)] = 108351, - [SMALL_STATE(1981)] = 108366, - [SMALL_STATE(1982)] = 108387, - [SMALL_STATE(1983)] = 108402, - [SMALL_STATE(1984)] = 108419, - [SMALL_STATE(1985)] = 108436, - [SMALL_STATE(1986)] = 108453, - [SMALL_STATE(1987)] = 108470, - [SMALL_STATE(1988)] = 108485, - [SMALL_STATE(1989)] = 108498, - [SMALL_STATE(1990)] = 108511, - [SMALL_STATE(1991)] = 108524, - [SMALL_STATE(1992)] = 108545, - [SMALL_STATE(1993)] = 108558, - [SMALL_STATE(1994)] = 108577, - [SMALL_STATE(1995)] = 108590, - [SMALL_STATE(1996)] = 108607, - [SMALL_STATE(1997)] = 108624, - [SMALL_STATE(1998)] = 108645, - [SMALL_STATE(1999)] = 108665, - [SMALL_STATE(2000)] = 108683, - [SMALL_STATE(2001)] = 108703, - [SMALL_STATE(2002)] = 108715, - [SMALL_STATE(2003)] = 108733, - [SMALL_STATE(2004)] = 108745, - [SMALL_STATE(2005)] = 108765, - [SMALL_STATE(2006)] = 108785, - [SMALL_STATE(2007)] = 108803, - [SMALL_STATE(2008)] = 108817, - [SMALL_STATE(2009)] = 108829, - [SMALL_STATE(2010)] = 108841, - [SMALL_STATE(2011)] = 108853, - [SMALL_STATE(2012)] = 108865, - [SMALL_STATE(2013)] = 108881, - [SMALL_STATE(2014)] = 108901, - [SMALL_STATE(2015)] = 108917, - [SMALL_STATE(2016)] = 108931, - [SMALL_STATE(2017)] = 108947, - [SMALL_STATE(2018)] = 108959, - [SMALL_STATE(2019)] = 108975, - [SMALL_STATE(2020)] = 108987, - [SMALL_STATE(2021)] = 108999, - [SMALL_STATE(2022)] = 109019, - [SMALL_STATE(2023)] = 109039, - [SMALL_STATE(2024)] = 109059, - [SMALL_STATE(2025)] = 109071, - [SMALL_STATE(2026)] = 109087, - [SMALL_STATE(2027)] = 109099, - [SMALL_STATE(2028)] = 109111, - [SMALL_STATE(2029)] = 109123, - [SMALL_STATE(2030)] = 109135, - [SMALL_STATE(2031)] = 109153, - [SMALL_STATE(2032)] = 109165, - [SMALL_STATE(2033)] = 109181, - [SMALL_STATE(2034)] = 109195, - [SMALL_STATE(2035)] = 109211, - [SMALL_STATE(2036)] = 109223, - [SMALL_STATE(2037)] = 109235, - [SMALL_STATE(2038)] = 109249, - [SMALL_STATE(2039)] = 109269, - [SMALL_STATE(2040)] = 109289, - [SMALL_STATE(2041)] = 109301, - [SMALL_STATE(2042)] = 109317, - [SMALL_STATE(2043)] = 109329, - [SMALL_STATE(2044)] = 109341, - [SMALL_STATE(2045)] = 109353, - [SMALL_STATE(2046)] = 109365, - [SMALL_STATE(2047)] = 109377, - [SMALL_STATE(2048)] = 109389, - [SMALL_STATE(2049)] = 109405, - [SMALL_STATE(2050)] = 109423, - [SMALL_STATE(2051)] = 109443, - [SMALL_STATE(2052)] = 109461, - [SMALL_STATE(2053)] = 109481, - [SMALL_STATE(2054)] = 109501, - [SMALL_STATE(2055)] = 109517, - [SMALL_STATE(2056)] = 109531, - [SMALL_STATE(2057)] = 109547, - [SMALL_STATE(2058)] = 109567, - [SMALL_STATE(2059)] = 109587, - [SMALL_STATE(2060)] = 109599, - [SMALL_STATE(2061)] = 109611, - [SMALL_STATE(2062)] = 109629, - [SMALL_STATE(2063)] = 109641, - [SMALL_STATE(2064)] = 109653, - [SMALL_STATE(2065)] = 109665, - [SMALL_STATE(2066)] = 109685, - [SMALL_STATE(2067)] = 109697, - [SMALL_STATE(2068)] = 109709, - [SMALL_STATE(2069)] = 109727, - [SMALL_STATE(2070)] = 109739, - [SMALL_STATE(2071)] = 109751, - [SMALL_STATE(2072)] = 109763, - [SMALL_STATE(2073)] = 109775, - [SMALL_STATE(2074)] = 109795, - [SMALL_STATE(2075)] = 109813, - [SMALL_STATE(2076)] = 109831, - [SMALL_STATE(2077)] = 109843, - [SMALL_STATE(2078)] = 109855, - [SMALL_STATE(2079)] = 109875, - [SMALL_STATE(2080)] = 109895, - [SMALL_STATE(2081)] = 109915, - [SMALL_STATE(2082)] = 109927, - [SMALL_STATE(2083)] = 109939, - [SMALL_STATE(2084)] = 109951, - [SMALL_STATE(2085)] = 109963, - [SMALL_STATE(2086)] = 109975, - [SMALL_STATE(2087)] = 109987, - [SMALL_STATE(2088)] = 109999, - [SMALL_STATE(2089)] = 110011, - [SMALL_STATE(2090)] = 110031, - [SMALL_STATE(2091)] = 110043, - [SMALL_STATE(2092)] = 110061, - [SMALL_STATE(2093)] = 110073, - [SMALL_STATE(2094)] = 110085, - [SMALL_STATE(2095)] = 110097, - [SMALL_STATE(2096)] = 110109, - [SMALL_STATE(2097)] = 110121, - [SMALL_STATE(2098)] = 110133, - [SMALL_STATE(2099)] = 110153, - [SMALL_STATE(2100)] = 110171, - [SMALL_STATE(2101)] = 110187, - [SMALL_STATE(2102)] = 110199, - [SMALL_STATE(2103)] = 110217, - [SMALL_STATE(2104)] = 110237, - [SMALL_STATE(2105)] = 110257, - [SMALL_STATE(2106)] = 110277, - [SMALL_STATE(2107)] = 110289, - [SMALL_STATE(2108)] = 110305, - [SMALL_STATE(2109)] = 110321, - [SMALL_STATE(2110)] = 110333, - [SMALL_STATE(2111)] = 110353, - [SMALL_STATE(2112)] = 110367, - [SMALL_STATE(2113)] = 110387, - [SMALL_STATE(2114)] = 110404, - [SMALL_STATE(2115)] = 110419, - [SMALL_STATE(2116)] = 110430, - [SMALL_STATE(2117)] = 110447, - [SMALL_STATE(2118)] = 110458, - [SMALL_STATE(2119)] = 110469, - [SMALL_STATE(2120)] = 110484, - [SMALL_STATE(2121)] = 110495, - [SMALL_STATE(2122)] = 110510, - [SMALL_STATE(2123)] = 110521, - [SMALL_STATE(2124)] = 110538, - [SMALL_STATE(2125)] = 110549, - [SMALL_STATE(2126)] = 110560, - [SMALL_STATE(2127)] = 110571, - [SMALL_STATE(2128)] = 110586, - [SMALL_STATE(2129)] = 110597, - [SMALL_STATE(2130)] = 110608, - [SMALL_STATE(2131)] = 110625, - [SMALL_STATE(2132)] = 110636, - [SMALL_STATE(2133)] = 110651, - [SMALL_STATE(2134)] = 110668, - [SMALL_STATE(2135)] = 110679, - [SMALL_STATE(2136)] = 110690, - [SMALL_STATE(2137)] = 110705, - [SMALL_STATE(2138)] = 110722, - [SMALL_STATE(2139)] = 110739, - [SMALL_STATE(2140)] = 110754, - [SMALL_STATE(2141)] = 110765, - [SMALL_STATE(2142)] = 110780, - [SMALL_STATE(2143)] = 110791, - [SMALL_STATE(2144)] = 110802, - [SMALL_STATE(2145)] = 110819, - [SMALL_STATE(2146)] = 110836, - [SMALL_STATE(2147)] = 110851, - [SMALL_STATE(2148)] = 110862, - [SMALL_STATE(2149)] = 110879, - [SMALL_STATE(2150)] = 110896, - [SMALL_STATE(2151)] = 110913, - [SMALL_STATE(2152)] = 110930, - [SMALL_STATE(2153)] = 110941, - [SMALL_STATE(2154)] = 110952, - [SMALL_STATE(2155)] = 110963, - [SMALL_STATE(2156)] = 110974, - [SMALL_STATE(2157)] = 110985, - [SMALL_STATE(2158)] = 110996, - [SMALL_STATE(2159)] = 111007, - [SMALL_STATE(2160)] = 111018, - [SMALL_STATE(2161)] = 111029, - [SMALL_STATE(2162)] = 111046, - [SMALL_STATE(2163)] = 111063, - [SMALL_STATE(2164)] = 111078, - [SMALL_STATE(2165)] = 111095, - [SMALL_STATE(2166)] = 111106, - [SMALL_STATE(2167)] = 111117, - [SMALL_STATE(2168)] = 111128, - [SMALL_STATE(2169)] = 111139, - [SMALL_STATE(2170)] = 111156, - [SMALL_STATE(2171)] = 111173, - [SMALL_STATE(2172)] = 111186, - [SMALL_STATE(2173)] = 111201, - [SMALL_STATE(2174)] = 111212, - [SMALL_STATE(2175)] = 111229, - [SMALL_STATE(2176)] = 111240, - [SMALL_STATE(2177)] = 111251, - [SMALL_STATE(2178)] = 111262, - [SMALL_STATE(2179)] = 111273, - [SMALL_STATE(2180)] = 111290, - [SMALL_STATE(2181)] = 111301, - [SMALL_STATE(2182)] = 111312, - [SMALL_STATE(2183)] = 111323, - [SMALL_STATE(2184)] = 111334, - [SMALL_STATE(2185)] = 111345, - [SMALL_STATE(2186)] = 111360, - [SMALL_STATE(2187)] = 111377, - [SMALL_STATE(2188)] = 111388, - [SMALL_STATE(2189)] = 111405, - [SMALL_STATE(2190)] = 111416, - [SMALL_STATE(2191)] = 111427, - [SMALL_STATE(2192)] = 111438, - [SMALL_STATE(2193)] = 111455, - [SMALL_STATE(2194)] = 111466, - [SMALL_STATE(2195)] = 111477, - [SMALL_STATE(2196)] = 111492, - [SMALL_STATE(2197)] = 111503, - [SMALL_STATE(2198)] = 111520, - [SMALL_STATE(2199)] = 111531, - [SMALL_STATE(2200)] = 111544, - [SMALL_STATE(2201)] = 111555, - [SMALL_STATE(2202)] = 111572, - [SMALL_STATE(2203)] = 111583, - [SMALL_STATE(2204)] = 111594, - [SMALL_STATE(2205)] = 111605, - [SMALL_STATE(2206)] = 111622, - [SMALL_STATE(2207)] = 111633, - [SMALL_STATE(2208)] = 111644, - [SMALL_STATE(2209)] = 111655, - [SMALL_STATE(2210)] = 111666, - [SMALL_STATE(2211)] = 111681, - [SMALL_STATE(2212)] = 111692, - [SMALL_STATE(2213)] = 111707, - [SMALL_STATE(2214)] = 111718, - [SMALL_STATE(2215)] = 111729, - [SMALL_STATE(2216)] = 111744, - [SMALL_STATE(2217)] = 111755, - [SMALL_STATE(2218)] = 111766, - [SMALL_STATE(2219)] = 111781, - [SMALL_STATE(2220)] = 111796, - [SMALL_STATE(2221)] = 111807, - [SMALL_STATE(2222)] = 111818, - [SMALL_STATE(2223)] = 111829, - [SMALL_STATE(2224)] = 111840, - [SMALL_STATE(2225)] = 111857, - [SMALL_STATE(2226)] = 111868, - [SMALL_STATE(2227)] = 111879, - [SMALL_STATE(2228)] = 111896, - [SMALL_STATE(2229)] = 111913, - [SMALL_STATE(2230)] = 111924, - [SMALL_STATE(2231)] = 111939, - [SMALL_STATE(2232)] = 111954, - [SMALL_STATE(2233)] = 111965, - [SMALL_STATE(2234)] = 111976, - [SMALL_STATE(2235)] = 111987, - [SMALL_STATE(2236)] = 111998, - [SMALL_STATE(2237)] = 112015, - [SMALL_STATE(2238)] = 112032, - [SMALL_STATE(2239)] = 112043, - [SMALL_STATE(2240)] = 112060, - [SMALL_STATE(2241)] = 112071, - [SMALL_STATE(2242)] = 112084, - [SMALL_STATE(2243)] = 112098, - [SMALL_STATE(2244)] = 112112, - [SMALL_STATE(2245)] = 112124, - [SMALL_STATE(2246)] = 112136, - [SMALL_STATE(2247)] = 112150, - [SMALL_STATE(2248)] = 112164, - [SMALL_STATE(2249)] = 112178, - [SMALL_STATE(2250)] = 112192, - [SMALL_STATE(2251)] = 112206, - [SMALL_STATE(2252)] = 112220, - [SMALL_STATE(2253)] = 112234, - [SMALL_STATE(2254)] = 112246, - [SMALL_STATE(2255)] = 112260, - [SMALL_STATE(2256)] = 112274, - [SMALL_STATE(2257)] = 112288, - [SMALL_STATE(2258)] = 112302, - [SMALL_STATE(2259)] = 112312, - [SMALL_STATE(2260)] = 112326, - [SMALL_STATE(2261)] = 112340, - [SMALL_STATE(2262)] = 112354, - [SMALL_STATE(2263)] = 112368, - [SMALL_STATE(2264)] = 112382, - [SMALL_STATE(2265)] = 112396, - [SMALL_STATE(2266)] = 112410, - [SMALL_STATE(2267)] = 112424, - [SMALL_STATE(2268)] = 112438, - [SMALL_STATE(2269)] = 112452, - [SMALL_STATE(2270)] = 112466, - [SMALL_STATE(2271)] = 112480, - [SMALL_STATE(2272)] = 112494, - [SMALL_STATE(2273)] = 112508, - [SMALL_STATE(2274)] = 112520, - [SMALL_STATE(2275)] = 112534, - [SMALL_STATE(2276)] = 112548, - [SMALL_STATE(2277)] = 112562, - [SMALL_STATE(2278)] = 112576, - [SMALL_STATE(2279)] = 112588, - [SMALL_STATE(2280)] = 112602, - [SMALL_STATE(2281)] = 112616, - [SMALL_STATE(2282)] = 112630, - [SMALL_STATE(2283)] = 112644, - [SMALL_STATE(2284)] = 112658, - [SMALL_STATE(2285)] = 112672, - [SMALL_STATE(2286)] = 112686, - [SMALL_STATE(2287)] = 112698, - [SMALL_STATE(2288)] = 112708, - [SMALL_STATE(2289)] = 112722, - [SMALL_STATE(2290)] = 112734, - [SMALL_STATE(2291)] = 112746, - [SMALL_STATE(2292)] = 112758, - [SMALL_STATE(2293)] = 112772, - [SMALL_STATE(2294)] = 112786, - [SMALL_STATE(2295)] = 112796, - [SMALL_STATE(2296)] = 112810, - [SMALL_STATE(2297)] = 112824, - [SMALL_STATE(2298)] = 112838, - [SMALL_STATE(2299)] = 112852, - [SMALL_STATE(2300)] = 112866, - [SMALL_STATE(2301)] = 112880, - [SMALL_STATE(2302)] = 112892, - [SMALL_STATE(2303)] = 112906, - [SMALL_STATE(2304)] = 112920, - [SMALL_STATE(2305)] = 112934, - [SMALL_STATE(2306)] = 112948, - [SMALL_STATE(2307)] = 112962, - [SMALL_STATE(2308)] = 112972, - [SMALL_STATE(2309)] = 112986, - [SMALL_STATE(2310)] = 113000, - [SMALL_STATE(2311)] = 113014, - [SMALL_STATE(2312)] = 113028, - [SMALL_STATE(2313)] = 113042, - [SMALL_STATE(2314)] = 113054, - [SMALL_STATE(2315)] = 113068, - [SMALL_STATE(2316)] = 113082, - [SMALL_STATE(2317)] = 113096, - [SMALL_STATE(2318)] = 113110, - [SMALL_STATE(2319)] = 113124, - [SMALL_STATE(2320)] = 113138, - [SMALL_STATE(2321)] = 113152, - [SMALL_STATE(2322)] = 113166, - [SMALL_STATE(2323)] = 113180, - [SMALL_STATE(2324)] = 113194, - [SMALL_STATE(2325)] = 113208, - [SMALL_STATE(2326)] = 113222, - [SMALL_STATE(2327)] = 113236, - [SMALL_STATE(2328)] = 113250, - [SMALL_STATE(2329)] = 113262, - [SMALL_STATE(2330)] = 113272, - [SMALL_STATE(2331)] = 113286, - [SMALL_STATE(2332)] = 113300, - [SMALL_STATE(2333)] = 113314, - [SMALL_STATE(2334)] = 113328, - [SMALL_STATE(2335)] = 113342, - [SMALL_STATE(2336)] = 113356, - [SMALL_STATE(2337)] = 113370, - [SMALL_STATE(2338)] = 113384, - [SMALL_STATE(2339)] = 113398, - [SMALL_STATE(2340)] = 113412, - [SMALL_STATE(2341)] = 113426, - [SMALL_STATE(2342)] = 113440, - [SMALL_STATE(2343)] = 113454, - [SMALL_STATE(2344)] = 113468, - [SMALL_STATE(2345)] = 113482, - [SMALL_STATE(2346)] = 113496, - [SMALL_STATE(2347)] = 113510, - [SMALL_STATE(2348)] = 113524, - [SMALL_STATE(2349)] = 113538, - [SMALL_STATE(2350)] = 113552, - [SMALL_STATE(2351)] = 113566, - [SMALL_STATE(2352)] = 113580, - [SMALL_STATE(2353)] = 113594, - [SMALL_STATE(2354)] = 113608, - [SMALL_STATE(2355)] = 113618, - [SMALL_STATE(2356)] = 113632, - [SMALL_STATE(2357)] = 113646, - [SMALL_STATE(2358)] = 113660, - [SMALL_STATE(2359)] = 113674, - [SMALL_STATE(2360)] = 113684, - [SMALL_STATE(2361)] = 113696, - [SMALL_STATE(2362)] = 113710, - [SMALL_STATE(2363)] = 113724, - [SMALL_STATE(2364)] = 113738, - [SMALL_STATE(2365)] = 113752, - [SMALL_STATE(2366)] = 113766, - [SMALL_STATE(2367)] = 113776, - [SMALL_STATE(2368)] = 113790, - [SMALL_STATE(2369)] = 113804, - [SMALL_STATE(2370)] = 113818, - [SMALL_STATE(2371)] = 113832, - [SMALL_STATE(2372)] = 113846, - [SMALL_STATE(2373)] = 113860, - [SMALL_STATE(2374)] = 113874, - [SMALL_STATE(2375)] = 113888, - [SMALL_STATE(2376)] = 113902, - [SMALL_STATE(2377)] = 113916, - [SMALL_STATE(2378)] = 113930, - [SMALL_STATE(2379)] = 113944, - [SMALL_STATE(2380)] = 113958, - [SMALL_STATE(2381)] = 113972, - [SMALL_STATE(2382)] = 113986, - [SMALL_STATE(2383)] = 114000, - [SMALL_STATE(2384)] = 114010, - [SMALL_STATE(2385)] = 114024, - [SMALL_STATE(2386)] = 114036, - [SMALL_STATE(2387)] = 114050, - [SMALL_STATE(2388)] = 114064, - [SMALL_STATE(2389)] = 114078, - [SMALL_STATE(2390)] = 114092, - [SMALL_STATE(2391)] = 114106, - [SMALL_STATE(2392)] = 114120, - [SMALL_STATE(2393)] = 114132, - [SMALL_STATE(2394)] = 114146, - [SMALL_STATE(2395)] = 114160, - [SMALL_STATE(2396)] = 114174, - [SMALL_STATE(2397)] = 114188, - [SMALL_STATE(2398)] = 114202, - [SMALL_STATE(2399)] = 114216, - [SMALL_STATE(2400)] = 114230, - [SMALL_STATE(2401)] = 114242, - [SMALL_STATE(2402)] = 114256, - [SMALL_STATE(2403)] = 114270, - [SMALL_STATE(2404)] = 114284, - [SMALL_STATE(2405)] = 114298, - [SMALL_STATE(2406)] = 114312, - [SMALL_STATE(2407)] = 114326, - [SMALL_STATE(2408)] = 114340, - [SMALL_STATE(2409)] = 114354, - [SMALL_STATE(2410)] = 114368, - [SMALL_STATE(2411)] = 114382, - [SMALL_STATE(2412)] = 114396, - [SMALL_STATE(2413)] = 114410, - [SMALL_STATE(2414)] = 114424, - [SMALL_STATE(2415)] = 114438, - [SMALL_STATE(2416)] = 114452, - [SMALL_STATE(2417)] = 114462, - [SMALL_STATE(2418)] = 114476, - [SMALL_STATE(2419)] = 114490, - [SMALL_STATE(2420)] = 114504, - [SMALL_STATE(2421)] = 114518, - [SMALL_STATE(2422)] = 114532, - [SMALL_STATE(2423)] = 114546, - [SMALL_STATE(2424)] = 114560, - [SMALL_STATE(2425)] = 114574, - [SMALL_STATE(2426)] = 114584, - [SMALL_STATE(2427)] = 114594, - [SMALL_STATE(2428)] = 114608, - [SMALL_STATE(2429)] = 114622, - [SMALL_STATE(2430)] = 114636, - [SMALL_STATE(2431)] = 114650, - [SMALL_STATE(2432)] = 114664, - [SMALL_STATE(2433)] = 114678, - [SMALL_STATE(2434)] = 114692, - [SMALL_STATE(2435)] = 114706, - [SMALL_STATE(2436)] = 114720, - [SMALL_STATE(2437)] = 114734, - [SMALL_STATE(2438)] = 114748, - [SMALL_STATE(2439)] = 114762, - [SMALL_STATE(2440)] = 114776, - [SMALL_STATE(2441)] = 114790, - [SMALL_STATE(2442)] = 114804, - [SMALL_STATE(2443)] = 114818, - [SMALL_STATE(2444)] = 114832, - [SMALL_STATE(2445)] = 114846, - [SMALL_STATE(2446)] = 114860, - [SMALL_STATE(2447)] = 114874, - [SMALL_STATE(2448)] = 114888, - [SMALL_STATE(2449)] = 114902, - [SMALL_STATE(2450)] = 114916, - [SMALL_STATE(2451)] = 114930, - [SMALL_STATE(2452)] = 114944, - [SMALL_STATE(2453)] = 114958, - [SMALL_STATE(2454)] = 114972, - [SMALL_STATE(2455)] = 114986, - [SMALL_STATE(2456)] = 115000, - [SMALL_STATE(2457)] = 115014, - [SMALL_STATE(2458)] = 115028, - [SMALL_STATE(2459)] = 115042, - [SMALL_STATE(2460)] = 115052, - [SMALL_STATE(2461)] = 115066, - [SMALL_STATE(2462)] = 115080, - [SMALL_STATE(2463)] = 115094, - [SMALL_STATE(2464)] = 115108, - [SMALL_STATE(2465)] = 115122, - [SMALL_STATE(2466)] = 115136, - [SMALL_STATE(2467)] = 115150, - [SMALL_STATE(2468)] = 115164, - [SMALL_STATE(2469)] = 115178, - [SMALL_STATE(2470)] = 115192, - [SMALL_STATE(2471)] = 115204, - [SMALL_STATE(2472)] = 115218, - [SMALL_STATE(2473)] = 115230, - [SMALL_STATE(2474)] = 115244, - [SMALL_STATE(2475)] = 115258, - [SMALL_STATE(2476)] = 115272, - [SMALL_STATE(2477)] = 115284, - [SMALL_STATE(2478)] = 115298, - [SMALL_STATE(2479)] = 115312, - [SMALL_STATE(2480)] = 115326, - [SMALL_STATE(2481)] = 115340, - [SMALL_STATE(2482)] = 115354, - [SMALL_STATE(2483)] = 115368, - [SMALL_STATE(2484)] = 115382, - [SMALL_STATE(2485)] = 115396, - [SMALL_STATE(2486)] = 115410, - [SMALL_STATE(2487)] = 115424, - [SMALL_STATE(2488)] = 115438, - [SMALL_STATE(2489)] = 115452, - [SMALL_STATE(2490)] = 115466, - [SMALL_STATE(2491)] = 115480, - [SMALL_STATE(2492)] = 115490, - [SMALL_STATE(2493)] = 115499, - [SMALL_STATE(2494)] = 115510, - [SMALL_STATE(2495)] = 115519, - [SMALL_STATE(2496)] = 115528, - [SMALL_STATE(2497)] = 115537, - [SMALL_STATE(2498)] = 115546, - [SMALL_STATE(2499)] = 115555, - [SMALL_STATE(2500)] = 115564, - [SMALL_STATE(2501)] = 115573, - [SMALL_STATE(2502)] = 115582, - [SMALL_STATE(2503)] = 115591, - [SMALL_STATE(2504)] = 115600, - [SMALL_STATE(2505)] = 115609, - [SMALL_STATE(2506)] = 115618, - [SMALL_STATE(2507)] = 115627, - [SMALL_STATE(2508)] = 115636, - [SMALL_STATE(2509)] = 115645, - [SMALL_STATE(2510)] = 115654, - [SMALL_STATE(2511)] = 115663, - [SMALL_STATE(2512)] = 115672, - [SMALL_STATE(2513)] = 115683, - [SMALL_STATE(2514)] = 115692, - [SMALL_STATE(2515)] = 115701, - [SMALL_STATE(2516)] = 115710, - [SMALL_STATE(2517)] = 115719, - [SMALL_STATE(2518)] = 115728, - [SMALL_STATE(2519)] = 115737, - [SMALL_STATE(2520)] = 115748, - [SMALL_STATE(2521)] = 115757, - [SMALL_STATE(2522)] = 115768, - [SMALL_STATE(2523)] = 115777, - [SMALL_STATE(2524)] = 115786, - [SMALL_STATE(2525)] = 115797, - [SMALL_STATE(2526)] = 115806, - [SMALL_STATE(2527)] = 115815, - [SMALL_STATE(2528)] = 115824, - [SMALL_STATE(2529)] = 115833, - [SMALL_STATE(2530)] = 115842, - [SMALL_STATE(2531)] = 115851, - [SMALL_STATE(2532)] = 115862, - [SMALL_STATE(2533)] = 115873, - [SMALL_STATE(2534)] = 115882, - [SMALL_STATE(2535)] = 115891, - [SMALL_STATE(2536)] = 115902, - [SMALL_STATE(2537)] = 115911, - [SMALL_STATE(2538)] = 115920, - [SMALL_STATE(2539)] = 115929, - [SMALL_STATE(2540)] = 115940, - [SMALL_STATE(2541)] = 115949, - [SMALL_STATE(2542)] = 115958, - [SMALL_STATE(2543)] = 115967, - [SMALL_STATE(2544)] = 115978, - [SMALL_STATE(2545)] = 115987, - [SMALL_STATE(2546)] = 115996, - [SMALL_STATE(2547)] = 116005, - [SMALL_STATE(2548)] = 116016, - [SMALL_STATE(2549)] = 116025, - [SMALL_STATE(2550)] = 116034, - [SMALL_STATE(2551)] = 116043, - [SMALL_STATE(2552)] = 116052, - [SMALL_STATE(2553)] = 116061, - [SMALL_STATE(2554)] = 116070, - [SMALL_STATE(2555)] = 116079, - [SMALL_STATE(2556)] = 116088, - [SMALL_STATE(2557)] = 116097, - [SMALL_STATE(2558)] = 116106, - [SMALL_STATE(2559)] = 116117, - [SMALL_STATE(2560)] = 116128, - [SMALL_STATE(2561)] = 116139, - [SMALL_STATE(2562)] = 116150, - [SMALL_STATE(2563)] = 116161, - [SMALL_STATE(2564)] = 116170, - [SMALL_STATE(2565)] = 116179, - [SMALL_STATE(2566)] = 116188, - [SMALL_STATE(2567)] = 116197, - [SMALL_STATE(2568)] = 116208, - [SMALL_STATE(2569)] = 116219, - [SMALL_STATE(2570)] = 116228, - [SMALL_STATE(2571)] = 116237, - [SMALL_STATE(2572)] = 116248, - [SMALL_STATE(2573)] = 116257, - [SMALL_STATE(2574)] = 116266, - [SMALL_STATE(2575)] = 116275, - [SMALL_STATE(2576)] = 116284, - [SMALL_STATE(2577)] = 116295, - [SMALL_STATE(2578)] = 116304, - [SMALL_STATE(2579)] = 116313, - [SMALL_STATE(2580)] = 116322, - [SMALL_STATE(2581)] = 116331, - [SMALL_STATE(2582)] = 116340, - [SMALL_STATE(2583)] = 116349, - [SMALL_STATE(2584)] = 116358, - [SMALL_STATE(2585)] = 116367, - [SMALL_STATE(2586)] = 116378, - [SMALL_STATE(2587)] = 116389, - [SMALL_STATE(2588)] = 116398, - [SMALL_STATE(2589)] = 116409, - [SMALL_STATE(2590)] = 116420, - [SMALL_STATE(2591)] = 116429, - [SMALL_STATE(2592)] = 116438, - [SMALL_STATE(2593)] = 116449, - [SMALL_STATE(2594)] = 116457, - [SMALL_STATE(2595)] = 116465, - [SMALL_STATE(2596)] = 116473, - [SMALL_STATE(2597)] = 116481, - [SMALL_STATE(2598)] = 116489, - [SMALL_STATE(2599)] = 116497, - [SMALL_STATE(2600)] = 116505, - [SMALL_STATE(2601)] = 116513, - [SMALL_STATE(2602)] = 116521, - [SMALL_STATE(2603)] = 116529, - [SMALL_STATE(2604)] = 116537, - [SMALL_STATE(2605)] = 116545, - [SMALL_STATE(2606)] = 116553, - [SMALL_STATE(2607)] = 116561, - [SMALL_STATE(2608)] = 116569, - [SMALL_STATE(2609)] = 116577, - [SMALL_STATE(2610)] = 116585, - [SMALL_STATE(2611)] = 116593, - [SMALL_STATE(2612)] = 116601, - [SMALL_STATE(2613)] = 116609, - [SMALL_STATE(2614)] = 116617, - [SMALL_STATE(2615)] = 116625, - [SMALL_STATE(2616)] = 116633, - [SMALL_STATE(2617)] = 116641, - [SMALL_STATE(2618)] = 116649, - [SMALL_STATE(2619)] = 116657, - [SMALL_STATE(2620)] = 116665, - [SMALL_STATE(2621)] = 116673, - [SMALL_STATE(2622)] = 116681, - [SMALL_STATE(2623)] = 116689, - [SMALL_STATE(2624)] = 116697, - [SMALL_STATE(2625)] = 116705, - [SMALL_STATE(2626)] = 116713, - [SMALL_STATE(2627)] = 116721, - [SMALL_STATE(2628)] = 116729, - [SMALL_STATE(2629)] = 116737, - [SMALL_STATE(2630)] = 116745, - [SMALL_STATE(2631)] = 116753, - [SMALL_STATE(2632)] = 116761, - [SMALL_STATE(2633)] = 116769, - [SMALL_STATE(2634)] = 116777, - [SMALL_STATE(2635)] = 116785, - [SMALL_STATE(2636)] = 116793, - [SMALL_STATE(2637)] = 116801, - [SMALL_STATE(2638)] = 116809, - [SMALL_STATE(2639)] = 116817, - [SMALL_STATE(2640)] = 116825, - [SMALL_STATE(2641)] = 116833, - [SMALL_STATE(2642)] = 116841, - [SMALL_STATE(2643)] = 116849, - [SMALL_STATE(2644)] = 116857, - [SMALL_STATE(2645)] = 116865, - [SMALL_STATE(2646)] = 116873, - [SMALL_STATE(2647)] = 116881, - [SMALL_STATE(2648)] = 116889, - [SMALL_STATE(2649)] = 116897, - [SMALL_STATE(2650)] = 116905, - [SMALL_STATE(2651)] = 116913, - [SMALL_STATE(2652)] = 116921, - [SMALL_STATE(2653)] = 116929, - [SMALL_STATE(2654)] = 116937, - [SMALL_STATE(2655)] = 116945, - [SMALL_STATE(2656)] = 116953, - [SMALL_STATE(2657)] = 116961, - [SMALL_STATE(2658)] = 116969, - [SMALL_STATE(2659)] = 116977, - [SMALL_STATE(2660)] = 116985, - [SMALL_STATE(2661)] = 116993, - [SMALL_STATE(2662)] = 117001, - [SMALL_STATE(2663)] = 117009, - [SMALL_STATE(2664)] = 117017, - [SMALL_STATE(2665)] = 117025, - [SMALL_STATE(2666)] = 117033, - [SMALL_STATE(2667)] = 117041, - [SMALL_STATE(2668)] = 117049, - [SMALL_STATE(2669)] = 117057, - [SMALL_STATE(2670)] = 117065, - [SMALL_STATE(2671)] = 117073, - [SMALL_STATE(2672)] = 117081, - [SMALL_STATE(2673)] = 117089, - [SMALL_STATE(2674)] = 117097, - [SMALL_STATE(2675)] = 117105, - [SMALL_STATE(2676)] = 117113, - [SMALL_STATE(2677)] = 117121, - [SMALL_STATE(2678)] = 117129, - [SMALL_STATE(2679)] = 117137, - [SMALL_STATE(2680)] = 117145, - [SMALL_STATE(2681)] = 117153, - [SMALL_STATE(2682)] = 117161, - [SMALL_STATE(2683)] = 117169, - [SMALL_STATE(2684)] = 117177, - [SMALL_STATE(2685)] = 117185, - [SMALL_STATE(2686)] = 117193, - [SMALL_STATE(2687)] = 117201, - [SMALL_STATE(2688)] = 117209, - [SMALL_STATE(2689)] = 117217, - [SMALL_STATE(2690)] = 117225, - [SMALL_STATE(2691)] = 117233, - [SMALL_STATE(2692)] = 117241, - [SMALL_STATE(2693)] = 117249, - [SMALL_STATE(2694)] = 117257, - [SMALL_STATE(2695)] = 117265, - [SMALL_STATE(2696)] = 117273, - [SMALL_STATE(2697)] = 117281, - [SMALL_STATE(2698)] = 117289, - [SMALL_STATE(2699)] = 117297, - [SMALL_STATE(2700)] = 117305, - [SMALL_STATE(2701)] = 117313, - [SMALL_STATE(2702)] = 117321, - [SMALL_STATE(2703)] = 117329, - [SMALL_STATE(2704)] = 117337, - [SMALL_STATE(2705)] = 117345, - [SMALL_STATE(2706)] = 117353, - [SMALL_STATE(2707)] = 117361, - [SMALL_STATE(2708)] = 117369, - [SMALL_STATE(2709)] = 117377, - [SMALL_STATE(2710)] = 117385, - [SMALL_STATE(2711)] = 117393, - [SMALL_STATE(2712)] = 117401, - [SMALL_STATE(2713)] = 117409, - [SMALL_STATE(2714)] = 117417, - [SMALL_STATE(2715)] = 117425, - [SMALL_STATE(2716)] = 117433, - [SMALL_STATE(2717)] = 117441, - [SMALL_STATE(2718)] = 117449, - [SMALL_STATE(2719)] = 117457, - [SMALL_STATE(2720)] = 117465, - [SMALL_STATE(2721)] = 117473, - [SMALL_STATE(2722)] = 117481, - [SMALL_STATE(2723)] = 117489, - [SMALL_STATE(2724)] = 117497, - [SMALL_STATE(2725)] = 117505, - [SMALL_STATE(2726)] = 117513, - [SMALL_STATE(2727)] = 117521, - [SMALL_STATE(2728)] = 117529, - [SMALL_STATE(2729)] = 117537, - [SMALL_STATE(2730)] = 117545, - [SMALL_STATE(2731)] = 117553, - [SMALL_STATE(2732)] = 117561, - [SMALL_STATE(2733)] = 117569, - [SMALL_STATE(2734)] = 117577, - [SMALL_STATE(2735)] = 117585, - [SMALL_STATE(2736)] = 117593, - [SMALL_STATE(2737)] = 117601, - [SMALL_STATE(2738)] = 117609, - [SMALL_STATE(2739)] = 117617, - [SMALL_STATE(2740)] = 117625, - [SMALL_STATE(2741)] = 117633, - [SMALL_STATE(2742)] = 117641, - [SMALL_STATE(2743)] = 117649, - [SMALL_STATE(2744)] = 117657, - [SMALL_STATE(2745)] = 117665, - [SMALL_STATE(2746)] = 117673, - [SMALL_STATE(2747)] = 117681, - [SMALL_STATE(2748)] = 117689, - [SMALL_STATE(2749)] = 117697, - [SMALL_STATE(2750)] = 117705, - [SMALL_STATE(2751)] = 117713, - [SMALL_STATE(2752)] = 117721, - [SMALL_STATE(2753)] = 117729, - [SMALL_STATE(2754)] = 117737, - [SMALL_STATE(2755)] = 117745, - [SMALL_STATE(2756)] = 117753, - [SMALL_STATE(2757)] = 117761, - [SMALL_STATE(2758)] = 117769, - [SMALL_STATE(2759)] = 117777, - [SMALL_STATE(2760)] = 117785, - [SMALL_STATE(2761)] = 117793, - [SMALL_STATE(2762)] = 117801, - [SMALL_STATE(2763)] = 117809, - [SMALL_STATE(2764)] = 117817, - [SMALL_STATE(2765)] = 117825, - [SMALL_STATE(2766)] = 117833, - [SMALL_STATE(2767)] = 117841, - [SMALL_STATE(2768)] = 117849, - [SMALL_STATE(2769)] = 117857, - [SMALL_STATE(2770)] = 117865, - [SMALL_STATE(2771)] = 117873, - [SMALL_STATE(2772)] = 117881, - [SMALL_STATE(2773)] = 117889, - [SMALL_STATE(2774)] = 117897, - [SMALL_STATE(2775)] = 117905, - [SMALL_STATE(2776)] = 117913, - [SMALL_STATE(2777)] = 117921, - [SMALL_STATE(2778)] = 117929, - [SMALL_STATE(2779)] = 117937, - [SMALL_STATE(2780)] = 117945, - [SMALL_STATE(2781)] = 117953, - [SMALL_STATE(2782)] = 117961, - [SMALL_STATE(2783)] = 117969, - [SMALL_STATE(2784)] = 117977, - [SMALL_STATE(2785)] = 117985, - [SMALL_STATE(2786)] = 117993, - [SMALL_STATE(2787)] = 118001, + [SMALL_STATE(186)] = 129, + [SMALL_STATE(187)] = 250, + [SMALL_STATE(188)] = 375, + [SMALL_STATE(189)] = 504, + [SMALL_STATE(190)] = 625, + [SMALL_STATE(191)] = 750, + [SMALL_STATE(192)] = 877, + [SMALL_STATE(193)] = 1004, + [SMALL_STATE(194)] = 1129, + [SMALL_STATE(195)] = 1254, + [SMALL_STATE(196)] = 1379, + [SMALL_STATE(197)] = 1504, + [SMALL_STATE(198)] = 1625, + [SMALL_STATE(199)] = 1752, + [SMALL_STATE(200)] = 1877, + [SMALL_STATE(201)] = 2002, + [SMALL_STATE(202)] = 2129, + [SMALL_STATE(203)] = 2254, + [SMALL_STATE(204)] = 2379, + [SMALL_STATE(205)] = 2506, + [SMALL_STATE(206)] = 2631, + [SMALL_STATE(207)] = 2756, + [SMALL_STATE(208)] = 2883, + [SMALL_STATE(209)] = 3008, + [SMALL_STATE(210)] = 3133, + [SMALL_STATE(211)] = 3260, + [SMALL_STATE(212)] = 3385, + [SMALL_STATE(213)] = 3510, + [SMALL_STATE(214)] = 3637, + [SMALL_STATE(215)] = 3762, + [SMALL_STATE(216)] = 3887, + [SMALL_STATE(217)] = 4012, + [SMALL_STATE(218)] = 4139, + [SMALL_STATE(219)] = 4247, + [SMALL_STATE(220)] = 4355, + [SMALL_STATE(221)] = 4472, + [SMALL_STATE(222)] = 4589, + [SMALL_STATE(223)] = 4706, + [SMALL_STATE(224)] = 4823, + [SMALL_STATE(225)] = 4940, + [SMALL_STATE(226)] = 5057, + [SMALL_STATE(227)] = 5174, + [SMALL_STATE(228)] = 5291, + [SMALL_STATE(229)] = 5408, + [SMALL_STATE(230)] = 5525, + [SMALL_STATE(231)] = 5639, + [SMALL_STATE(232)] = 5753, + [SMALL_STATE(233)] = 5865, + [SMALL_STATE(234)] = 5981, + [SMALL_STATE(235)] = 6095, + [SMALL_STATE(236)] = 6209, + [SMALL_STATE(237)] = 6323, + [SMALL_STATE(238)] = 6437, + [SMALL_STATE(239)] = 6553, + [SMALL_STATE(240)] = 6667, + [SMALL_STATE(241)] = 6785, + [SMALL_STATE(242)] = 6899, + [SMALL_STATE(243)] = 7013, + [SMALL_STATE(244)] = 7127, + [SMALL_STATE(245)] = 7241, + [SMALL_STATE(246)] = 7355, + [SMALL_STATE(247)] = 7469, + [SMALL_STATE(248)] = 7583, + [SMALL_STATE(249)] = 7697, + [SMALL_STATE(250)] = 7813, + [SMALL_STATE(251)] = 7929, + [SMALL_STATE(252)] = 8043, + [SMALL_STATE(253)] = 8149, + [SMALL_STATE(254)] = 8255, + [SMALL_STATE(255)] = 8371, + [SMALL_STATE(256)] = 8487, + [SMALL_STATE(257)] = 8601, + [SMALL_STATE(258)] = 8717, + [SMALL_STATE(259)] = 8833, + [SMALL_STATE(260)] = 8949, + [SMALL_STATE(261)] = 9063, + [SMALL_STATE(262)] = 9177, + [SMALL_STATE(263)] = 9291, + [SMALL_STATE(264)] = 9405, + [SMALL_STATE(265)] = 9519, + [SMALL_STATE(266)] = 9633, + [SMALL_STATE(267)] = 9747, + [SMALL_STATE(268)] = 9861, + [SMALL_STATE(269)] = 9974, + [SMALL_STATE(270)] = 10087, + [SMALL_STATE(271)] = 10200, + [SMALL_STATE(272)] = 10313, + [SMALL_STATE(273)] = 10426, + [SMALL_STATE(274)] = 10539, + [SMALL_STATE(275)] = 10652, + [SMALL_STATE(276)] = 10769, + [SMALL_STATE(277)] = 10884, + [SMALL_STATE(278)] = 10997, + [SMALL_STATE(279)] = 11114, + [SMALL_STATE(280)] = 11227, + [SMALL_STATE(281)] = 11340, + [SMALL_STATE(282)] = 11453, + [SMALL_STATE(283)] = 11566, + [SMALL_STATE(284)] = 11679, + [SMALL_STATE(285)] = 11794, + [SMALL_STATE(286)] = 11907, + [SMALL_STATE(287)] = 12024, + [SMALL_STATE(288)] = 12137, + [SMALL_STATE(289)] = 12250, + [SMALL_STATE(290)] = 12363, + [SMALL_STATE(291)] = 12478, + [SMALL_STATE(292)] = 12591, + [SMALL_STATE(293)] = 12704, + [SMALL_STATE(294)] = 12819, + [SMALL_STATE(295)] = 12932, + [SMALL_STATE(296)] = 13045, + [SMALL_STATE(297)] = 13158, + [SMALL_STATE(298)] = 13271, + [SMALL_STATE(299)] = 13384, + [SMALL_STATE(300)] = 13499, + [SMALL_STATE(301)] = 13612, + [SMALL_STATE(302)] = 13729, + [SMALL_STATE(303)] = 13842, + [SMALL_STATE(304)] = 13955, + [SMALL_STATE(305)] = 14068, + [SMALL_STATE(306)] = 14181, + [SMALL_STATE(307)] = 14296, + [SMALL_STATE(308)] = 14409, + [SMALL_STATE(309)] = 14526, + [SMALL_STATE(310)] = 14639, + [SMALL_STATE(311)] = 14752, + [SMALL_STATE(312)] = 14865, + [SMALL_STATE(313)] = 14978, + [SMALL_STATE(314)] = 15093, + [SMALL_STATE(315)] = 15206, + [SMALL_STATE(316)] = 15319, + [SMALL_STATE(317)] = 15432, + [SMALL_STATE(318)] = 15545, + [SMALL_STATE(319)] = 15658, + [SMALL_STATE(320)] = 15773, + [SMALL_STATE(321)] = 15886, + [SMALL_STATE(322)] = 16003, + [SMALL_STATE(323)] = 16113, + [SMALL_STATE(324)] = 16223, + [SMALL_STATE(325)] = 16329, + [SMALL_STATE(326)] = 16439, + [SMALL_STATE(327)] = 16549, + [SMALL_STATE(328)] = 16659, + [SMALL_STATE(329)] = 16769, + [SMALL_STATE(330)] = 16879, + [SMALL_STATE(331)] = 16989, + [SMALL_STATE(332)] = 17095, + [SMALL_STATE(333)] = 17205, + [SMALL_STATE(334)] = 17315, + [SMALL_STATE(335)] = 17425, + [SMALL_STATE(336)] = 17535, + [SMALL_STATE(337)] = 17633, + [SMALL_STATE(338)] = 17743, + [SMALL_STATE(339)] = 17853, + [SMALL_STATE(340)] = 17963, + [SMALL_STATE(341)] = 18073, + [SMALL_STATE(342)] = 18183, + [SMALL_STATE(343)] = 18293, + [SMALL_STATE(344)] = 18403, + [SMALL_STATE(345)] = 18512, + [SMALL_STATE(346)] = 18621, + [SMALL_STATE(347)] = 18728, + [SMALL_STATE(348)] = 18837, + [SMALL_STATE(349)] = 18946, + [SMALL_STATE(350)] = 19053, + [SMALL_STATE(351)] = 19162, + [SMALL_STATE(352)] = 19271, + [SMALL_STATE(353)] = 19380, + [SMALL_STATE(354)] = 19487, + [SMALL_STATE(355)] = 19596, + [SMALL_STATE(356)] = 19705, + [SMALL_STATE(357)] = 19814, + [SMALL_STATE(358)] = 19923, + [SMALL_STATE(359)] = 20032, + [SMALL_STATE(360)] = 20141, + [SMALL_STATE(361)] = 20250, + [SMALL_STATE(362)] = 20359, + [SMALL_STATE(363)] = 20468, + [SMALL_STATE(364)] = 20577, + [SMALL_STATE(365)] = 20686, + [SMALL_STATE(366)] = 20795, + [SMALL_STATE(367)] = 20904, + [SMALL_STATE(368)] = 21012, + [SMALL_STATE(369)] = 21120, + [SMALL_STATE(370)] = 21226, + [SMALL_STATE(371)] = 21334, + [SMALL_STATE(372)] = 21442, + [SMALL_STATE(373)] = 21550, + [SMALL_STATE(374)] = 21658, + [SMALL_STATE(375)] = 21766, + [SMALL_STATE(376)] = 21874, + [SMALL_STATE(377)] = 21982, + [SMALL_STATE(378)] = 22090, + [SMALL_STATE(379)] = 22196, + [SMALL_STATE(380)] = 22304, + [SMALL_STATE(381)] = 22412, + [SMALL_STATE(382)] = 22520, + [SMALL_STATE(383)] = 22626, + [SMALL_STATE(384)] = 22734, + [SMALL_STATE(385)] = 22842, + [SMALL_STATE(386)] = 22950, + [SMALL_STATE(387)] = 23056, + [SMALL_STATE(388)] = 23164, + [SMALL_STATE(389)] = 23272, + [SMALL_STATE(390)] = 23380, + [SMALL_STATE(391)] = 23488, + [SMALL_STATE(392)] = 23596, + [SMALL_STATE(393)] = 23704, + [SMALL_STATE(394)] = 23812, + [SMALL_STATE(395)] = 23920, + [SMALL_STATE(396)] = 24028, + [SMALL_STATE(397)] = 24136, + [SMALL_STATE(398)] = 24242, + [SMALL_STATE(399)] = 24350, + [SMALL_STATE(400)] = 24458, + [SMALL_STATE(401)] = 24566, + [SMALL_STATE(402)] = 24672, + [SMALL_STATE(403)] = 24780, + [SMALL_STATE(404)] = 24876, + [SMALL_STATE(405)] = 24972, + [SMALL_STATE(406)] = 25077, + [SMALL_STATE(407)] = 25180, + [SMALL_STATE(408)] = 25283, + [SMALL_STATE(409)] = 25386, + [SMALL_STATE(410)] = 25481, + [SMALL_STATE(411)] = 25584, + [SMALL_STATE(412)] = 25687, + [SMALL_STATE(413)] = 25792, + [SMALL_STATE(414)] = 25895, + [SMALL_STATE(415)] = 25992, + [SMALL_STATE(416)] = 26095, + [SMALL_STATE(417)] = 26198, + [SMALL_STATE(418)] = 26303, + [SMALL_STATE(419)] = 26406, + [SMALL_STATE(420)] = 26509, + [SMALL_STATE(421)] = 26612, + [SMALL_STATE(422)] = 26715, + [SMALL_STATE(423)] = 26818, + [SMALL_STATE(424)] = 26921, + [SMALL_STATE(425)] = 27026, + [SMALL_STATE(426)] = 27129, + [SMALL_STATE(427)] = 27232, + [SMALL_STATE(428)] = 27335, + [SMALL_STATE(429)] = 27440, + [SMALL_STATE(430)] = 27543, + [SMALL_STATE(431)] = 27646, + [SMALL_STATE(432)] = 27751, + [SMALL_STATE(433)] = 27846, + [SMALL_STATE(434)] = 27951, + [SMALL_STATE(435)] = 28054, + [SMALL_STATE(436)] = 28157, + [SMALL_STATE(437)] = 28260, + [SMALL_STATE(438)] = 28355, + [SMALL_STATE(439)] = 28450, + [SMALL_STATE(440)] = 28553, + [SMALL_STATE(441)] = 28656, + [SMALL_STATE(442)] = 28761, + [SMALL_STATE(443)] = 28866, + [SMALL_STATE(444)] = 28969, + [SMALL_STATE(445)] = 29074, + [SMALL_STATE(446)] = 29179, + [SMALL_STATE(447)] = 29284, + [SMALL_STATE(448)] = 29387, + [SMALL_STATE(449)] = 29492, + [SMALL_STATE(450)] = 29597, + [SMALL_STATE(451)] = 29702, + [SMALL_STATE(452)] = 29807, + [SMALL_STATE(453)] = 29912, + [SMALL_STATE(454)] = 30015, + [SMALL_STATE(455)] = 30120, + [SMALL_STATE(456)] = 30225, + [SMALL_STATE(457)] = 30330, + [SMALL_STATE(458)] = 30435, + [SMALL_STATE(459)] = 30538, + [SMALL_STATE(460)] = 30641, + [SMALL_STATE(461)] = 30743, + [SMALL_STATE(462)] = 30845, + [SMALL_STATE(463)] = 30921, + [SMALL_STATE(464)] = 31023, + [SMALL_STATE(465)] = 31125, + [SMALL_STATE(466)] = 31227, + [SMALL_STATE(467)] = 31329, + [SMALL_STATE(468)] = 31431, + [SMALL_STATE(469)] = 31533, + [SMALL_STATE(470)] = 31635, + [SMALL_STATE(471)] = 31713, + [SMALL_STATE(472)] = 31815, + [SMALL_STATE(473)] = 31917, + [SMALL_STATE(474)] = 32019, + [SMALL_STATE(475)] = 32121, + [SMALL_STATE(476)] = 32223, + [SMALL_STATE(477)] = 32325, + [SMALL_STATE(478)] = 32424, + [SMALL_STATE(479)] = 32497, + [SMALL_STATE(480)] = 32596, + [SMALL_STATE(481)] = 32695, + [SMALL_STATE(482)] = 32768, + [SMALL_STATE(483)] = 32867, + [SMALL_STATE(484)] = 32966, + [SMALL_STATE(485)] = 33041, + [SMALL_STATE(486)] = 33114, + [SMALL_STATE(487)] = 33187, + [SMALL_STATE(488)] = 33262, + [SMALL_STATE(489)] = 33361, + [SMALL_STATE(490)] = 33460, + [SMALL_STATE(491)] = 33533, + [SMALL_STATE(492)] = 33632, + [SMALL_STATE(493)] = 33731, + [SMALL_STATE(494)] = 33830, + [SMALL_STATE(495)] = 33929, + [SMALL_STATE(496)] = 34028, + [SMALL_STATE(497)] = 34127, + [SMALL_STATE(498)] = 34226, + [SMALL_STATE(499)] = 34325, + [SMALL_STATE(500)] = 34424, + [SMALL_STATE(501)] = 34523, + [SMALL_STATE(502)] = 34622, + [SMALL_STATE(503)] = 34721, + [SMALL_STATE(504)] = 34820, + [SMALL_STATE(505)] = 34919, + [SMALL_STATE(506)] = 35018, + [SMALL_STATE(507)] = 35117, + [SMALL_STATE(508)] = 35216, + [SMALL_STATE(509)] = 35315, + [SMALL_STATE(510)] = 35414, + [SMALL_STATE(511)] = 35487, + [SMALL_STATE(512)] = 35586, + [SMALL_STATE(513)] = 35685, + [SMALL_STATE(514)] = 35784, + [SMALL_STATE(515)] = 35883, + [SMALL_STATE(516)] = 35982, + [SMALL_STATE(517)] = 36083, + [SMALL_STATE(518)] = 36182, + [SMALL_STATE(519)] = 36281, + [SMALL_STATE(520)] = 36380, + [SMALL_STATE(521)] = 36479, + [SMALL_STATE(522)] = 36578, + [SMALL_STATE(523)] = 36677, + [SMALL_STATE(524)] = 36776, + [SMALL_STATE(525)] = 36875, + [SMALL_STATE(526)] = 36974, + [SMALL_STATE(527)] = 37073, + [SMALL_STATE(528)] = 37172, + [SMALL_STATE(529)] = 37271, + [SMALL_STATE(530)] = 37370, + [SMALL_STATE(531)] = 37469, + [SMALL_STATE(532)] = 37568, + [SMALL_STATE(533)] = 37667, + [SMALL_STATE(534)] = 37766, + [SMALL_STATE(535)] = 37865, + [SMALL_STATE(536)] = 37964, + [SMALL_STATE(537)] = 38063, + [SMALL_STATE(538)] = 38162, + [SMALL_STATE(539)] = 38261, + [SMALL_STATE(540)] = 38360, + [SMALL_STATE(541)] = 38459, + [SMALL_STATE(542)] = 38558, + [SMALL_STATE(543)] = 38657, + [SMALL_STATE(544)] = 38756, + [SMALL_STATE(545)] = 38855, + [SMALL_STATE(546)] = 38954, + [SMALL_STATE(547)] = 39053, + [SMALL_STATE(548)] = 39152, + [SMALL_STATE(549)] = 39251, + [SMALL_STATE(550)] = 39324, + [SMALL_STATE(551)] = 39425, + [SMALL_STATE(552)] = 39524, + [SMALL_STATE(553)] = 39623, + [SMALL_STATE(554)] = 39722, + [SMALL_STATE(555)] = 39821, + [SMALL_STATE(556)] = 39920, + [SMALL_STATE(557)] = 40019, + [SMALL_STATE(558)] = 40094, + [SMALL_STATE(559)] = 40167, + [SMALL_STATE(560)] = 40266, + [SMALL_STATE(561)] = 40365, + [SMALL_STATE(562)] = 40464, + [SMALL_STATE(563)] = 40563, + [SMALL_STATE(564)] = 40662, + [SMALL_STATE(565)] = 40761, + [SMALL_STATE(566)] = 40860, + [SMALL_STATE(567)] = 40959, + [SMALL_STATE(568)] = 41058, + [SMALL_STATE(569)] = 41157, + [SMALL_STATE(570)] = 41256, + [SMALL_STATE(571)] = 41357, + [SMALL_STATE(572)] = 41456, + [SMALL_STATE(573)] = 41555, + [SMALL_STATE(574)] = 41654, + [SMALL_STATE(575)] = 41753, + [SMALL_STATE(576)] = 41852, + [SMALL_STATE(577)] = 41951, + [SMALL_STATE(578)] = 42050, + [SMALL_STATE(579)] = 42151, + [SMALL_STATE(580)] = 42250, + [SMALL_STATE(581)] = 42349, + [SMALL_STATE(582)] = 42450, + [SMALL_STATE(583)] = 42549, + [SMALL_STATE(584)] = 42650, + [SMALL_STATE(585)] = 42749, + [SMALL_STATE(586)] = 42848, + [SMALL_STATE(587)] = 42949, + [SMALL_STATE(588)] = 43048, + [SMALL_STATE(589)] = 43147, + [SMALL_STATE(590)] = 43224, + [SMALL_STATE(591)] = 43323, + [SMALL_STATE(592)] = 43422, + [SMALL_STATE(593)] = 43521, + [SMALL_STATE(594)] = 43620, + [SMALL_STATE(595)] = 43719, + [SMALL_STATE(596)] = 43818, + [SMALL_STATE(597)] = 43917, + [SMALL_STATE(598)] = 44016, + [SMALL_STATE(599)] = 44115, + [SMALL_STATE(600)] = 44214, + [SMALL_STATE(601)] = 44313, + [SMALL_STATE(602)] = 44412, + [SMALL_STATE(603)] = 44511, + [SMALL_STATE(604)] = 44610, + [SMALL_STATE(605)] = 44709, + [SMALL_STATE(606)] = 44808, + [SMALL_STATE(607)] = 44907, + [SMALL_STATE(608)] = 45006, + [SMALL_STATE(609)] = 45075, + [SMALL_STATE(610)] = 45144, + [SMALL_STATE(611)] = 45213, + [SMALL_STATE(612)] = 45282, + [SMALL_STATE(613)] = 45351, + [SMALL_STATE(614)] = 45414, + [SMALL_STATE(615)] = 45477, + [SMALL_STATE(616)] = 45546, + [SMALL_STATE(617)] = 45619, + [SMALL_STATE(618)] = 45688, + [SMALL_STATE(619)] = 45757, + [SMALL_STATE(620)] = 45821, + [SMALL_STATE(621)] = 45879, + [SMALL_STATE(622)] = 45937, + [SMALL_STATE(623)] = 46001, + [SMALL_STATE(624)] = 46059, + [SMALL_STATE(625)] = 46125, + [SMALL_STATE(626)] = 46191, + [SMALL_STATE(627)] = 46257, + [SMALL_STATE(628)] = 46315, + [SMALL_STATE(629)] = 46373, + [SMALL_STATE(630)] = 46431, + [SMALL_STATE(631)] = 46489, + [SMALL_STATE(632)] = 46547, + [SMALL_STATE(633)] = 46615, + [SMALL_STATE(634)] = 46683, + [SMALL_STATE(635)] = 46741, + [SMALL_STATE(636)] = 46799, + [SMALL_STATE(637)] = 46856, + [SMALL_STATE(638)] = 46913, + [SMALL_STATE(639)] = 46976, + [SMALL_STATE(640)] = 47039, + [SMALL_STATE(641)] = 47096, + [SMALL_STATE(642)] = 47189, + [SMALL_STATE(643)] = 47250, + [SMALL_STATE(644)] = 47307, + [SMALL_STATE(645)] = 47364, + [SMALL_STATE(646)] = 47421, + [SMALL_STATE(647)] = 47478, + [SMALL_STATE(648)] = 47539, + [SMALL_STATE(649)] = 47596, + [SMALL_STATE(650)] = 47653, + [SMALL_STATE(651)] = 47710, + [SMALL_STATE(652)] = 47767, + [SMALL_STATE(653)] = 47824, + [SMALL_STATE(654)] = 47881, + [SMALL_STATE(655)] = 47938, + [SMALL_STATE(656)] = 47995, + [SMALL_STATE(657)] = 48052, + [SMALL_STATE(658)] = 48115, + [SMALL_STATE(659)] = 48178, + [SMALL_STATE(660)] = 48241, + [SMALL_STATE(661)] = 48334, + [SMALL_STATE(662)] = 48391, + [SMALL_STATE(663)] = 48448, + [SMALL_STATE(664)] = 48505, + [SMALL_STATE(665)] = 48562, + [SMALL_STATE(666)] = 48619, + [SMALL_STATE(667)] = 48676, + [SMALL_STATE(668)] = 48733, + [SMALL_STATE(669)] = 48790, + [SMALL_STATE(670)] = 48853, + [SMALL_STATE(671)] = 48910, + [SMALL_STATE(672)] = 48967, + [SMALL_STATE(673)] = 49024, + [SMALL_STATE(674)] = 49081, + [SMALL_STATE(675)] = 49146, + [SMALL_STATE(676)] = 49207, + [SMALL_STATE(677)] = 49264, + [SMALL_STATE(678)] = 49321, + [SMALL_STATE(679)] = 49378, + [SMALL_STATE(680)] = 49435, + [SMALL_STATE(681)] = 49492, + [SMALL_STATE(682)] = 49549, + [SMALL_STATE(683)] = 49612, + [SMALL_STATE(684)] = 49669, + [SMALL_STATE(685)] = 49726, + [SMALL_STATE(686)] = 49783, + [SMALL_STATE(687)] = 49840, + [SMALL_STATE(688)] = 49897, + [SMALL_STATE(689)] = 49954, + [SMALL_STATE(690)] = 50011, + [SMALL_STATE(691)] = 50068, + [SMALL_STATE(692)] = 50125, + [SMALL_STATE(693)] = 50188, + [SMALL_STATE(694)] = 50248, + [SMALL_STATE(695)] = 50308, + [SMALL_STATE(696)] = 50368, + [SMALL_STATE(697)] = 50428, + [SMALL_STATE(698)] = 50488, + [SMALL_STATE(699)] = 50548, + [SMALL_STATE(700)] = 50608, + [SMALL_STATE(701)] = 50668, + [SMALL_STATE(702)] = 50724, + [SMALL_STATE(703)] = 50784, + [SMALL_STATE(704)] = 50844, + [SMALL_STATE(705)] = 50904, + [SMALL_STATE(706)] = 50964, + [SMALL_STATE(707)] = 51024, + [SMALL_STATE(708)] = 51080, + [SMALL_STATE(709)] = 51140, + [SMALL_STATE(710)] = 51196, + [SMALL_STATE(711)] = 51256, + [SMALL_STATE(712)] = 51316, + [SMALL_STATE(713)] = 51376, + [SMALL_STATE(714)] = 51436, + [SMALL_STATE(715)] = 51492, + [SMALL_STATE(716)] = 51552, + [SMALL_STATE(717)] = 51612, + [SMALL_STATE(718)] = 51668, + [SMALL_STATE(719)] = 51724, + [SMALL_STATE(720)] = 51817, + [SMALL_STATE(721)] = 51872, + [SMALL_STATE(722)] = 51927, + [SMALL_STATE(723)] = 51982, + [SMALL_STATE(724)] = 52075, + [SMALL_STATE(725)] = 52130, + [SMALL_STATE(726)] = 52184, + [SMALL_STATE(727)] = 52274, + [SMALL_STATE(728)] = 52328, + [SMALL_STATE(729)] = 52382, + [SMALL_STATE(730)] = 52436, + [SMALL_STATE(731)] = 52490, + [SMALL_STATE(732)] = 52544, + [SMALL_STATE(733)] = 52598, + [SMALL_STATE(734)] = 52652, + [SMALL_STATE(735)] = 52706, + [SMALL_STATE(736)] = 52760, + [SMALL_STATE(737)] = 52814, + [SMALL_STATE(738)] = 52868, + [SMALL_STATE(739)] = 52922, + [SMALL_STATE(740)] = 52976, + [SMALL_STATE(741)] = 53030, + [SMALL_STATE(742)] = 53084, + [SMALL_STATE(743)] = 53138, + [SMALL_STATE(744)] = 53192, + [SMALL_STATE(745)] = 53246, + [SMALL_STATE(746)] = 53300, + [SMALL_STATE(747)] = 53354, + [SMALL_STATE(748)] = 53408, + [SMALL_STATE(749)] = 53462, + [SMALL_STATE(750)] = 53516, + [SMALL_STATE(751)] = 53570, + [SMALL_STATE(752)] = 53660, + [SMALL_STATE(753)] = 53714, + [SMALL_STATE(754)] = 53768, + [SMALL_STATE(755)] = 53822, + [SMALL_STATE(756)] = 53876, + [SMALL_STATE(757)] = 53930, + [SMALL_STATE(758)] = 54020, + [SMALL_STATE(759)] = 54074, + [SMALL_STATE(760)] = 54164, + [SMALL_STATE(761)] = 54218, + [SMALL_STATE(762)] = 54272, + [SMALL_STATE(763)] = 54326, + [SMALL_STATE(764)] = 54380, + [SMALL_STATE(765)] = 54434, + [SMALL_STATE(766)] = 54488, + [SMALL_STATE(767)] = 54542, + [SMALL_STATE(768)] = 54596, + [SMALL_STATE(769)] = 54650, + [SMALL_STATE(770)] = 54704, + [SMALL_STATE(771)] = 54758, + [SMALL_STATE(772)] = 54812, + [SMALL_STATE(773)] = 54866, + [SMALL_STATE(774)] = 54920, + [SMALL_STATE(775)] = 54974, + [SMALL_STATE(776)] = 55028, + [SMALL_STATE(777)] = 55082, + [SMALL_STATE(778)] = 55136, + [SMALL_STATE(779)] = 55190, + [SMALL_STATE(780)] = 55244, + [SMALL_STATE(781)] = 55298, + [SMALL_STATE(782)] = 55352, + [SMALL_STATE(783)] = 55406, + [SMALL_STATE(784)] = 55460, + [SMALL_STATE(785)] = 55550, + [SMALL_STATE(786)] = 55604, + [SMALL_STATE(787)] = 55658, + [SMALL_STATE(788)] = 55712, + [SMALL_STATE(789)] = 55766, + [SMALL_STATE(790)] = 55820, + [SMALL_STATE(791)] = 55874, + [SMALL_STATE(792)] = 55928, + [SMALL_STATE(793)] = 56018, + [SMALL_STATE(794)] = 56072, + [SMALL_STATE(795)] = 56126, + [SMALL_STATE(796)] = 56180, + [SMALL_STATE(797)] = 56234, + [SMALL_STATE(798)] = 56288, + [SMALL_STATE(799)] = 56342, + [SMALL_STATE(800)] = 56432, + [SMALL_STATE(801)] = 56486, + [SMALL_STATE(802)] = 56540, + [SMALL_STATE(803)] = 56594, + [SMALL_STATE(804)] = 56648, + [SMALL_STATE(805)] = 56702, + [SMALL_STATE(806)] = 56756, + [SMALL_STATE(807)] = 56810, + [SMALL_STATE(808)] = 56864, + [SMALL_STATE(809)] = 56918, + [SMALL_STATE(810)] = 56972, + [SMALL_STATE(811)] = 57026, + [SMALL_STATE(812)] = 57080, + [SMALL_STATE(813)] = 57134, + [SMALL_STATE(814)] = 57188, + [SMALL_STATE(815)] = 57242, + [SMALL_STATE(816)] = 57296, + [SMALL_STATE(817)] = 57350, + [SMALL_STATE(818)] = 57404, + [SMALL_STATE(819)] = 57458, + [SMALL_STATE(820)] = 57512, + [SMALL_STATE(821)] = 57566, + [SMALL_STATE(822)] = 57620, + [SMALL_STATE(823)] = 57674, + [SMALL_STATE(824)] = 57728, + [SMALL_STATE(825)] = 57782, + [SMALL_STATE(826)] = 57836, + [SMALL_STATE(827)] = 57890, + [SMALL_STATE(828)] = 57944, + [SMALL_STATE(829)] = 58034, + [SMALL_STATE(830)] = 58124, + [SMALL_STATE(831)] = 58178, + [SMALL_STATE(832)] = 58232, + [SMALL_STATE(833)] = 58286, + [SMALL_STATE(834)] = 58376, + [SMALL_STATE(835)] = 58430, + [SMALL_STATE(836)] = 58484, + [SMALL_STATE(837)] = 58538, + [SMALL_STATE(838)] = 58592, + [SMALL_STATE(839)] = 58646, + [SMALL_STATE(840)] = 58700, + [SMALL_STATE(841)] = 58754, + [SMALL_STATE(842)] = 58808, + [SMALL_STATE(843)] = 58898, + [SMALL_STATE(844)] = 58988, + [SMALL_STATE(845)] = 59078, + [SMALL_STATE(846)] = 59132, + [SMALL_STATE(847)] = 59222, + [SMALL_STATE(848)] = 59312, + [SMALL_STATE(849)] = 59402, + [SMALL_STATE(850)] = 59489, + [SMALL_STATE(851)] = 59576, + [SMALL_STATE(852)] = 59663, + [SMALL_STATE(853)] = 59750, + [SMALL_STATE(854)] = 59837, + [SMALL_STATE(855)] = 59924, + [SMALL_STATE(856)] = 60008, + [SMALL_STATE(857)] = 60092, + [SMALL_STATE(858)] = 60171, + [SMALL_STATE(859)] = 60250, + [SMALL_STATE(860)] = 60329, + [SMALL_STATE(861)] = 60408, + [SMALL_STATE(862)] = 60487, + [SMALL_STATE(863)] = 60566, + [SMALL_STATE(864)] = 60645, + [SMALL_STATE(865)] = 60724, + [SMALL_STATE(866)] = 60800, + [SMALL_STATE(867)] = 60876, + [SMALL_STATE(868)] = 60952, + [SMALL_STATE(869)] = 61028, + [SMALL_STATE(870)] = 61104, + [SMALL_STATE(871)] = 61180, + [SMALL_STATE(872)] = 61256, + [SMALL_STATE(873)] = 61332, + [SMALL_STATE(874)] = 61408, + [SMALL_STATE(875)] = 61484, + [SMALL_STATE(876)] = 61560, + [SMALL_STATE(877)] = 61636, + [SMALL_STATE(878)] = 61712, + [SMALL_STATE(879)] = 61788, + [SMALL_STATE(880)] = 61864, + [SMALL_STATE(881)] = 61940, + [SMALL_STATE(882)] = 62016, + [SMALL_STATE(883)] = 62092, + [SMALL_STATE(884)] = 62168, + [SMALL_STATE(885)] = 62244, + [SMALL_STATE(886)] = 62320, + [SMALL_STATE(887)] = 62396, + [SMALL_STATE(888)] = 62472, + [SMALL_STATE(889)] = 62548, + [SMALL_STATE(890)] = 62624, + [SMALL_STATE(891)] = 62700, + [SMALL_STATE(892)] = 62776, + [SMALL_STATE(893)] = 62856, + [SMALL_STATE(894)] = 62932, + [SMALL_STATE(895)] = 63008, + [SMALL_STATE(896)] = 63088, + [SMALL_STATE(897)] = 63168, + [SMALL_STATE(898)] = 63244, + [SMALL_STATE(899)] = 63320, + [SMALL_STATE(900)] = 63396, + [SMALL_STATE(901)] = 63472, + [SMALL_STATE(902)] = 63548, + [SMALL_STATE(903)] = 63624, + [SMALL_STATE(904)] = 63700, + [SMALL_STATE(905)] = 63776, + [SMALL_STATE(906)] = 63852, + [SMALL_STATE(907)] = 63928, + [SMALL_STATE(908)] = 64004, + [SMALL_STATE(909)] = 64080, + [SMALL_STATE(910)] = 64156, + [SMALL_STATE(911)] = 64232, + [SMALL_STATE(912)] = 64312, + [SMALL_STATE(913)] = 64388, + [SMALL_STATE(914)] = 64468, + [SMALL_STATE(915)] = 64544, + [SMALL_STATE(916)] = 64624, + [SMALL_STATE(917)] = 64704, + [SMALL_STATE(918)] = 64780, + [SMALL_STATE(919)] = 64856, + [SMALL_STATE(920)] = 64932, + [SMALL_STATE(921)] = 65008, + [SMALL_STATE(922)] = 65084, + [SMALL_STATE(923)] = 65164, + [SMALL_STATE(924)] = 65240, + [SMALL_STATE(925)] = 65316, + [SMALL_STATE(926)] = 65392, + [SMALL_STATE(927)] = 65472, + [SMALL_STATE(928)] = 65548, + [SMALL_STATE(929)] = 65624, + [SMALL_STATE(930)] = 65700, + [SMALL_STATE(931)] = 65776, + [SMALL_STATE(932)] = 65856, + [SMALL_STATE(933)] = 65932, + [SMALL_STATE(934)] = 66008, + [SMALL_STATE(935)] = 66088, + [SMALL_STATE(936)] = 66164, + [SMALL_STATE(937)] = 66244, + [SMALL_STATE(938)] = 66320, + [SMALL_STATE(939)] = 66400, + [SMALL_STATE(940)] = 66476, + [SMALL_STATE(941)] = 66556, + [SMALL_STATE(942)] = 66636, + [SMALL_STATE(943)] = 66722, + [SMALL_STATE(944)] = 66802, + [SMALL_STATE(945)] = 66882, + [SMALL_STATE(946)] = 66958, + [SMALL_STATE(947)] = 67034, + [SMALL_STATE(948)] = 67110, + [SMALL_STATE(949)] = 67186, + [SMALL_STATE(950)] = 67266, + [SMALL_STATE(951)] = 67346, + [SMALL_STATE(952)] = 67426, + [SMALL_STATE(953)] = 67502, + [SMALL_STATE(954)] = 67578, + [SMALL_STATE(955)] = 67654, + [SMALL_STATE(956)] = 67730, + [SMALL_STATE(957)] = 67806, + [SMALL_STATE(958)] = 67882, + [SMALL_STATE(959)] = 67967, + [SMALL_STATE(960)] = 68052, + [SMALL_STATE(961)] = 68137, + [SMALL_STATE(962)] = 68219, + [SMALL_STATE(963)] = 68303, + [SMALL_STATE(964)] = 68387, + [SMALL_STATE(965)] = 68471, + [SMALL_STATE(966)] = 68523, + [SMALL_STATE(967)] = 68575, + [SMALL_STATE(968)] = 68627, + [SMALL_STATE(969)] = 68678, + [SMALL_STATE(970)] = 68729, + [SMALL_STATE(971)] = 68786, + [SMALL_STATE(972)] = 68843, + [SMALL_STATE(973)] = 68894, + [SMALL_STATE(974)] = 68951, + [SMALL_STATE(975)] = 69002, + [SMALL_STATE(976)] = 69065, + [SMALL_STATE(977)] = 69136, + [SMALL_STATE(978)] = 69193, + [SMALL_STATE(979)] = 69244, + [SMALL_STATE(980)] = 69325, + [SMALL_STATE(981)] = 69386, + [SMALL_STATE(982)] = 69437, + [SMALL_STATE(983)] = 69506, + [SMALL_STATE(984)] = 69573, + [SMALL_STATE(985)] = 69624, + [SMALL_STATE(986)] = 69689, + [SMALL_STATE(987)] = 69740, + [SMALL_STATE(988)] = 69791, + [SMALL_STATE(989)] = 69841, + [SMALL_STATE(990)] = 69887, + [SMALL_STATE(991)] = 69943, + [SMALL_STATE(992)] = 70005, + [SMALL_STATE(993)] = 70075, + [SMALL_STATE(994)] = 70125, + [SMALL_STATE(995)] = 70181, + [SMALL_STATE(996)] = 70241, + [SMALL_STATE(997)] = 70309, + [SMALL_STATE(998)] = 70359, + [SMALL_STATE(999)] = 70425, + [SMALL_STATE(1000)] = 70489, + [SMALL_STATE(1001)] = 70569, + [SMALL_STATE(1002)] = 70621, + [SMALL_STATE(1003)] = 70673, + [SMALL_STATE(1004)] = 70729, + [SMALL_STATE(1005)] = 70775, + [SMALL_STATE(1006)] = 70831, + [SMALL_STATE(1007)] = 70877, + [SMALL_STATE(1008)] = 70923, + [SMALL_STATE(1009)] = 70969, + [SMALL_STATE(1010)] = 71015, + [SMALL_STATE(1011)] = 71061, + [SMALL_STATE(1012)] = 71141, + [SMALL_STATE(1013)] = 71189, + [SMALL_STATE(1014)] = 71239, + [SMALL_STATE(1015)] = 71295, + [SMALL_STATE(1016)] = 71357, + [SMALL_STATE(1017)] = 71427, + [SMALL_STATE(1018)] = 71477, + [SMALL_STATE(1019)] = 71533, + [SMALL_STATE(1020)] = 71579, + [SMALL_STATE(1021)] = 71625, + [SMALL_STATE(1022)] = 71685, + [SMALL_STATE(1023)] = 71753, + [SMALL_STATE(1024)] = 71819, + [SMALL_STATE(1025)] = 71875, + [SMALL_STATE(1026)] = 71931, + [SMALL_STATE(1027)] = 71993, + [SMALL_STATE(1028)] = 72057, + [SMALL_STATE(1029)] = 72113, + [SMALL_STATE(1030)] = 72183, + [SMALL_STATE(1031)] = 72239, + [SMALL_STATE(1032)] = 72299, + [SMALL_STATE(1033)] = 72349, + [SMALL_STATE(1034)] = 72417, + [SMALL_STATE(1035)] = 72483, + [SMALL_STATE(1036)] = 72533, + [SMALL_STATE(1037)] = 72589, + [SMALL_STATE(1038)] = 72637, + [SMALL_STATE(1039)] = 72717, + [SMALL_STATE(1040)] = 72767, + [SMALL_STATE(1041)] = 72823, + [SMALL_STATE(1042)] = 72871, + [SMALL_STATE(1043)] = 72935, + [SMALL_STATE(1044)] = 72985, + [SMALL_STATE(1045)] = 73030, + [SMALL_STATE(1046)] = 73075, + [SMALL_STATE(1047)] = 73120, + [SMALL_STATE(1048)] = 73169, + [SMALL_STATE(1049)] = 73214, + [SMALL_STATE(1050)] = 73263, + [SMALL_STATE(1051)] = 73312, + [SMALL_STATE(1052)] = 73357, + [SMALL_STATE(1053)] = 73412, + [SMALL_STATE(1054)] = 73467, + [SMALL_STATE(1055)] = 73512, + [SMALL_STATE(1056)] = 73567, + [SMALL_STATE(1057)] = 73618, + [SMALL_STATE(1058)] = 73663, + [SMALL_STATE(1059)] = 73708, + [SMALL_STATE(1060)] = 73753, + [SMALL_STATE(1061)] = 73804, + [SMALL_STATE(1062)] = 73863, + [SMALL_STATE(1063)] = 73908, + [SMALL_STATE(1064)] = 73955, + [SMALL_STATE(1065)] = 74002, + [SMALL_STATE(1066)] = 74049, + [SMALL_STATE(1067)] = 74094, + [SMALL_STATE(1068)] = 74161, + [SMALL_STATE(1069)] = 74206, + [SMALL_STATE(1070)] = 74251, + [SMALL_STATE(1071)] = 74296, + [SMALL_STATE(1072)] = 74361, + [SMALL_STATE(1073)] = 74406, + [SMALL_STATE(1074)] = 74465, + [SMALL_STATE(1075)] = 74528, + [SMALL_STATE(1076)] = 74573, + [SMALL_STATE(1077)] = 74638, + [SMALL_STATE(1078)] = 74701, + [SMALL_STATE(1079)] = 74746, + [SMALL_STATE(1080)] = 74797, + [SMALL_STATE(1081)] = 74848, + [SMALL_STATE(1082)] = 74899, + [SMALL_STATE(1083)] = 74944, + [SMALL_STATE(1084)] = 74989, + [SMALL_STATE(1085)] = 75034, + [SMALL_STATE(1086)] = 75089, + [SMALL_STATE(1087)] = 75134, + [SMALL_STATE(1088)] = 75183, + [SMALL_STATE(1089)] = 75228, + [SMALL_STATE(1090)] = 75277, + [SMALL_STATE(1091)] = 75326, + [SMALL_STATE(1092)] = 75371, + [SMALL_STATE(1093)] = 75420, + [SMALL_STATE(1094)] = 75469, + [SMALL_STATE(1095)] = 75518, + [SMALL_STATE(1096)] = 75565, + [SMALL_STATE(1097)] = 75610, + [SMALL_STATE(1098)] = 75671, + [SMALL_STATE(1099)] = 75718, + [SMALL_STATE(1100)] = 75787, + [SMALL_STATE(1101)] = 75834, + [SMALL_STATE(1102)] = 75887, + [SMALL_STATE(1103)] = 75932, + [SMALL_STATE(1104)] = 75979, + [SMALL_STATE(1105)] = 76024, + [SMALL_STATE(1106)] = 76071, + [SMALL_STATE(1107)] = 76116, + [SMALL_STATE(1108)] = 76171, + [SMALL_STATE(1109)] = 76230, + [SMALL_STATE(1110)] = 76297, + [SMALL_STATE(1111)] = 76346, + [SMALL_STATE(1112)] = 76413, + [SMALL_STATE(1113)] = 76458, + [SMALL_STATE(1114)] = 76509, + [SMALL_STATE(1115)] = 76558, + [SMALL_STATE(1116)] = 76603, + [SMALL_STATE(1117)] = 76668, + [SMALL_STATE(1118)] = 76713, + [SMALL_STATE(1119)] = 76776, + [SMALL_STATE(1120)] = 76827, + [SMALL_STATE(1121)] = 76878, + [SMALL_STATE(1122)] = 76923, + [SMALL_STATE(1123)] = 76978, + [SMALL_STATE(1124)] = 77023, + [SMALL_STATE(1125)] = 77078, + [SMALL_STATE(1126)] = 77123, + [SMALL_STATE(1127)] = 77178, + [SMALL_STATE(1128)] = 77233, + [SMALL_STATE(1129)] = 77278, + [SMALL_STATE(1130)] = 77347, + [SMALL_STATE(1131)] = 77392, + [SMALL_STATE(1132)] = 77441, + [SMALL_STATE(1133)] = 77486, + [SMALL_STATE(1134)] = 77537, + [SMALL_STATE(1135)] = 77592, + [SMALL_STATE(1136)] = 77653, + [SMALL_STATE(1137)] = 77698, + [SMALL_STATE(1138)] = 77767, + [SMALL_STATE(1139)] = 77812, + [SMALL_STATE(1140)] = 77857, + [SMALL_STATE(1141)] = 77912, + [SMALL_STATE(1142)] = 77967, + [SMALL_STATE(1143)] = 78028, + [SMALL_STATE(1144)] = 78075, + [SMALL_STATE(1145)] = 78119, + [SMALL_STATE(1146)] = 78163, + [SMALL_STATE(1147)] = 78211, + [SMALL_STATE(1148)] = 78255, + [SMALL_STATE(1149)] = 78309, + [SMALL_STATE(1150)] = 78363, + [SMALL_STATE(1151)] = 78407, + [SMALL_STATE(1152)] = 78451, + [SMALL_STATE(1153)] = 78495, + [SMALL_STATE(1154)] = 78539, + [SMALL_STATE(1155)] = 78583, + [SMALL_STATE(1156)] = 78627, + [SMALL_STATE(1157)] = 78671, + [SMALL_STATE(1158)] = 78715, + [SMALL_STATE(1159)] = 78769, + [SMALL_STATE(1160)] = 78829, + [SMALL_STATE(1161)] = 78897, + [SMALL_STATE(1162)] = 78951, + [SMALL_STATE(1163)] = 79009, + [SMALL_STATE(1164)] = 79075, + [SMALL_STATE(1165)] = 79139, + [SMALL_STATE(1166)] = 79201, + [SMALL_STATE(1167)] = 79249, + [SMALL_STATE(1168)] = 79297, + [SMALL_STATE(1169)] = 79345, + [SMALL_STATE(1170)] = 79393, + [SMALL_STATE(1171)] = 79441, + [SMALL_STATE(1172)] = 79485, + [SMALL_STATE(1173)] = 79529, + [SMALL_STATE(1174)] = 79577, + [SMALL_STATE(1175)] = 79625, + [SMALL_STATE(1176)] = 79669, + [SMALL_STATE(1177)] = 79713, + [SMALL_STATE(1178)] = 79757, + [SMALL_STATE(1179)] = 79801, + [SMALL_STATE(1180)] = 79845, + [SMALL_STATE(1181)] = 79889, + [SMALL_STATE(1182)] = 79933, + [SMALL_STATE(1183)] = 79977, + [SMALL_STATE(1184)] = 80021, + [SMALL_STATE(1185)] = 80065, + [SMALL_STATE(1186)] = 80109, + [SMALL_STATE(1187)] = 80153, + [SMALL_STATE(1188)] = 80197, + [SMALL_STATE(1189)] = 80241, + [SMALL_STATE(1190)] = 80285, + [SMALL_STATE(1191)] = 80329, + [SMALL_STATE(1192)] = 80373, + [SMALL_STATE(1193)] = 80417, + [SMALL_STATE(1194)] = 80461, + [SMALL_STATE(1195)] = 80505, + [SMALL_STATE(1196)] = 80549, + [SMALL_STATE(1197)] = 80593, + [SMALL_STATE(1198)] = 80637, + [SMALL_STATE(1199)] = 80681, + [SMALL_STATE(1200)] = 80725, + [SMALL_STATE(1201)] = 80769, + [SMALL_STATE(1202)] = 80813, + [SMALL_STATE(1203)] = 80857, + [SMALL_STATE(1204)] = 80901, + [SMALL_STATE(1205)] = 80945, + [SMALL_STATE(1206)] = 80989, + [SMALL_STATE(1207)] = 81033, + [SMALL_STATE(1208)] = 81079, + [SMALL_STATE(1209)] = 81123, + [SMALL_STATE(1210)] = 81167, + [SMALL_STATE(1211)] = 81211, + [SMALL_STATE(1212)] = 81255, + [SMALL_STATE(1213)] = 81299, + [SMALL_STATE(1214)] = 81343, + [SMALL_STATE(1215)] = 81387, + [SMALL_STATE(1216)] = 81431, + [SMALL_STATE(1217)] = 81475, + [SMALL_STATE(1218)] = 81521, + [SMALL_STATE(1219)] = 81567, + [SMALL_STATE(1220)] = 81611, + [SMALL_STATE(1221)] = 81657, + [SMALL_STATE(1222)] = 81701, + [SMALL_STATE(1223)] = 81745, + [SMALL_STATE(1224)] = 81789, + [SMALL_STATE(1225)] = 81833, + [SMALL_STATE(1226)] = 81881, + [SMALL_STATE(1227)] = 81925, + [SMALL_STATE(1228)] = 81975, + [SMALL_STATE(1229)] = 82019, + [SMALL_STATE(1230)] = 82063, + [SMALL_STATE(1231)] = 82113, + [SMALL_STATE(1232)] = 82157, + [SMALL_STATE(1233)] = 82201, + [SMALL_STATE(1234)] = 82245, + [SMALL_STATE(1235)] = 82289, + [SMALL_STATE(1236)] = 82333, + [SMALL_STATE(1237)] = 82377, + [SMALL_STATE(1238)] = 82421, + [SMALL_STATE(1239)] = 82465, + [SMALL_STATE(1240)] = 82509, + [SMALL_STATE(1241)] = 82553, + [SMALL_STATE(1242)] = 82597, + [SMALL_STATE(1243)] = 82641, + [SMALL_STATE(1244)] = 82689, + [SMALL_STATE(1245)] = 82733, + [SMALL_STATE(1246)] = 82777, + [SMALL_STATE(1247)] = 82821, + [SMALL_STATE(1248)] = 82865, + [SMALL_STATE(1249)] = 82909, + [SMALL_STATE(1250)] = 82953, + [SMALL_STATE(1251)] = 82997, + [SMALL_STATE(1252)] = 83041, + [SMALL_STATE(1253)] = 83085, + [SMALL_STATE(1254)] = 83129, + [SMALL_STATE(1255)] = 83173, + [SMALL_STATE(1256)] = 83217, + [SMALL_STATE(1257)] = 83261, + [SMALL_STATE(1258)] = 83305, + [SMALL_STATE(1259)] = 83349, + [SMALL_STATE(1260)] = 83397, + [SMALL_STATE(1261)] = 83443, + [SMALL_STATE(1262)] = 83489, + [SMALL_STATE(1263)] = 83533, + [SMALL_STATE(1264)] = 83581, + [SMALL_STATE(1265)] = 83627, + [SMALL_STATE(1266)] = 83671, + [SMALL_STATE(1267)] = 83715, + [SMALL_STATE(1268)] = 83763, + [SMALL_STATE(1269)] = 83811, + [SMALL_STATE(1270)] = 83857, + [SMALL_STATE(1271)] = 83905, + [SMALL_STATE(1272)] = 83951, + [SMALL_STATE(1273)] = 83997, + [SMALL_STATE(1274)] = 84043, + [SMALL_STATE(1275)] = 84091, + [SMALL_STATE(1276)] = 84135, + [SMALL_STATE(1277)] = 84179, + [SMALL_STATE(1278)] = 84227, + [SMALL_STATE(1279)] = 84271, + [SMALL_STATE(1280)] = 84319, + [SMALL_STATE(1281)] = 84367, + [SMALL_STATE(1282)] = 84413, + [SMALL_STATE(1283)] = 84459, + [SMALL_STATE(1284)] = 84505, + [SMALL_STATE(1285)] = 84549, + [SMALL_STATE(1286)] = 84599, + [SMALL_STATE(1287)] = 84645, + [SMALL_STATE(1288)] = 84689, + [SMALL_STATE(1289)] = 84739, + [SMALL_STATE(1290)] = 84783, + [SMALL_STATE(1291)] = 84827, + [SMALL_STATE(1292)] = 84871, + [SMALL_STATE(1293)] = 84915, + [SMALL_STATE(1294)] = 84959, + [SMALL_STATE(1295)] = 85003, + [SMALL_STATE(1296)] = 85047, + [SMALL_STATE(1297)] = 85091, + [SMALL_STATE(1298)] = 85134, + [SMALL_STATE(1299)] = 85177, + [SMALL_STATE(1300)] = 85220, + [SMALL_STATE(1301)] = 85263, + [SMALL_STATE(1302)] = 85306, + [SMALL_STATE(1303)] = 85349, + [SMALL_STATE(1304)] = 85392, + [SMALL_STATE(1305)] = 85435, + [SMALL_STATE(1306)] = 85486, + [SMALL_STATE(1307)] = 85533, + [SMALL_STATE(1308)] = 85580, + [SMALL_STATE(1309)] = 85623, + [SMALL_STATE(1310)] = 85668, + [SMALL_STATE(1311)] = 85711, + [SMALL_STATE(1312)] = 85756, + [SMALL_STATE(1313)] = 85801, + [SMALL_STATE(1314)] = 85844, + [SMALL_STATE(1315)] = 85887, + [SMALL_STATE(1316)] = 85930, + [SMALL_STATE(1317)] = 85975, + [SMALL_STATE(1318)] = 86018, + [SMALL_STATE(1319)] = 86061, + [SMALL_STATE(1320)] = 86104, + [SMALL_STATE(1321)] = 86149, + [SMALL_STATE(1322)] = 86192, + [SMALL_STATE(1323)] = 86235, + [SMALL_STATE(1324)] = 86278, + [SMALL_STATE(1325)] = 86321, + [SMALL_STATE(1326)] = 86364, + [SMALL_STATE(1327)] = 86407, + [SMALL_STATE(1328)] = 86450, + [SMALL_STATE(1329)] = 86493, + [SMALL_STATE(1330)] = 86536, + [SMALL_STATE(1331)] = 86579, + [SMALL_STATE(1332)] = 86626, + [SMALL_STATE(1333)] = 86669, + [SMALL_STATE(1334)] = 86712, + [SMALL_STATE(1335)] = 86755, + [SMALL_STATE(1336)] = 86800, + [SMALL_STATE(1337)] = 86845, + [SMALL_STATE(1338)] = 86890, + [SMALL_STATE(1339)] = 86933, + [SMALL_STATE(1340)] = 86976, + [SMALL_STATE(1341)] = 87023, + [SMALL_STATE(1342)] = 87066, + [SMALL_STATE(1343)] = 87111, + [SMALL_STATE(1344)] = 87154, + [SMALL_STATE(1345)] = 87197, + [SMALL_STATE(1346)] = 87240, + [SMALL_STATE(1347)] = 87283, + [SMALL_STATE(1348)] = 87326, + [SMALL_STATE(1349)] = 87373, + [SMALL_STATE(1350)] = 87416, + [SMALL_STATE(1351)] = 87459, + [SMALL_STATE(1352)] = 87502, + [SMALL_STATE(1353)] = 87545, + [SMALL_STATE(1354)] = 87592, + [SMALL_STATE(1355)] = 87639, + [SMALL_STATE(1356)] = 87682, + [SMALL_STATE(1357)] = 87725, + [SMALL_STATE(1358)] = 87770, + [SMALL_STATE(1359)] = 87815, + [SMALL_STATE(1360)] = 87860, + [SMALL_STATE(1361)] = 87903, + [SMALL_STATE(1362)] = 87946, + [SMALL_STATE(1363)] = 87989, + [SMALL_STATE(1364)] = 88032, + [SMALL_STATE(1365)] = 88075, + [SMALL_STATE(1366)] = 88118, + [SMALL_STATE(1367)] = 88163, + [SMALL_STATE(1368)] = 88206, + [SMALL_STATE(1369)] = 88249, + [SMALL_STATE(1370)] = 88292, + [SMALL_STATE(1371)] = 88335, + [SMALL_STATE(1372)] = 88382, + [SMALL_STATE(1373)] = 88429, + [SMALL_STATE(1374)] = 88472, + [SMALL_STATE(1375)] = 88515, + [SMALL_STATE(1376)] = 88558, + [SMALL_STATE(1377)] = 88601, + [SMALL_STATE(1378)] = 88644, + [SMALL_STATE(1379)] = 88691, + [SMALL_STATE(1380)] = 88736, + [SMALL_STATE(1381)] = 88779, + [SMALL_STATE(1382)] = 88824, + [SMALL_STATE(1383)] = 88869, + [SMALL_STATE(1384)] = 88912, + [SMALL_STATE(1385)] = 88955, + [SMALL_STATE(1386)] = 88998, + [SMALL_STATE(1387)] = 89045, + [SMALL_STATE(1388)] = 89092, + [SMALL_STATE(1389)] = 89137, + [SMALL_STATE(1390)] = 89180, + [SMALL_STATE(1391)] = 89223, + [SMALL_STATE(1392)] = 89266, + [SMALL_STATE(1393)] = 89309, + [SMALL_STATE(1394)] = 89352, + [SMALL_STATE(1395)] = 89395, + [SMALL_STATE(1396)] = 89446, + [SMALL_STATE(1397)] = 89491, + [SMALL_STATE(1398)] = 89534, + [SMALL_STATE(1399)] = 89577, + [SMALL_STATE(1400)] = 89620, + [SMALL_STATE(1401)] = 89663, + [SMALL_STATE(1402)] = 89706, + [SMALL_STATE(1403)] = 89749, + [SMALL_STATE(1404)] = 89792, + [SMALL_STATE(1405)] = 89835, + [SMALL_STATE(1406)] = 89878, + [SMALL_STATE(1407)] = 89921, + [SMALL_STATE(1408)] = 89964, + [SMALL_STATE(1409)] = 90007, + [SMALL_STATE(1410)] = 90050, + [SMALL_STATE(1411)] = 90093, + [SMALL_STATE(1412)] = 90136, + [SMALL_STATE(1413)] = 90179, + [SMALL_STATE(1414)] = 90222, + [SMALL_STATE(1415)] = 90265, + [SMALL_STATE(1416)] = 90308, + [SMALL_STATE(1417)] = 90351, + [SMALL_STATE(1418)] = 90394, + [SMALL_STATE(1419)] = 90437, + [SMALL_STATE(1420)] = 90480, + [SMALL_STATE(1421)] = 90523, + [SMALL_STATE(1422)] = 90566, + [SMALL_STATE(1423)] = 90609, + [SMALL_STATE(1424)] = 90651, + [SMALL_STATE(1425)] = 90693, + [SMALL_STATE(1426)] = 90739, + [SMALL_STATE(1427)] = 90783, + [SMALL_STATE(1428)] = 90833, + [SMALL_STATE(1429)] = 90875, + [SMALL_STATE(1430)] = 90917, + [SMALL_STATE(1431)] = 90959, + [SMALL_STATE(1432)] = 91001, + [SMALL_STATE(1433)] = 91043, + [SMALL_STATE(1434)] = 91085, + [SMALL_STATE(1435)] = 91129, + [SMALL_STATE(1436)] = 91171, + [SMALL_STATE(1437)] = 91213, + [SMALL_STATE(1438)] = 91257, + [SMALL_STATE(1439)] = 91299, + [SMALL_STATE(1440)] = 91341, + [SMALL_STATE(1441)] = 91383, + [SMALL_STATE(1442)] = 91427, + [SMALL_STATE(1443)] = 91469, + [SMALL_STATE(1444)] = 91511, + [SMALL_STATE(1445)] = 91555, + [SMALL_STATE(1446)] = 91599, + [SMALL_STATE(1447)] = 91641, + [SMALL_STATE(1448)] = 91683, + [SMALL_STATE(1449)] = 91725, + [SMALL_STATE(1450)] = 91771, + [SMALL_STATE(1451)] = 91813, + [SMALL_STATE(1452)] = 91855, + [SMALL_STATE(1453)] = 91897, + [SMALL_STATE(1454)] = 91939, + [SMALL_STATE(1455)] = 91981, + [SMALL_STATE(1456)] = 92023, + [SMALL_STATE(1457)] = 92065, + [SMALL_STATE(1458)] = 92107, + [SMALL_STATE(1459)] = 92149, + [SMALL_STATE(1460)] = 92193, + [SMALL_STATE(1461)] = 92237, + [SMALL_STATE(1462)] = 92281, + [SMALL_STATE(1463)] = 92323, + [SMALL_STATE(1464)] = 92371, + [SMALL_STATE(1465)] = 92417, + [SMALL_STATE(1466)] = 92459, + [SMALL_STATE(1467)] = 92501, + [SMALL_STATE(1468)] = 92543, + [SMALL_STATE(1469)] = 92585, + [SMALL_STATE(1470)] = 92627, + [SMALL_STATE(1471)] = 92668, + [SMALL_STATE(1472)] = 92711, + [SMALL_STATE(1473)] = 92754, + [SMALL_STATE(1474)] = 92795, + [SMALL_STATE(1475)] = 92838, + [SMALL_STATE(1476)] = 92879, + [SMALL_STATE(1477)] = 92922, + [SMALL_STATE(1478)] = 92965, + [SMALL_STATE(1479)] = 93008, + [SMALL_STATE(1480)] = 93051, + [SMALL_STATE(1481)] = 93092, + [SMALL_STATE(1482)] = 93133, + [SMALL_STATE(1483)] = 93176, + [SMALL_STATE(1484)] = 93217, + [SMALL_STATE(1485)] = 93258, + [SMALL_STATE(1486)] = 93301, + [SMALL_STATE(1487)] = 93342, + [SMALL_STATE(1488)] = 93383, + [SMALL_STATE(1489)] = 93424, + [SMALL_STATE(1490)] = 93498, + [SMALL_STATE(1491)] = 93572, + [SMALL_STATE(1492)] = 93640, + [SMALL_STATE(1493)] = 93708, + [SMALL_STATE(1494)] = 93776, + [SMALL_STATE(1495)] = 93844, + [SMALL_STATE(1496)] = 93912, + [SMALL_STATE(1497)] = 93980, + [SMALL_STATE(1498)] = 94048, + [SMALL_STATE(1499)] = 94116, + [SMALL_STATE(1500)] = 94184, + [SMALL_STATE(1501)] = 94252, + [SMALL_STATE(1502)] = 94320, + [SMALL_STATE(1503)] = 94388, + [SMALL_STATE(1504)] = 94456, + [SMALL_STATE(1505)] = 94524, + [SMALL_STATE(1506)] = 94592, + [SMALL_STATE(1507)] = 94660, + [SMALL_STATE(1508)] = 94728, + [SMALL_STATE(1509)] = 94796, + [SMALL_STATE(1510)] = 94864, + [SMALL_STATE(1511)] = 94932, + [SMALL_STATE(1512)] = 95000, + [SMALL_STATE(1513)] = 95068, + [SMALL_STATE(1514)] = 95136, + [SMALL_STATE(1515)] = 95204, + [SMALL_STATE(1516)] = 95272, + [SMALL_STATE(1517)] = 95340, + [SMALL_STATE(1518)] = 95408, + [SMALL_STATE(1519)] = 95476, + [SMALL_STATE(1520)] = 95544, + [SMALL_STATE(1521)] = 95612, + [SMALL_STATE(1522)] = 95680, + [SMALL_STATE(1523)] = 95748, + [SMALL_STATE(1524)] = 95816, + [SMALL_STATE(1525)] = 95884, + [SMALL_STATE(1526)] = 95952, + [SMALL_STATE(1527)] = 96020, + [SMALL_STATE(1528)] = 96085, + [SMALL_STATE(1529)] = 96150, + [SMALL_STATE(1530)] = 96215, + [SMALL_STATE(1531)] = 96280, + [SMALL_STATE(1532)] = 96345, + [SMALL_STATE(1533)] = 96411, + [SMALL_STATE(1534)] = 96477, + [SMALL_STATE(1535)] = 96543, + [SMALL_STATE(1536)] = 96609, + [SMALL_STATE(1537)] = 96675, + [SMALL_STATE(1538)] = 96741, + [SMALL_STATE(1539)] = 96807, + [SMALL_STATE(1540)] = 96873, + [SMALL_STATE(1541)] = 96939, + [SMALL_STATE(1542)] = 97005, + [SMALL_STATE(1543)] = 97071, + [SMALL_STATE(1544)] = 97137, + [SMALL_STATE(1545)] = 97203, + [SMALL_STATE(1546)] = 97269, + [SMALL_STATE(1547)] = 97335, + [SMALL_STATE(1548)] = 97401, + [SMALL_STATE(1549)] = 97467, + [SMALL_STATE(1550)] = 97533, + [SMALL_STATE(1551)] = 97599, + [SMALL_STATE(1552)] = 97665, + [SMALL_STATE(1553)] = 97728, + [SMALL_STATE(1554)] = 97786, + [SMALL_STATE(1555)] = 97832, + [SMALL_STATE(1556)] = 97890, + [SMALL_STATE(1557)] = 97948, + [SMALL_STATE(1558)] = 98006, + [SMALL_STATE(1559)] = 98064, + [SMALL_STATE(1560)] = 98122, + [SMALL_STATE(1561)] = 98180, + [SMALL_STATE(1562)] = 98226, + [SMALL_STATE(1563)] = 98284, + [SMALL_STATE(1564)] = 98329, + [SMALL_STATE(1565)] = 98374, + [SMALL_STATE(1566)] = 98418, + [SMALL_STATE(1567)] = 98462, + [SMALL_STATE(1568)] = 98506, + [SMALL_STATE(1569)] = 98550, + [SMALL_STATE(1570)] = 98593, + [SMALL_STATE(1571)] = 98634, + [SMALL_STATE(1572)] = 98677, + [SMALL_STATE(1573)] = 98708, + [SMALL_STATE(1574)] = 98749, + [SMALL_STATE(1575)] = 98792, + [SMALL_STATE(1576)] = 98823, + [SMALL_STATE(1577)] = 98866, + [SMALL_STATE(1578)] = 98898, + [SMALL_STATE(1579)] = 98930, + [SMALL_STATE(1580)] = 98962, + [SMALL_STATE(1581)] = 98994, + [SMALL_STATE(1582)] = 99026, + [SMALL_STATE(1583)] = 99068, + [SMALL_STATE(1584)] = 99100, + [SMALL_STATE(1585)] = 99142, + [SMALL_STATE(1586)] = 99172, + [SMALL_STATE(1587)] = 99202, + [SMALL_STATE(1588)] = 99232, + [SMALL_STATE(1589)] = 99262, + [SMALL_STATE(1590)] = 99292, + [SMALL_STATE(1591)] = 99322, + [SMALL_STATE(1592)] = 99352, + [SMALL_STATE(1593)] = 99382, + [SMALL_STATE(1594)] = 99429, + [SMALL_STATE(1595)] = 99454, + [SMALL_STATE(1596)] = 99479, + [SMALL_STATE(1597)] = 99508, + [SMALL_STATE(1598)] = 99533, + [SMALL_STATE(1599)] = 99562, + [SMALL_STATE(1600)] = 99591, + [SMALL_STATE(1601)] = 99620, + [SMALL_STATE(1602)] = 99649, + [SMALL_STATE(1603)] = 99678, + [SMALL_STATE(1604)] = 99707, + [SMALL_STATE(1605)] = 99736, + [SMALL_STATE(1606)] = 99765, + [SMALL_STATE(1607)] = 99794, + [SMALL_STATE(1608)] = 99823, + [SMALL_STATE(1609)] = 99852, + [SMALL_STATE(1610)] = 99881, + [SMALL_STATE(1611)] = 99910, + [SMALL_STATE(1612)] = 99935, + [SMALL_STATE(1613)] = 99964, + [SMALL_STATE(1614)] = 99993, + [SMALL_STATE(1615)] = 100022, + [SMALL_STATE(1616)] = 100051, + [SMALL_STATE(1617)] = 100080, + [SMALL_STATE(1618)] = 100127, + [SMALL_STATE(1619)] = 100156, + [SMALL_STATE(1620)] = 100185, + [SMALL_STATE(1621)] = 100214, + [SMALL_STATE(1622)] = 100243, + [SMALL_STATE(1623)] = 100290, + [SMALL_STATE(1624)] = 100337, + [SMALL_STATE(1625)] = 100384, + [SMALL_STATE(1626)] = 100431, + [SMALL_STATE(1627)] = 100478, + [SMALL_STATE(1628)] = 100525, + [SMALL_STATE(1629)] = 100572, + [SMALL_STATE(1630)] = 100619, + [SMALL_STATE(1631)] = 100648, + [SMALL_STATE(1632)] = 100694, + [SMALL_STATE(1633)] = 100718, + [SMALL_STATE(1634)] = 100742, + [SMALL_STATE(1635)] = 100774, + [SMALL_STATE(1636)] = 100806, + [SMALL_STATE(1637)] = 100852, + [SMALL_STATE(1638)] = 100876, + [SMALL_STATE(1639)] = 100922, + [SMALL_STATE(1640)] = 100950, + [SMALL_STATE(1641)] = 100996, + [SMALL_STATE(1642)] = 101042, + [SMALL_STATE(1643)] = 101088, + [SMALL_STATE(1644)] = 101134, + [SMALL_STATE(1645)] = 101180, + [SMALL_STATE(1646)] = 101226, + [SMALL_STATE(1647)] = 101272, + [SMALL_STATE(1648)] = 101296, + [SMALL_STATE(1649)] = 101342, + [SMALL_STATE(1650)] = 101372, + [SMALL_STATE(1651)] = 101400, + [SMALL_STATE(1652)] = 101443, + [SMALL_STATE(1653)] = 101483, + [SMALL_STATE(1654)] = 101523, + [SMALL_STATE(1655)] = 101563, + [SMALL_STATE(1656)] = 101603, + [SMALL_STATE(1657)] = 101629, + [SMALL_STATE(1658)] = 101666, + [SMALL_STATE(1659)] = 101705, + [SMALL_STATE(1660)] = 101742, + [SMALL_STATE(1661)] = 101769, + [SMALL_STATE(1662)] = 101788, + [SMALL_STATE(1663)] = 101813, + [SMALL_STATE(1664)] = 101854, + [SMALL_STATE(1665)] = 101873, + [SMALL_STATE(1666)] = 101900, + [SMALL_STATE(1667)] = 101941, + [SMALL_STATE(1668)] = 101982, + [SMALL_STATE(1669)] = 102023, + [SMALL_STATE(1670)] = 102064, + [SMALL_STATE(1671)] = 102091, + [SMALL_STATE(1672)] = 102132, + [SMALL_STATE(1673)] = 102155, + [SMALL_STATE(1674)] = 102196, + [SMALL_STATE(1675)] = 102215, + [SMALL_STATE(1676)] = 102256, + [SMALL_STATE(1677)] = 102277, + [SMALL_STATE(1678)] = 102315, + [SMALL_STATE(1679)] = 102341, + [SMALL_STATE(1680)] = 102371, + [SMALL_STATE(1681)] = 102409, + [SMALL_STATE(1682)] = 102439, + [SMALL_STATE(1683)] = 102469, + [SMALL_STATE(1684)] = 102507, + [SMALL_STATE(1685)] = 102545, + [SMALL_STATE(1686)] = 102575, + [SMALL_STATE(1687)] = 102613, + [SMALL_STATE(1688)] = 102643, + [SMALL_STATE(1689)] = 102673, + [SMALL_STATE(1690)] = 102711, + [SMALL_STATE(1691)] = 102749, + [SMALL_STATE(1692)] = 102779, + [SMALL_STATE(1693)] = 102809, + [SMALL_STATE(1694)] = 102847, + [SMALL_STATE(1695)] = 102885, + [SMALL_STATE(1696)] = 102915, + [SMALL_STATE(1697)] = 102945, + [SMALL_STATE(1698)] = 102983, + [SMALL_STATE(1699)] = 103021, + [SMALL_STATE(1700)] = 103051, + [SMALL_STATE(1701)] = 103071, + [SMALL_STATE(1702)] = 103109, + [SMALL_STATE(1703)] = 103147, + [SMALL_STATE(1704)] = 103185, + [SMALL_STATE(1705)] = 103215, + [SMALL_STATE(1706)] = 103245, + [SMALL_STATE(1707)] = 103275, + [SMALL_STATE(1708)] = 103313, + [SMALL_STATE(1709)] = 103351, + [SMALL_STATE(1710)] = 103381, + [SMALL_STATE(1711)] = 103401, + [SMALL_STATE(1712)] = 103431, + [SMALL_STATE(1713)] = 103469, + [SMALL_STATE(1714)] = 103507, + [SMALL_STATE(1715)] = 103537, + [SMALL_STATE(1716)] = 103567, + [SMALL_STATE(1717)] = 103605, + [SMALL_STATE(1718)] = 103643, + [SMALL_STATE(1719)] = 103681, + [SMALL_STATE(1720)] = 103707, + [SMALL_STATE(1721)] = 103745, + [SMALL_STATE(1722)] = 103771, + [SMALL_STATE(1723)] = 103809, + [SMALL_STATE(1724)] = 103833, + [SMALL_STATE(1725)] = 103871, + [SMALL_STATE(1726)] = 103895, + [SMALL_STATE(1727)] = 103915, + [SMALL_STATE(1728)] = 103953, + [SMALL_STATE(1729)] = 103975, + [SMALL_STATE(1730)] = 104005, + [SMALL_STATE(1731)] = 104022, + [SMALL_STATE(1732)] = 104039, + [SMALL_STATE(1733)] = 104062, + [SMALL_STATE(1734)] = 104087, + [SMALL_STATE(1735)] = 104112, + [SMALL_STATE(1736)] = 104133, + [SMALL_STATE(1737)] = 104158, + [SMALL_STATE(1738)] = 104187, + [SMALL_STATE(1739)] = 104204, + [SMALL_STATE(1740)] = 104223, + [SMALL_STATE(1741)] = 104248, + [SMALL_STATE(1742)] = 104265, + [SMALL_STATE(1743)] = 104290, + [SMALL_STATE(1744)] = 104307, + [SMALL_STATE(1745)] = 104336, + [SMALL_STATE(1746)] = 104361, + [SMALL_STATE(1747)] = 104386, + [SMALL_STATE(1748)] = 104409, + [SMALL_STATE(1749)] = 104430, + [SMALL_STATE(1750)] = 104447, + [SMALL_STATE(1751)] = 104466, + [SMALL_STATE(1752)] = 104495, + [SMALL_STATE(1753)] = 104520, + [SMALL_STATE(1754)] = 104540, + [SMALL_STATE(1755)] = 104564, + [SMALL_STATE(1756)] = 104582, + [SMALL_STATE(1757)] = 104598, + [SMALL_STATE(1758)] = 104622, + [SMALL_STATE(1759)] = 104644, + [SMALL_STATE(1760)] = 104668, + [SMALL_STATE(1761)] = 104684, + [SMALL_STATE(1762)] = 104706, + [SMALL_STATE(1763)] = 104726, + [SMALL_STATE(1764)] = 104750, + [SMALL_STATE(1765)] = 104766, + [SMALL_STATE(1766)] = 104790, + [SMALL_STATE(1767)] = 104814, + [SMALL_STATE(1768)] = 104832, + [SMALL_STATE(1769)] = 104854, + [SMALL_STATE(1770)] = 104878, + [SMALL_STATE(1771)] = 104894, + [SMALL_STATE(1772)] = 104916, + [SMALL_STATE(1773)] = 104936, + [SMALL_STATE(1774)] = 104952, + [SMALL_STATE(1775)] = 104970, + [SMALL_STATE(1776)] = 104988, + [SMALL_STATE(1777)] = 105006, + [SMALL_STATE(1778)] = 105022, + [SMALL_STATE(1779)] = 105042, + [SMALL_STATE(1780)] = 105062, + [SMALL_STATE(1781)] = 105086, + [SMALL_STATE(1782)] = 105110, + [SMALL_STATE(1783)] = 105134, + [SMALL_STATE(1784)] = 105164, + [SMALL_STATE(1785)] = 105188, + [SMALL_STATE(1786)] = 105212, + [SMALL_STATE(1787)] = 105234, + [SMALL_STATE(1788)] = 105254, + [SMALL_STATE(1789)] = 105278, + [SMALL_STATE(1790)] = 105301, + [SMALL_STATE(1791)] = 105330, + [SMALL_STATE(1792)] = 105351, + [SMALL_STATE(1793)] = 105366, + [SMALL_STATE(1794)] = 105387, + [SMALL_STATE(1795)] = 105408, + [SMALL_STATE(1796)] = 105437, + [SMALL_STATE(1797)] = 105466, + [SMALL_STATE(1798)] = 105495, + [SMALL_STATE(1799)] = 105518, + [SMALL_STATE(1800)] = 105537, + [SMALL_STATE(1801)] = 105560, + [SMALL_STATE(1802)] = 105585, + [SMALL_STATE(1803)] = 105612, + [SMALL_STATE(1804)] = 105629, + [SMALL_STATE(1805)] = 105658, + [SMALL_STATE(1806)] = 105685, + [SMALL_STATE(1807)] = 105712, + [SMALL_STATE(1808)] = 105739, + [SMALL_STATE(1809)] = 105762, + [SMALL_STATE(1810)] = 105783, + [SMALL_STATE(1811)] = 105810, + [SMALL_STATE(1812)] = 105831, + [SMALL_STATE(1813)] = 105860, + [SMALL_STATE(1814)] = 105881, + [SMALL_STATE(1815)] = 105910, + [SMALL_STATE(1816)] = 105939, + [SMALL_STATE(1817)] = 105966, + [SMALL_STATE(1818)] = 105987, + [SMALL_STATE(1819)] = 106012, + [SMALL_STATE(1820)] = 106039, + [SMALL_STATE(1821)] = 106056, + [SMALL_STATE(1822)] = 106085, + [SMALL_STATE(1823)] = 106108, + [SMALL_STATE(1824)] = 106129, + [SMALL_STATE(1825)] = 106156, + [SMALL_STATE(1826)] = 106177, + [SMALL_STATE(1827)] = 106196, + [SMALL_STATE(1828)] = 106217, + [SMALL_STATE(1829)] = 106240, + [SMALL_STATE(1830)] = 106261, + [SMALL_STATE(1831)] = 106282, + [SMALL_STATE(1832)] = 106303, + [SMALL_STATE(1833)] = 106320, + [SMALL_STATE(1834)] = 106341, + [SMALL_STATE(1835)] = 106364, + [SMALL_STATE(1836)] = 106393, + [SMALL_STATE(1837)] = 106411, + [SMALL_STATE(1838)] = 106437, + [SMALL_STATE(1839)] = 106461, + [SMALL_STATE(1840)] = 106479, + [SMALL_STATE(1841)] = 106503, + [SMALL_STATE(1842)] = 106521, + [SMALL_STATE(1843)] = 106547, + [SMALL_STATE(1844)] = 106565, + [SMALL_STATE(1845)] = 106581, + [SMALL_STATE(1846)] = 106601, + [SMALL_STATE(1847)] = 106623, + [SMALL_STATE(1848)] = 106649, + [SMALL_STATE(1849)] = 106671, + [SMALL_STATE(1850)] = 106697, + [SMALL_STATE(1851)] = 106723, + [SMALL_STATE(1852)] = 106749, + [SMALL_STATE(1853)] = 106775, + [SMALL_STATE(1854)] = 106797, + [SMALL_STATE(1855)] = 106823, + [SMALL_STATE(1856)] = 106843, + [SMALL_STATE(1857)] = 106865, + [SMALL_STATE(1858)] = 106883, + [SMALL_STATE(1859)] = 106905, + [SMALL_STATE(1860)] = 106923, + [SMALL_STATE(1861)] = 106941, + [SMALL_STATE(1862)] = 106963, + [SMALL_STATE(1863)] = 106985, + [SMALL_STATE(1864)] = 107011, + [SMALL_STATE(1865)] = 107037, + [SMALL_STATE(1866)] = 107055, + [SMALL_STATE(1867)] = 107079, + [SMALL_STATE(1868)] = 107105, + [SMALL_STATE(1869)] = 107131, + [SMALL_STATE(1870)] = 107153, + [SMALL_STATE(1871)] = 107171, + [SMALL_STATE(1872)] = 107197, + [SMALL_STATE(1873)] = 107221, + [SMALL_STATE(1874)] = 107241, + [SMALL_STATE(1875)] = 107263, + [SMALL_STATE(1876)] = 107289, + [SMALL_STATE(1877)] = 107315, + [SMALL_STATE(1878)] = 107341, + [SMALL_STATE(1879)] = 107363, + [SMALL_STATE(1880)] = 107389, + [SMALL_STATE(1881)] = 107405, + [SMALL_STATE(1882)] = 107431, + [SMALL_STATE(1883)] = 107457, + [SMALL_STATE(1884)] = 107475, + [SMALL_STATE(1885)] = 107493, + [SMALL_STATE(1886)] = 107517, + [SMALL_STATE(1887)] = 107543, + [SMALL_STATE(1888)] = 107569, + [SMALL_STATE(1889)] = 107587, + [SMALL_STATE(1890)] = 107609, + [SMALL_STATE(1891)] = 107635, + [SMALL_STATE(1892)] = 107656, + [SMALL_STATE(1893)] = 107673, + [SMALL_STATE(1894)] = 107690, + [SMALL_STATE(1895)] = 107703, + [SMALL_STATE(1896)] = 107716, + [SMALL_STATE(1897)] = 107733, + [SMALL_STATE(1898)] = 107754, + [SMALL_STATE(1899)] = 107771, + [SMALL_STATE(1900)] = 107788, + [SMALL_STATE(1901)] = 107809, + [SMALL_STATE(1902)] = 107826, + [SMALL_STATE(1903)] = 107839, + [SMALL_STATE(1904)] = 107858, + [SMALL_STATE(1905)] = 107871, + [SMALL_STATE(1906)] = 107888, + [SMALL_STATE(1907)] = 107909, + [SMALL_STATE(1908)] = 107926, + [SMALL_STATE(1909)] = 107943, + [SMALL_STATE(1910)] = 107960, + [SMALL_STATE(1911)] = 107981, + [SMALL_STATE(1912)] = 108002, + [SMALL_STATE(1913)] = 108015, + [SMALL_STATE(1914)] = 108036, + [SMALL_STATE(1915)] = 108053, + [SMALL_STATE(1916)] = 108076, + [SMALL_STATE(1917)] = 108097, + [SMALL_STATE(1918)] = 108114, + [SMALL_STATE(1919)] = 108131, + [SMALL_STATE(1920)] = 108152, + [SMALL_STATE(1921)] = 108173, + [SMALL_STATE(1922)] = 108190, + [SMALL_STATE(1923)] = 108205, + [SMALL_STATE(1924)] = 108226, + [SMALL_STATE(1925)] = 108247, + [SMALL_STATE(1926)] = 108268, + [SMALL_STATE(1927)] = 108283, + [SMALL_STATE(1928)] = 108300, + [SMALL_STATE(1929)] = 108321, + [SMALL_STATE(1930)] = 108342, + [SMALL_STATE(1931)] = 108363, + [SMALL_STATE(1932)] = 108376, + [SMALL_STATE(1933)] = 108397, + [SMALL_STATE(1934)] = 108418, + [SMALL_STATE(1935)] = 108441, + [SMALL_STATE(1936)] = 108454, + [SMALL_STATE(1937)] = 108475, + [SMALL_STATE(1938)] = 108492, + [SMALL_STATE(1939)] = 108513, + [SMALL_STATE(1940)] = 108526, + [SMALL_STATE(1941)] = 108547, + [SMALL_STATE(1942)] = 108564, + [SMALL_STATE(1943)] = 108581, + [SMALL_STATE(1944)] = 108598, + [SMALL_STATE(1945)] = 108615, + [SMALL_STATE(1946)] = 108630, + [SMALL_STATE(1947)] = 108647, + [SMALL_STATE(1948)] = 108660, + [SMALL_STATE(1949)] = 108675, + [SMALL_STATE(1950)] = 108692, + [SMALL_STATE(1951)] = 108709, + [SMALL_STATE(1952)] = 108732, + [SMALL_STATE(1953)] = 108749, + [SMALL_STATE(1954)] = 108764, + [SMALL_STATE(1955)] = 108781, + [SMALL_STATE(1956)] = 108798, + [SMALL_STATE(1957)] = 108811, + [SMALL_STATE(1958)] = 108824, + [SMALL_STATE(1959)] = 108837, + [SMALL_STATE(1960)] = 108850, + [SMALL_STATE(1961)] = 108865, + [SMALL_STATE(1962)] = 108888, + [SMALL_STATE(1963)] = 108905, + [SMALL_STATE(1964)] = 108926, + [SMALL_STATE(1965)] = 108947, + [SMALL_STATE(1966)] = 108968, + [SMALL_STATE(1967)] = 108981, + [SMALL_STATE(1968)] = 109002, + [SMALL_STATE(1969)] = 109019, + [SMALL_STATE(1970)] = 109036, + [SMALL_STATE(1971)] = 109049, + [SMALL_STATE(1972)] = 109064, + [SMALL_STATE(1973)] = 109085, + [SMALL_STATE(1974)] = 109106, + [SMALL_STATE(1975)] = 109121, + [SMALL_STATE(1976)] = 109134, + [SMALL_STATE(1977)] = 109157, + [SMALL_STATE(1978)] = 109178, + [SMALL_STATE(1979)] = 109191, + [SMALL_STATE(1980)] = 109204, + [SMALL_STATE(1981)] = 109217, + [SMALL_STATE(1982)] = 109234, + [SMALL_STATE(1983)] = 109247, + [SMALL_STATE(1984)] = 109260, + [SMALL_STATE(1985)] = 109273, + [SMALL_STATE(1986)] = 109294, + [SMALL_STATE(1987)] = 109311, + [SMALL_STATE(1988)] = 109332, + [SMALL_STATE(1989)] = 109353, + [SMALL_STATE(1990)] = 109370, + [SMALL_STATE(1991)] = 109391, + [SMALL_STATE(1992)] = 109408, + [SMALL_STATE(1993)] = 109425, + [SMALL_STATE(1994)] = 109442, + [SMALL_STATE(1995)] = 109463, + [SMALL_STATE(1996)] = 109480, + [SMALL_STATE(1997)] = 109493, + [SMALL_STATE(1998)] = 109514, + [SMALL_STATE(1999)] = 109527, + [SMALL_STATE(2000)] = 109546, + [SMALL_STATE(2001)] = 109563, + [SMALL_STATE(2002)] = 109583, + [SMALL_STATE(2003)] = 109595, + [SMALL_STATE(2004)] = 109615, + [SMALL_STATE(2005)] = 109627, + [SMALL_STATE(2006)] = 109643, + [SMALL_STATE(2007)] = 109655, + [SMALL_STATE(2008)] = 109667, + [SMALL_STATE(2009)] = 109679, + [SMALL_STATE(2010)] = 109691, + [SMALL_STATE(2011)] = 109703, + [SMALL_STATE(2012)] = 109719, + [SMALL_STATE(2013)] = 109737, + [SMALL_STATE(2014)] = 109755, + [SMALL_STATE(2015)] = 109775, + [SMALL_STATE(2016)] = 109795, + [SMALL_STATE(2017)] = 109807, + [SMALL_STATE(2018)] = 109819, + [SMALL_STATE(2019)] = 109831, + [SMALL_STATE(2020)] = 109851, + [SMALL_STATE(2021)] = 109865, + [SMALL_STATE(2022)] = 109881, + [SMALL_STATE(2023)] = 109897, + [SMALL_STATE(2024)] = 109917, + [SMALL_STATE(2025)] = 109929, + [SMALL_STATE(2026)] = 109941, + [SMALL_STATE(2027)] = 109953, + [SMALL_STATE(2028)] = 109967, + [SMALL_STATE(2029)] = 109985, + [SMALL_STATE(2030)] = 110005, + [SMALL_STATE(2031)] = 110025, + [SMALL_STATE(2032)] = 110041, + [SMALL_STATE(2033)] = 110059, + [SMALL_STATE(2034)] = 110071, + [SMALL_STATE(2035)] = 110089, + [SMALL_STATE(2036)] = 110101, + [SMALL_STATE(2037)] = 110117, + [SMALL_STATE(2038)] = 110129, + [SMALL_STATE(2039)] = 110141, + [SMALL_STATE(2040)] = 110155, + [SMALL_STATE(2041)] = 110173, + [SMALL_STATE(2042)] = 110185, + [SMALL_STATE(2043)] = 110197, + [SMALL_STATE(2044)] = 110217, + [SMALL_STATE(2045)] = 110233, + [SMALL_STATE(2046)] = 110247, + [SMALL_STATE(2047)] = 110263, + [SMALL_STATE(2048)] = 110275, + [SMALL_STATE(2049)] = 110287, + [SMALL_STATE(2050)] = 110303, + [SMALL_STATE(2051)] = 110323, + [SMALL_STATE(2052)] = 110343, + [SMALL_STATE(2053)] = 110361, + [SMALL_STATE(2054)] = 110373, + [SMALL_STATE(2055)] = 110385, + [SMALL_STATE(2056)] = 110397, + [SMALL_STATE(2057)] = 110409, + [SMALL_STATE(2058)] = 110421, + [SMALL_STATE(2059)] = 110433, + [SMALL_STATE(2060)] = 110445, + [SMALL_STATE(2061)] = 110457, + [SMALL_STATE(2062)] = 110477, + [SMALL_STATE(2063)] = 110497, + [SMALL_STATE(2064)] = 110509, + [SMALL_STATE(2065)] = 110529, + [SMALL_STATE(2066)] = 110541, + [SMALL_STATE(2067)] = 110553, + [SMALL_STATE(2068)] = 110565, + [SMALL_STATE(2069)] = 110583, + [SMALL_STATE(2070)] = 110599, + [SMALL_STATE(2071)] = 110611, + [SMALL_STATE(2072)] = 110623, + [SMALL_STATE(2073)] = 110643, + [SMALL_STATE(2074)] = 110655, + [SMALL_STATE(2075)] = 110667, + [SMALL_STATE(2076)] = 110679, + [SMALL_STATE(2077)] = 110691, + [SMALL_STATE(2078)] = 110703, + [SMALL_STATE(2079)] = 110715, + [SMALL_STATE(2080)] = 110733, + [SMALL_STATE(2081)] = 110745, + [SMALL_STATE(2082)] = 110757, + [SMALL_STATE(2083)] = 110769, + [SMALL_STATE(2084)] = 110781, + [SMALL_STATE(2085)] = 110801, + [SMALL_STATE(2086)] = 110821, + [SMALL_STATE(2087)] = 110841, + [SMALL_STATE(2088)] = 110853, + [SMALL_STATE(2089)] = 110865, + [SMALL_STATE(2090)] = 110885, + [SMALL_STATE(2091)] = 110903, + [SMALL_STATE(2092)] = 110923, + [SMALL_STATE(2093)] = 110939, + [SMALL_STATE(2094)] = 110957, + [SMALL_STATE(2095)] = 110969, + [SMALL_STATE(2096)] = 110987, + [SMALL_STATE(2097)] = 110999, + [SMALL_STATE(2098)] = 111015, + [SMALL_STATE(2099)] = 111029, + [SMALL_STATE(2100)] = 111045, + [SMALL_STATE(2101)] = 111057, + [SMALL_STATE(2102)] = 111077, + [SMALL_STATE(2103)] = 111097, + [SMALL_STATE(2104)] = 111111, + [SMALL_STATE(2105)] = 111127, + [SMALL_STATE(2106)] = 111139, + [SMALL_STATE(2107)] = 111151, + [SMALL_STATE(2108)] = 111163, + [SMALL_STATE(2109)] = 111183, + [SMALL_STATE(2110)] = 111203, + [SMALL_STATE(2111)] = 111223, + [SMALL_STATE(2112)] = 111243, + [SMALL_STATE(2113)] = 111255, + [SMALL_STATE(2114)] = 111267, + [SMALL_STATE(2115)] = 111287, + [SMALL_STATE(2116)] = 111305, + [SMALL_STATE(2117)] = 111316, + [SMALL_STATE(2118)] = 111333, + [SMALL_STATE(2119)] = 111344, + [SMALL_STATE(2120)] = 111355, + [SMALL_STATE(2121)] = 111366, + [SMALL_STATE(2122)] = 111377, + [SMALL_STATE(2123)] = 111394, + [SMALL_STATE(2124)] = 111405, + [SMALL_STATE(2125)] = 111416, + [SMALL_STATE(2126)] = 111427, + [SMALL_STATE(2127)] = 111442, + [SMALL_STATE(2128)] = 111453, + [SMALL_STATE(2129)] = 111464, + [SMALL_STATE(2130)] = 111479, + [SMALL_STATE(2131)] = 111490, + [SMALL_STATE(2132)] = 111501, + [SMALL_STATE(2133)] = 111512, + [SMALL_STATE(2134)] = 111523, + [SMALL_STATE(2135)] = 111534, + [SMALL_STATE(2136)] = 111545, + [SMALL_STATE(2137)] = 111562, + [SMALL_STATE(2138)] = 111577, + [SMALL_STATE(2139)] = 111594, + [SMALL_STATE(2140)] = 111611, + [SMALL_STATE(2141)] = 111622, + [SMALL_STATE(2142)] = 111639, + [SMALL_STATE(2143)] = 111656, + [SMALL_STATE(2144)] = 111671, + [SMALL_STATE(2145)] = 111682, + [SMALL_STATE(2146)] = 111693, + [SMALL_STATE(2147)] = 111704, + [SMALL_STATE(2148)] = 111721, + [SMALL_STATE(2149)] = 111738, + [SMALL_STATE(2150)] = 111749, + [SMALL_STATE(2151)] = 111766, + [SMALL_STATE(2152)] = 111777, + [SMALL_STATE(2153)] = 111794, + [SMALL_STATE(2154)] = 111805, + [SMALL_STATE(2155)] = 111816, + [SMALL_STATE(2156)] = 111827, + [SMALL_STATE(2157)] = 111838, + [SMALL_STATE(2158)] = 111855, + [SMALL_STATE(2159)] = 111872, + [SMALL_STATE(2160)] = 111889, + [SMALL_STATE(2161)] = 111900, + [SMALL_STATE(2162)] = 111911, + [SMALL_STATE(2163)] = 111928, + [SMALL_STATE(2164)] = 111939, + [SMALL_STATE(2165)] = 111950, + [SMALL_STATE(2166)] = 111961, + [SMALL_STATE(2167)] = 111972, + [SMALL_STATE(2168)] = 111983, + [SMALL_STATE(2169)] = 112000, + [SMALL_STATE(2170)] = 112013, + [SMALL_STATE(2171)] = 112030, + [SMALL_STATE(2172)] = 112045, + [SMALL_STATE(2173)] = 112062, + [SMALL_STATE(2174)] = 112077, + [SMALL_STATE(2175)] = 112094, + [SMALL_STATE(2176)] = 112109, + [SMALL_STATE(2177)] = 112120, + [SMALL_STATE(2178)] = 112135, + [SMALL_STATE(2179)] = 112152, + [SMALL_STATE(2180)] = 112169, + [SMALL_STATE(2181)] = 112180, + [SMALL_STATE(2182)] = 112197, + [SMALL_STATE(2183)] = 112208, + [SMALL_STATE(2184)] = 112223, + [SMALL_STATE(2185)] = 112234, + [SMALL_STATE(2186)] = 112247, + [SMALL_STATE(2187)] = 112258, + [SMALL_STATE(2188)] = 112269, + [SMALL_STATE(2189)] = 112280, + [SMALL_STATE(2190)] = 112291, + [SMALL_STATE(2191)] = 112306, + [SMALL_STATE(2192)] = 112317, + [SMALL_STATE(2193)] = 112328, + [SMALL_STATE(2194)] = 112343, + [SMALL_STATE(2195)] = 112354, + [SMALL_STATE(2196)] = 112369, + [SMALL_STATE(2197)] = 112380, + [SMALL_STATE(2198)] = 112395, + [SMALL_STATE(2199)] = 112412, + [SMALL_STATE(2200)] = 112427, + [SMALL_STATE(2201)] = 112442, + [SMALL_STATE(2202)] = 112453, + [SMALL_STATE(2203)] = 112464, + [SMALL_STATE(2204)] = 112475, + [SMALL_STATE(2205)] = 112486, + [SMALL_STATE(2206)] = 112497, + [SMALL_STATE(2207)] = 112508, + [SMALL_STATE(2208)] = 112519, + [SMALL_STATE(2209)] = 112530, + [SMALL_STATE(2210)] = 112541, + [SMALL_STATE(2211)] = 112552, + [SMALL_STATE(2212)] = 112565, + [SMALL_STATE(2213)] = 112576, + [SMALL_STATE(2214)] = 112587, + [SMALL_STATE(2215)] = 112602, + [SMALL_STATE(2216)] = 112619, + [SMALL_STATE(2217)] = 112630, + [SMALL_STATE(2218)] = 112645, + [SMALL_STATE(2219)] = 112656, + [SMALL_STATE(2220)] = 112667, + [SMALL_STATE(2221)] = 112684, + [SMALL_STATE(2222)] = 112701, + [SMALL_STATE(2223)] = 112712, + [SMALL_STATE(2224)] = 112723, + [SMALL_STATE(2225)] = 112734, + [SMALL_STATE(2226)] = 112751, + [SMALL_STATE(2227)] = 112762, + [SMALL_STATE(2228)] = 112779, + [SMALL_STATE(2229)] = 112790, + [SMALL_STATE(2230)] = 112801, + [SMALL_STATE(2231)] = 112818, + [SMALL_STATE(2232)] = 112835, + [SMALL_STATE(2233)] = 112852, + [SMALL_STATE(2234)] = 112867, + [SMALL_STATE(2235)] = 112878, + [SMALL_STATE(2236)] = 112889, + [SMALL_STATE(2237)] = 112900, + [SMALL_STATE(2238)] = 112911, + [SMALL_STATE(2239)] = 112926, + [SMALL_STATE(2240)] = 112943, + [SMALL_STATE(2241)] = 112958, + [SMALL_STATE(2242)] = 112969, + [SMALL_STATE(2243)] = 112980, + [SMALL_STATE(2244)] = 112991, + [SMALL_STATE(2245)] = 113002, + [SMALL_STATE(2246)] = 113016, + [SMALL_STATE(2247)] = 113030, + [SMALL_STATE(2248)] = 113040, + [SMALL_STATE(2249)] = 113054, + [SMALL_STATE(2250)] = 113068, + [SMALL_STATE(2251)] = 113082, + [SMALL_STATE(2252)] = 113096, + [SMALL_STATE(2253)] = 113110, + [SMALL_STATE(2254)] = 113124, + [SMALL_STATE(2255)] = 113138, + [SMALL_STATE(2256)] = 113152, + [SMALL_STATE(2257)] = 113166, + [SMALL_STATE(2258)] = 113180, + [SMALL_STATE(2259)] = 113194, + [SMALL_STATE(2260)] = 113208, + [SMALL_STATE(2261)] = 113220, + [SMALL_STATE(2262)] = 113234, + [SMALL_STATE(2263)] = 113248, + [SMALL_STATE(2264)] = 113258, + [SMALL_STATE(2265)] = 113272, + [SMALL_STATE(2266)] = 113286, + [SMALL_STATE(2267)] = 113300, + [SMALL_STATE(2268)] = 113314, + [SMALL_STATE(2269)] = 113328, + [SMALL_STATE(2270)] = 113342, + [SMALL_STATE(2271)] = 113356, + [SMALL_STATE(2272)] = 113370, + [SMALL_STATE(2273)] = 113384, + [SMALL_STATE(2274)] = 113396, + [SMALL_STATE(2275)] = 113410, + [SMALL_STATE(2276)] = 113424, + [SMALL_STATE(2277)] = 113438, + [SMALL_STATE(2278)] = 113452, + [SMALL_STATE(2279)] = 113466, + [SMALL_STATE(2280)] = 113480, + [SMALL_STATE(2281)] = 113494, + [SMALL_STATE(2282)] = 113508, + [SMALL_STATE(2283)] = 113522, + [SMALL_STATE(2284)] = 113536, + [SMALL_STATE(2285)] = 113550, + [SMALL_STATE(2286)] = 113564, + [SMALL_STATE(2287)] = 113578, + [SMALL_STATE(2288)] = 113592, + [SMALL_STATE(2289)] = 113606, + [SMALL_STATE(2290)] = 113620, + [SMALL_STATE(2291)] = 113632, + [SMALL_STATE(2292)] = 113646, + [SMALL_STATE(2293)] = 113660, + [SMALL_STATE(2294)] = 113674, + [SMALL_STATE(2295)] = 113688, + [SMALL_STATE(2296)] = 113700, + [SMALL_STATE(2297)] = 113712, + [SMALL_STATE(2298)] = 113724, + [SMALL_STATE(2299)] = 113736, + [SMALL_STATE(2300)] = 113750, + [SMALL_STATE(2301)] = 113764, + [SMALL_STATE(2302)] = 113774, + [SMALL_STATE(2303)] = 113788, + [SMALL_STATE(2304)] = 113802, + [SMALL_STATE(2305)] = 113816, + [SMALL_STATE(2306)] = 113830, + [SMALL_STATE(2307)] = 113844, + [SMALL_STATE(2308)] = 113858, + [SMALL_STATE(2309)] = 113872, + [SMALL_STATE(2310)] = 113886, + [SMALL_STATE(2311)] = 113900, + [SMALL_STATE(2312)] = 113914, + [SMALL_STATE(2313)] = 113928, + [SMALL_STATE(2314)] = 113940, + [SMALL_STATE(2315)] = 113954, + [SMALL_STATE(2316)] = 113968, + [SMALL_STATE(2317)] = 113982, + [SMALL_STATE(2318)] = 113996, + [SMALL_STATE(2319)] = 114008, + [SMALL_STATE(2320)] = 114022, + [SMALL_STATE(2321)] = 114036, + [SMALL_STATE(2322)] = 114048, + [SMALL_STATE(2323)] = 114058, + [SMALL_STATE(2324)] = 114072, + [SMALL_STATE(2325)] = 114084, + [SMALL_STATE(2326)] = 114098, + [SMALL_STATE(2327)] = 114112, + [SMALL_STATE(2328)] = 114126, + [SMALL_STATE(2329)] = 114140, + [SMALL_STATE(2330)] = 114154, + [SMALL_STATE(2331)] = 114168, + [SMALL_STATE(2332)] = 114182, + [SMALL_STATE(2333)] = 114196, + [SMALL_STATE(2334)] = 114210, + [SMALL_STATE(2335)] = 114224, + [SMALL_STATE(2336)] = 114236, + [SMALL_STATE(2337)] = 114246, + [SMALL_STATE(2338)] = 114260, + [SMALL_STATE(2339)] = 114274, + [SMALL_STATE(2340)] = 114288, + [SMALL_STATE(2341)] = 114302, + [SMALL_STATE(2342)] = 114316, + [SMALL_STATE(2343)] = 114330, + [SMALL_STATE(2344)] = 114344, + [SMALL_STATE(2345)] = 114358, + [SMALL_STATE(2346)] = 114372, + [SMALL_STATE(2347)] = 114386, + [SMALL_STATE(2348)] = 114400, + [SMALL_STATE(2349)] = 114414, + [SMALL_STATE(2350)] = 114428, + [SMALL_STATE(2351)] = 114442, + [SMALL_STATE(2352)] = 114456, + [SMALL_STATE(2353)] = 114470, + [SMALL_STATE(2354)] = 114484, + [SMALL_STATE(2355)] = 114498, + [SMALL_STATE(2356)] = 114512, + [SMALL_STATE(2357)] = 114526, + [SMALL_STATE(2358)] = 114540, + [SMALL_STATE(2359)] = 114554, + [SMALL_STATE(2360)] = 114568, + [SMALL_STATE(2361)] = 114582, + [SMALL_STATE(2362)] = 114596, + [SMALL_STATE(2363)] = 114610, + [SMALL_STATE(2364)] = 114624, + [SMALL_STATE(2365)] = 114638, + [SMALL_STATE(2366)] = 114652, + [SMALL_STATE(2367)] = 114666, + [SMALL_STATE(2368)] = 114680, + [SMALL_STATE(2369)] = 114690, + [SMALL_STATE(2370)] = 114704, + [SMALL_STATE(2371)] = 114718, + [SMALL_STATE(2372)] = 114732, + [SMALL_STATE(2373)] = 114746, + [SMALL_STATE(2374)] = 114760, + [SMALL_STATE(2375)] = 114774, + [SMALL_STATE(2376)] = 114788, + [SMALL_STATE(2377)] = 114802, + [SMALL_STATE(2378)] = 114816, + [SMALL_STATE(2379)] = 114830, + [SMALL_STATE(2380)] = 114844, + [SMALL_STATE(2381)] = 114858, + [SMALL_STATE(2382)] = 114872, + [SMALL_STATE(2383)] = 114886, + [SMALL_STATE(2384)] = 114896, + [SMALL_STATE(2385)] = 114910, + [SMALL_STATE(2386)] = 114920, + [SMALL_STATE(2387)] = 114934, + [SMALL_STATE(2388)] = 114948, + [SMALL_STATE(2389)] = 114958, + [SMALL_STATE(2390)] = 114972, + [SMALL_STATE(2391)] = 114984, + [SMALL_STATE(2392)] = 114998, + [SMALL_STATE(2393)] = 115012, + [SMALL_STATE(2394)] = 115026, + [SMALL_STATE(2395)] = 115040, + [SMALL_STATE(2396)] = 115054, + [SMALL_STATE(2397)] = 115068, + [SMALL_STATE(2398)] = 115082, + [SMALL_STATE(2399)] = 115096, + [SMALL_STATE(2400)] = 115110, + [SMALL_STATE(2401)] = 115124, + [SMALL_STATE(2402)] = 115138, + [SMALL_STATE(2403)] = 115152, + [SMALL_STATE(2404)] = 115166, + [SMALL_STATE(2405)] = 115180, + [SMALL_STATE(2406)] = 115194, + [SMALL_STATE(2407)] = 115208, + [SMALL_STATE(2408)] = 115222, + [SMALL_STATE(2409)] = 115234, + [SMALL_STATE(2410)] = 115244, + [SMALL_STATE(2411)] = 115258, + [SMALL_STATE(2412)] = 115272, + [SMALL_STATE(2413)] = 115286, + [SMALL_STATE(2414)] = 115300, + [SMALL_STATE(2415)] = 115312, + [SMALL_STATE(2416)] = 115326, + [SMALL_STATE(2417)] = 115340, + [SMALL_STATE(2418)] = 115354, + [SMALL_STATE(2419)] = 115368, + [SMALL_STATE(2420)] = 115382, + [SMALL_STATE(2421)] = 115396, + [SMALL_STATE(2422)] = 115410, + [SMALL_STATE(2423)] = 115424, + [SMALL_STATE(2424)] = 115438, + [SMALL_STATE(2425)] = 115452, + [SMALL_STATE(2426)] = 115466, + [SMALL_STATE(2427)] = 115476, + [SMALL_STATE(2428)] = 115490, + [SMALL_STATE(2429)] = 115504, + [SMALL_STATE(2430)] = 115518, + [SMALL_STATE(2431)] = 115532, + [SMALL_STATE(2432)] = 115542, + [SMALL_STATE(2433)] = 115556, + [SMALL_STATE(2434)] = 115568, + [SMALL_STATE(2435)] = 115582, + [SMALL_STATE(2436)] = 115596, + [SMALL_STATE(2437)] = 115606, + [SMALL_STATE(2438)] = 115620, + [SMALL_STATE(2439)] = 115634, + [SMALL_STATE(2440)] = 115648, + [SMALL_STATE(2441)] = 115662, + [SMALL_STATE(2442)] = 115676, + [SMALL_STATE(2443)] = 115690, + [SMALL_STATE(2444)] = 115704, + [SMALL_STATE(2445)] = 115718, + [SMALL_STATE(2446)] = 115732, + [SMALL_STATE(2447)] = 115746, + [SMALL_STATE(2448)] = 115760, + [SMALL_STATE(2449)] = 115774, + [SMALL_STATE(2450)] = 115788, + [SMALL_STATE(2451)] = 115802, + [SMALL_STATE(2452)] = 115816, + [SMALL_STATE(2453)] = 115830, + [SMALL_STATE(2454)] = 115844, + [SMALL_STATE(2455)] = 115858, + [SMALL_STATE(2456)] = 115872, + [SMALL_STATE(2457)] = 115886, + [SMALL_STATE(2458)] = 115900, + [SMALL_STATE(2459)] = 115914, + [SMALL_STATE(2460)] = 115928, + [SMALL_STATE(2461)] = 115942, + [SMALL_STATE(2462)] = 115956, + [SMALL_STATE(2463)] = 115970, + [SMALL_STATE(2464)] = 115984, + [SMALL_STATE(2465)] = 115998, + [SMALL_STATE(2466)] = 116012, + [SMALL_STATE(2467)] = 116026, + [SMALL_STATE(2468)] = 116040, + [SMALL_STATE(2469)] = 116054, + [SMALL_STATE(2470)] = 116068, + [SMALL_STATE(2471)] = 116082, + [SMALL_STATE(2472)] = 116096, + [SMALL_STATE(2473)] = 116110, + [SMALL_STATE(2474)] = 116122, + [SMALL_STATE(2475)] = 116136, + [SMALL_STATE(2476)] = 116150, + [SMALL_STATE(2477)] = 116164, + [SMALL_STATE(2478)] = 116178, + [SMALL_STATE(2479)] = 116192, + [SMALL_STATE(2480)] = 116206, + [SMALL_STATE(2481)] = 116218, + [SMALL_STATE(2482)] = 116230, + [SMALL_STATE(2483)] = 116244, + [SMALL_STATE(2484)] = 116254, + [SMALL_STATE(2485)] = 116268, + [SMALL_STATE(2486)] = 116282, + [SMALL_STATE(2487)] = 116296, + [SMALL_STATE(2488)] = 116310, + [SMALL_STATE(2489)] = 116324, + [SMALL_STATE(2490)] = 116338, + [SMALL_STATE(2491)] = 116352, + [SMALL_STATE(2492)] = 116366, + [SMALL_STATE(2493)] = 116380, + [SMALL_STATE(2494)] = 116394, + [SMALL_STATE(2495)] = 116408, + [SMALL_STATE(2496)] = 116419, + [SMALL_STATE(2497)] = 116430, + [SMALL_STATE(2498)] = 116439, + [SMALL_STATE(2499)] = 116448, + [SMALL_STATE(2500)] = 116457, + [SMALL_STATE(2501)] = 116466, + [SMALL_STATE(2502)] = 116475, + [SMALL_STATE(2503)] = 116484, + [SMALL_STATE(2504)] = 116493, + [SMALL_STATE(2505)] = 116502, + [SMALL_STATE(2506)] = 116511, + [SMALL_STATE(2507)] = 116520, + [SMALL_STATE(2508)] = 116529, + [SMALL_STATE(2509)] = 116538, + [SMALL_STATE(2510)] = 116547, + [SMALL_STATE(2511)] = 116558, + [SMALL_STATE(2512)] = 116567, + [SMALL_STATE(2513)] = 116576, + [SMALL_STATE(2514)] = 116585, + [SMALL_STATE(2515)] = 116596, + [SMALL_STATE(2516)] = 116605, + [SMALL_STATE(2517)] = 116614, + [SMALL_STATE(2518)] = 116623, + [SMALL_STATE(2519)] = 116634, + [SMALL_STATE(2520)] = 116643, + [SMALL_STATE(2521)] = 116654, + [SMALL_STATE(2522)] = 116663, + [SMALL_STATE(2523)] = 116672, + [SMALL_STATE(2524)] = 116683, + [SMALL_STATE(2525)] = 116692, + [SMALL_STATE(2526)] = 116703, + [SMALL_STATE(2527)] = 116714, + [SMALL_STATE(2528)] = 116723, + [SMALL_STATE(2529)] = 116732, + [SMALL_STATE(2530)] = 116741, + [SMALL_STATE(2531)] = 116750, + [SMALL_STATE(2532)] = 116759, + [SMALL_STATE(2533)] = 116768, + [SMALL_STATE(2534)] = 116777, + [SMALL_STATE(2535)] = 116786, + [SMALL_STATE(2536)] = 116795, + [SMALL_STATE(2537)] = 116804, + [SMALL_STATE(2538)] = 116815, + [SMALL_STATE(2539)] = 116826, + [SMALL_STATE(2540)] = 116835, + [SMALL_STATE(2541)] = 116844, + [SMALL_STATE(2542)] = 116853, + [SMALL_STATE(2543)] = 116862, + [SMALL_STATE(2544)] = 116873, + [SMALL_STATE(2545)] = 116884, + [SMALL_STATE(2546)] = 116893, + [SMALL_STATE(2547)] = 116902, + [SMALL_STATE(2548)] = 116913, + [SMALL_STATE(2549)] = 116922, + [SMALL_STATE(2550)] = 116931, + [SMALL_STATE(2551)] = 116940, + [SMALL_STATE(2552)] = 116949, + [SMALL_STATE(2553)] = 116958, + [SMALL_STATE(2554)] = 116967, + [SMALL_STATE(2555)] = 116976, + [SMALL_STATE(2556)] = 116985, + [SMALL_STATE(2557)] = 116994, + [SMALL_STATE(2558)] = 117003, + [SMALL_STATE(2559)] = 117012, + [SMALL_STATE(2560)] = 117023, + [SMALL_STATE(2561)] = 117034, + [SMALL_STATE(2562)] = 117043, + [SMALL_STATE(2563)] = 117054, + [SMALL_STATE(2564)] = 117065, + [SMALL_STATE(2565)] = 117074, + [SMALL_STATE(2566)] = 117083, + [SMALL_STATE(2567)] = 117094, + [SMALL_STATE(2568)] = 117103, + [SMALL_STATE(2569)] = 117112, + [SMALL_STATE(2570)] = 117121, + [SMALL_STATE(2571)] = 117130, + [SMALL_STATE(2572)] = 117139, + [SMALL_STATE(2573)] = 117150, + [SMALL_STATE(2574)] = 117159, + [SMALL_STATE(2575)] = 117168, + [SMALL_STATE(2576)] = 117177, + [SMALL_STATE(2577)] = 117186, + [SMALL_STATE(2578)] = 117197, + [SMALL_STATE(2579)] = 117206, + [SMALL_STATE(2580)] = 117215, + [SMALL_STATE(2581)] = 117224, + [SMALL_STATE(2582)] = 117233, + [SMALL_STATE(2583)] = 117244, + [SMALL_STATE(2584)] = 117253, + [SMALL_STATE(2585)] = 117264, + [SMALL_STATE(2586)] = 117273, + [SMALL_STATE(2587)] = 117282, + [SMALL_STATE(2588)] = 117291, + [SMALL_STATE(2589)] = 117300, + [SMALL_STATE(2590)] = 117309, + [SMALL_STATE(2591)] = 117320, + [SMALL_STATE(2592)] = 117329, + [SMALL_STATE(2593)] = 117338, + [SMALL_STATE(2594)] = 117349, + [SMALL_STATE(2595)] = 117358, + [SMALL_STATE(2596)] = 117367, + [SMALL_STATE(2597)] = 117376, + [SMALL_STATE(2598)] = 117384, + [SMALL_STATE(2599)] = 117392, + [SMALL_STATE(2600)] = 117400, + [SMALL_STATE(2601)] = 117408, + [SMALL_STATE(2602)] = 117416, + [SMALL_STATE(2603)] = 117424, + [SMALL_STATE(2604)] = 117432, + [SMALL_STATE(2605)] = 117440, + [SMALL_STATE(2606)] = 117448, + [SMALL_STATE(2607)] = 117456, + [SMALL_STATE(2608)] = 117464, + [SMALL_STATE(2609)] = 117472, + [SMALL_STATE(2610)] = 117480, + [SMALL_STATE(2611)] = 117488, + [SMALL_STATE(2612)] = 117496, + [SMALL_STATE(2613)] = 117504, + [SMALL_STATE(2614)] = 117512, + [SMALL_STATE(2615)] = 117520, + [SMALL_STATE(2616)] = 117528, + [SMALL_STATE(2617)] = 117536, + [SMALL_STATE(2618)] = 117544, + [SMALL_STATE(2619)] = 117552, + [SMALL_STATE(2620)] = 117560, + [SMALL_STATE(2621)] = 117568, + [SMALL_STATE(2622)] = 117576, + [SMALL_STATE(2623)] = 117584, + [SMALL_STATE(2624)] = 117592, + [SMALL_STATE(2625)] = 117600, + [SMALL_STATE(2626)] = 117608, + [SMALL_STATE(2627)] = 117616, + [SMALL_STATE(2628)] = 117624, + [SMALL_STATE(2629)] = 117632, + [SMALL_STATE(2630)] = 117640, + [SMALL_STATE(2631)] = 117648, + [SMALL_STATE(2632)] = 117656, + [SMALL_STATE(2633)] = 117664, + [SMALL_STATE(2634)] = 117672, + [SMALL_STATE(2635)] = 117680, + [SMALL_STATE(2636)] = 117688, + [SMALL_STATE(2637)] = 117696, + [SMALL_STATE(2638)] = 117704, + [SMALL_STATE(2639)] = 117712, + [SMALL_STATE(2640)] = 117720, + [SMALL_STATE(2641)] = 117728, + [SMALL_STATE(2642)] = 117736, + [SMALL_STATE(2643)] = 117744, + [SMALL_STATE(2644)] = 117752, + [SMALL_STATE(2645)] = 117760, + [SMALL_STATE(2646)] = 117768, + [SMALL_STATE(2647)] = 117776, + [SMALL_STATE(2648)] = 117784, + [SMALL_STATE(2649)] = 117792, + [SMALL_STATE(2650)] = 117800, + [SMALL_STATE(2651)] = 117808, + [SMALL_STATE(2652)] = 117816, + [SMALL_STATE(2653)] = 117824, + [SMALL_STATE(2654)] = 117832, + [SMALL_STATE(2655)] = 117840, + [SMALL_STATE(2656)] = 117848, + [SMALL_STATE(2657)] = 117856, + [SMALL_STATE(2658)] = 117864, + [SMALL_STATE(2659)] = 117872, + [SMALL_STATE(2660)] = 117880, + [SMALL_STATE(2661)] = 117888, + [SMALL_STATE(2662)] = 117896, + [SMALL_STATE(2663)] = 117904, + [SMALL_STATE(2664)] = 117912, + [SMALL_STATE(2665)] = 117920, + [SMALL_STATE(2666)] = 117928, + [SMALL_STATE(2667)] = 117936, + [SMALL_STATE(2668)] = 117944, + [SMALL_STATE(2669)] = 117952, + [SMALL_STATE(2670)] = 117960, + [SMALL_STATE(2671)] = 117968, + [SMALL_STATE(2672)] = 117976, + [SMALL_STATE(2673)] = 117984, + [SMALL_STATE(2674)] = 117992, + [SMALL_STATE(2675)] = 118000, + [SMALL_STATE(2676)] = 118008, + [SMALL_STATE(2677)] = 118016, + [SMALL_STATE(2678)] = 118024, + [SMALL_STATE(2679)] = 118032, + [SMALL_STATE(2680)] = 118040, + [SMALL_STATE(2681)] = 118048, + [SMALL_STATE(2682)] = 118056, + [SMALL_STATE(2683)] = 118064, + [SMALL_STATE(2684)] = 118072, + [SMALL_STATE(2685)] = 118080, + [SMALL_STATE(2686)] = 118088, + [SMALL_STATE(2687)] = 118096, + [SMALL_STATE(2688)] = 118104, + [SMALL_STATE(2689)] = 118112, + [SMALL_STATE(2690)] = 118120, + [SMALL_STATE(2691)] = 118128, + [SMALL_STATE(2692)] = 118136, + [SMALL_STATE(2693)] = 118144, + [SMALL_STATE(2694)] = 118152, + [SMALL_STATE(2695)] = 118160, + [SMALL_STATE(2696)] = 118168, + [SMALL_STATE(2697)] = 118176, + [SMALL_STATE(2698)] = 118184, + [SMALL_STATE(2699)] = 118192, + [SMALL_STATE(2700)] = 118200, + [SMALL_STATE(2701)] = 118208, + [SMALL_STATE(2702)] = 118216, + [SMALL_STATE(2703)] = 118224, + [SMALL_STATE(2704)] = 118232, + [SMALL_STATE(2705)] = 118240, + [SMALL_STATE(2706)] = 118248, + [SMALL_STATE(2707)] = 118256, + [SMALL_STATE(2708)] = 118264, + [SMALL_STATE(2709)] = 118272, + [SMALL_STATE(2710)] = 118280, + [SMALL_STATE(2711)] = 118288, + [SMALL_STATE(2712)] = 118296, + [SMALL_STATE(2713)] = 118304, + [SMALL_STATE(2714)] = 118312, + [SMALL_STATE(2715)] = 118320, + [SMALL_STATE(2716)] = 118328, + [SMALL_STATE(2717)] = 118336, + [SMALL_STATE(2718)] = 118344, + [SMALL_STATE(2719)] = 118352, + [SMALL_STATE(2720)] = 118360, + [SMALL_STATE(2721)] = 118368, + [SMALL_STATE(2722)] = 118376, + [SMALL_STATE(2723)] = 118384, + [SMALL_STATE(2724)] = 118392, + [SMALL_STATE(2725)] = 118400, + [SMALL_STATE(2726)] = 118408, + [SMALL_STATE(2727)] = 118416, + [SMALL_STATE(2728)] = 118424, + [SMALL_STATE(2729)] = 118432, + [SMALL_STATE(2730)] = 118440, + [SMALL_STATE(2731)] = 118448, + [SMALL_STATE(2732)] = 118456, + [SMALL_STATE(2733)] = 118464, + [SMALL_STATE(2734)] = 118472, + [SMALL_STATE(2735)] = 118480, + [SMALL_STATE(2736)] = 118488, + [SMALL_STATE(2737)] = 118496, + [SMALL_STATE(2738)] = 118504, + [SMALL_STATE(2739)] = 118512, + [SMALL_STATE(2740)] = 118520, + [SMALL_STATE(2741)] = 118528, + [SMALL_STATE(2742)] = 118536, + [SMALL_STATE(2743)] = 118544, + [SMALL_STATE(2744)] = 118552, + [SMALL_STATE(2745)] = 118560, + [SMALL_STATE(2746)] = 118568, + [SMALL_STATE(2747)] = 118576, + [SMALL_STATE(2748)] = 118584, + [SMALL_STATE(2749)] = 118592, + [SMALL_STATE(2750)] = 118600, + [SMALL_STATE(2751)] = 118608, + [SMALL_STATE(2752)] = 118616, + [SMALL_STATE(2753)] = 118624, + [SMALL_STATE(2754)] = 118632, + [SMALL_STATE(2755)] = 118640, + [SMALL_STATE(2756)] = 118648, + [SMALL_STATE(2757)] = 118656, + [SMALL_STATE(2758)] = 118664, + [SMALL_STATE(2759)] = 118672, + [SMALL_STATE(2760)] = 118680, + [SMALL_STATE(2761)] = 118688, + [SMALL_STATE(2762)] = 118696, + [SMALL_STATE(2763)] = 118704, + [SMALL_STATE(2764)] = 118712, + [SMALL_STATE(2765)] = 118720, + [SMALL_STATE(2766)] = 118728, + [SMALL_STATE(2767)] = 118736, + [SMALL_STATE(2768)] = 118744, + [SMALL_STATE(2769)] = 118752, + [SMALL_STATE(2770)] = 118760, + [SMALL_STATE(2771)] = 118768, + [SMALL_STATE(2772)] = 118776, + [SMALL_STATE(2773)] = 118784, + [SMALL_STATE(2774)] = 118792, + [SMALL_STATE(2775)] = 118800, + [SMALL_STATE(2776)] = 118808, + [SMALL_STATE(2777)] = 118816, + [SMALL_STATE(2778)] = 118824, + [SMALL_STATE(2779)] = 118832, + [SMALL_STATE(2780)] = 118840, + [SMALL_STATE(2781)] = 118848, + [SMALL_STATE(2782)] = 118856, + [SMALL_STATE(2783)] = 118864, + [SMALL_STATE(2784)] = 118872, + [SMALL_STATE(2785)] = 118880, + [SMALL_STATE(2786)] = 118888, + [SMALL_STATE(2787)] = 118896, + [SMALL_STATE(2788)] = 118904, + [SMALL_STATE(2789)] = 118912, + [SMALL_STATE(2790)] = 118920, + [SMALL_STATE(2791)] = 118928, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -127372,2433 +128630,2440 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), [109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(616), - [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2144), - [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1835), - [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(191), - [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(927), - [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(84), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(484), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(373), - [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(478), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(348), - [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2492), - [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2577), - [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2544), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(491), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(87), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(470), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(795), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(584), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2772), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(444), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2623), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2696), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2706), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(460), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(75), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2668), - [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(217), - [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(485), - [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(871), - [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(186), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(501), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1644), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(352), - [214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1085), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1085), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(149), - [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1696), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(601), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(86), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(475), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(845), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(602), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2660), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(457), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2776), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2755), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(311), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(913), - [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 1), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2751), - [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(872), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(567), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), - [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(316), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(290), - [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(870), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(291), - [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(871), - [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(501), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(906), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), - [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 0), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 0), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [1089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 111), - [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 111), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 96), - [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 96), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 97), - [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 97), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 0), - [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 45), - [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 45), - [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 0), - [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 0), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 0), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 0), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 14), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, -1, 15), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), - [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 2, 0, 0), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 0), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 0), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 6), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 43), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 43), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 43), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 43), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 17), - [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 17), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 17), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 17), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), - [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 0), - [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), - [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [1577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(405), - [1580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(448), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 81), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 81), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 56), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 56), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 38), - [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 38), - [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 57), - [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 57), - [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), - [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), - [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), - [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 50), - [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 50), - [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 71), - [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 71), - [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), - [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), - [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), - [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), - [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(522), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 2), - [1642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 2), - [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 2), - [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 24), - [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 24), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), - [1653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), - [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), - [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 50), - [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 50), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 71), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 71), - [1674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(604), - [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), - [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), - [1683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 144), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 144), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 135), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 135), - [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 142), - [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 142), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 8, 0, 148), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 8, 0, 148), - [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 134), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 134), - [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 0), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 0), - [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 143), - [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 143), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 0), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 0), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 119), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 119), - [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 105), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 105), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 104), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 104), - [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 132), - [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 132), - [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 120), - [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 120), - [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 133), - [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 133), - [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 88), - [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 88), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 106), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 106), - [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 38), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 38), - [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 115), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 115), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 54), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 54), - [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 57), - [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 57), - [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 86), - [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 86), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 62), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 62), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 17), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 17), - [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 43), - [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 43), - [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 99), - [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 99), - [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 103), - [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 103), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 42), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 42), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 17), - [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 17), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 43), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 43), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 101), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 101), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 44), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 44), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 84), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 84), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 136), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 136), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 141), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 141), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 85), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 85), - [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 117), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 117), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 59), - [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 59), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 87), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 87), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 60), - [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 60), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 118), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 118), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 131), - [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 131), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 61), - [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 61), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 65), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 65), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 116), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 116), - [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 46), - [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 46), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2, 0, 0), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2, 0, 0), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 129), - [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 129), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 88), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 88), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 17), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 17), - [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 63), - [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 63), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 64), - [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 64), - [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 66), - [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 66), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 67), - [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 67), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 89), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 89), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 90), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 90), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 0), - [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 91), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 91), - [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 92), - [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 92), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 78), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 78), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 80), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 80), - [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 93), - [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 93), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, 0, 82), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, 0, 82), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 83), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 83), - [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 98), - [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 98), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 0), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 121), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 121), - [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 55), - [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 55), - [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1, 0, 0), - [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1, 0, 0), - [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 100), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 100), - [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 122), - [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 122), - [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 40), - [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 40), - [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 102), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 102), - [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 12), - [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 12), - [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 0), - [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 130), - [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 130), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 0), - [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 0), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 43), - [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 43), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 108), - [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 108), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 109), - [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 109), - [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 110), - [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 110), - [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 114), - [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 114), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 58), - [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 58), - [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 0), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1696), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 22), - [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 22), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), - [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), - [2425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1691), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), - [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), - [2460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1675), - [2463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1701), - [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), - [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 9), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [2476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1682), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [2483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1706), - [2486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1677), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 35), - [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 35), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 35), - [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 35), - [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [2501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1710), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 0), - [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 0), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 0), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 0), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 34), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 34), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 34), - [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 34), - [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 10), - [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 10), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), - [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 35), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 35), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), - [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), - [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 34), - [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 34), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), - [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 0), - [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 0), - [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), - [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 35), - [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 35), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), - [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 11), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 11), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), - [2806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(873), - [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), - [2811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(2634), - [2814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(861), - [2817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(873), - [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [2822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(919), - [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(855), - [2828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(919), - [2831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(947), - [2834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(860), - [2837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(947), - [2840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(936), - [2843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(857), - [2846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(936), - [2849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(886), - [2852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(858), - [2855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(886), - [2858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(901), - [2861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(862), - [2864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(901), - [2867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(950), - [2870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(863), - [2873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(950), - [2876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(864), - [2879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(856), - [2882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(864), - [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__is_not, 2, 0, 0), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__is_not, 2, 0, 0), - [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__not_in, 2, 0, 0), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__not_in, 2, 0, 0), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), - [2895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 0), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), - [2942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(851), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), - [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), - [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 49), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 6), - [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, 0, 23), - [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 22), - [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), - [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 18), - [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), - [3029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(555), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), SHIFT(338), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 6), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [3139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(507), - [3142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, 0, 23), - [3144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 22), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [3150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(227), - [3153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1807), - [3156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1807), - [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [3169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(531), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [3196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(494), - [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), - [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), - [3203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2627), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [3214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(524), - [3217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(538), - [3220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(516), - [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), - [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [3235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), - [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1, 0, 0), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 3, 0, 0), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [3279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(562), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, -1, 6), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 0), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [3328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 8), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), - [3336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1830), - [3339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1830), - [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 47), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), - [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), - [3356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(569), - [3359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2784), - [3362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(842), - [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [3383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2717), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(483), - [3401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2726), - [3404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(803), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 2, 0, 0), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [3459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(551), - [3462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2781), - [3465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(837), - [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 70), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 6), - [3480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2782), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [3487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2597), - [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 45), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 16), - [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 37), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 39), - [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 95), - [3518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 95), - [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 96), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 97), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 53), - [3530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 53), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_pattern, 2, 0, 0), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 1), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 111), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [3572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(437), - [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), - [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 0), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_pattern, 1, 0, 0), - [3583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(587), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 0), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 27), - [3594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 27), - [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_except_clause_repeat1, 2, 0, 105), - [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3, 0, 0), - [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3, 0, 0), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2768), - [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 0), - [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 0), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 48), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 94), - [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [3635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 20), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 19), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 0), - [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 69), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 19), - [3653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(446), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), - [3660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(485), - [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_pattern, 3, 0, 0), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [3667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(852), - [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 73), - [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 73), - [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 74), - [3676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 74), - [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 75), - [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 75), - [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 27), - [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 27), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), - [3690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 52), - [3699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 52), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [3703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(432), - [3706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(229), - [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), - [3711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1998), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 18), - [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 49), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4, 0, 0), - [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 4, 0, 0), - [3750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 4, 0, 0), - [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 112), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_pattern, 2, 0, 0), - [3768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1552), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [3781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 123), - [3783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), - [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 0), - [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 125), - [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 4, 0, 0), - [3792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 13), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [3802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1558), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 5, 0, 0), - [3811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 5, 0, 0), - [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 123), - [3815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 125), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 5, 0, 0), - [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), - [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 3, 0, 0), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 1, 45), - [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 6, 0, 0), - [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 3, 0, 0), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 2, 0, 0), - [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 112), - [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 0), - [3851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 3, 0, 0), - [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 3, 0, 0), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 4), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 4), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 2, 0, 0), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [3885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(583), - [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 2, 0, 0), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 29), - [3912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 29), SHIFT_REPEAT(2316), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 15), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), - [3941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), SHIFT_REPEAT(1529), - [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), - [3966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2601), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), - [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 13), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 8), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 14), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), - [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_pattern, 3, 0, 0), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1528), - [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), - [4034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(2219), - [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 36), - [4045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 36), SHIFT_REPEAT(521), - [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [4062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 51), - [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 51), - [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 8), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [4074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1657), - [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [4099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 72), SHIFT_REPEAT(439), - [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 72), - [4111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(351), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(566), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [4157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 41), SHIFT_REPEAT(605), - [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 41), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 29), SHIFT_REPEAT(2479), - [4167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(350), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_pattern, 3, 0, 47), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 0), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [4242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1526), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_except_clause_repeat1, 2, 0, 107), SHIFT_REPEAT(570), - [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_except_clause_repeat1, 2, 0, 107), - [4294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 124), SHIFT_REPEAT(1550), - [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 124), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [4303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(497), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), - [4320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(461), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 30), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [4353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(469), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(625), + [116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2136), + [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1838), + [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(217), + [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(462), + [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(911), + [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(84), + [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(491), + [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(386), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(473), + [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(365), + [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2540), + [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2589), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2522), + [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(489), + [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(87), + [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(557), + [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(784), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(565), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2750), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(431), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2614), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2732), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2599), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(487), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(75), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2660), + [194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(190), + [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(525), + [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(898), + [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(187), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(477), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1641), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(359), + [215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1088), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1088), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(149), + [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1704), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(598), + [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(86), + [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(484), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(726), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(600), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2664), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(454), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2780), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2759), + [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), + [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(319), + [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), + [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(915), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 1), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), + [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2689), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(914), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(569), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(320), + [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(293), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(913), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(298), + [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(898), + [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(477), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(892), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), + [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 0), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 0), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 96), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 96), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 0), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 0), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 97), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 97), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 0), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 111), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 111), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 45), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 45), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 0), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 0), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 0), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 6), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 0), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 14), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, -1, 15), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 2, 0, 0), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 43), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 43), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 17), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 17), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 17), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 17), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 43), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 43), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 38), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 38), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 81), + [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 81), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 56), + [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 56), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 57), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 57), + [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(444), + [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(441), + [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), + [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 0), + [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), + [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), + [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(500), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), + [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(603), + [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), + [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), + [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), + [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 106), + [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 106), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 88), + [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 88), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), + [1654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), + [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), + [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), + [1665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), + [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), + [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 50), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 50), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 71), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 71), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 71), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 71), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 144), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 144), + [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 8, 0, 148), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 8, 0, 148), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 0), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 0), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 104), + [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 104), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 142), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 142), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 143), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 143), + [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 134), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 134), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 24), + [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 24), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 2), + [1734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 2), + [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 2), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 0), + [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 0), + [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 119), + [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 119), + [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 105), + [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 105), + [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 120), + [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 120), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 135), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 135), + [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 132), + [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 132), + [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 133), + [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 133), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), + [1771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), + [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 50), + [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 50), + [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 17), + [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 17), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 43), + [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 43), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 115), + [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 115), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 99), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 99), + [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 54), + [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 54), + [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 86), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 86), + [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 42), + [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 42), + [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 62), + [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 62), + [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 38), + [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 38), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 57), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 57), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 103), + [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 103), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 17), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 17), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 43), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 43), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 60), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 60), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 58), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 58), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 61), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 61), + [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2, 0, 0), + [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2, 0, 0), + [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 59), + [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 59), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 44), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 44), + [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 63), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 63), + [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 64), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 64), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 12), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 12), + [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 65), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 65), + [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 66), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 66), + [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 67), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 67), + [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 78), + [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 78), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 0), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 80), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 80), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, 0, 82), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, 0, 82), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 83), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 83), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 84), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 84), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 85), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 85), + [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 87), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 87), + [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 0), + [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 88), + [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 88), + [1951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 17), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 17), + [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 89), + [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 89), + [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 90), + [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 90), + [1963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 91), + [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 91), + [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 92), + [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 92), + [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 93), + [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 93), + [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 98), + [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 98), + [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 100), + [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 100), + [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 101), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 101), + [1987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 102), + [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 102), + [1991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 0), + [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 0), + [1995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 43), + [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 43), + [1999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 108), + [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 108), + [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 109), + [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 109), + [2007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 110), + [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 110), + [2011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 114), + [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 114), + [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 116), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 116), + [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 117), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 117), + [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 118), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 118), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 0), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 46), + [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 46), + [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1, 0, 0), + [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1, 0, 0), + [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 40), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 40), + [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 121), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 121), + [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 122), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 122), + [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 129), + [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 129), + [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 130), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 130), + [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 131), + [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 131), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 55), + [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 55), + [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 136), + [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 136), + [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 141), + [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 141), + [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 0), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1704), + [2428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1699), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 22), + [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 22), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), + [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), + [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 9), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), + [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [2475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1705), + [2478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1695), + [2481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1687), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [2488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1679), + [2491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1709), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [2504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1714), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 35), + [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 35), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 10), + [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 10), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 34), + [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 34), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 35), + [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 35), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 0), + [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 0), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), + [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 35), + [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 35), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), + [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 35), + [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 35), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 0), + [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 0), + [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), + [2563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), + [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 34), + [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 34), + [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), + [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 0), + [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 0), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 34), + [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 34), + [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 11), + [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 11), + [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), + [2817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(912), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), + [2822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(2755), + [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(863), + [2828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(912), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [2833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(903), + [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(859), + [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(903), + [2842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(948), + [2845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(857), + [2848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(948), + [2851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(871), + [2854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(858), + [2857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(871), + [2860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(921), + [2863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(864), + [2866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(921), + [2869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(882), + [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(862), + [2875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(882), + [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__not_in, 2, 0, 0), + [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__not_in, 2, 0, 0), + [2882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(953), + [2885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(860), + [2888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(953), + [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__is_not, 2, 0, 0), + [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__is_not, 2, 0, 0), + [2895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(877), + [2898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(861), + [2901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(877), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), + [2906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 0), + [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), + [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), + [2967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(854), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), + [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), + [3012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(492), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 6), + [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 18), + [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 49), + [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, 0, 23), + [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 22), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [3053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(225), + [3056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1798), + [3059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1798), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 6), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [3160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), SHIFT(340), + [3163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(513), + [3166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, 0, 23), + [3168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 22), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [3172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(537), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [3207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(504), + [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), + [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), + [3214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2757), + [3217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(521), + [3220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(530), + [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), + [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), + [3227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(544), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [3254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1789), + [3257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1789), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1, 0, 0), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, -1, 6), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 0), + [3314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(604), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 8), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 3, 0, 0), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 47), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 2, 0, 0), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), + [3403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(584), + [3406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2761), + [3409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(757), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [3414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(555), + [3417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2785), + [3420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(842), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), + [3427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2727), + [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 6), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [3436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2779), + [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 70), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [3453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(571), + [3456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2788), + [3459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(846), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [3494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2638), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), + [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_pattern, 2, 0, 0), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [3507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(479), + [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 0), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 0), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 19), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), + [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 27), + [3524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 27), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3, 0, 0), + [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3, 0, 0), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 52), + [3540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 52), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_except_clause_repeat1, 2, 0, 105), + [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 27), + [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 27), + [3548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2775), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 48), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 0), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 53), + [3565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 53), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 0), + [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 111), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), + [3585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(436), + [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), + [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_pattern, 3, 0, 0), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 69), + [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 19), + [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), + [3600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1558), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 37), + [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 39), + [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 73), + [3617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 73), + [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 74), + [3621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 74), + [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 75), + [3625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 75), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 45), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 96), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 97), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(408), + [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 1), + [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_pattern, 1, 0, 0), + [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 0), + [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 94), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 20), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(423), + [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 16), + [3701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(850), + [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 95), + [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 95), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), + [3714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(525), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [3721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_pattern, 2, 0, 0), + [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 2, 0, 0), + [3733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(551), + [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 13), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [3744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(229), + [3747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), + [3749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2015), + [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 2, 0, 0), + [3754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 49), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4, 0, 0), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1559), + [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 4, 0, 0), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 4, 0, 0), + [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 18), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 112), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [3797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1560), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 4), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 123), + [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 0), + [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 3, 0, 0), + [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 125), + [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 4, 0, 0), + [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 3, 0, 0), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [3826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 112), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [3834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 0), + [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 3, 0, 0), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [3842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 5, 0, 0), + [3844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 5, 0, 0), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 123), + [3850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 125), + [3852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 5, 0, 0), + [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), + [3856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 3, 0, 0), + [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 6, 0, 0), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 4), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 1, 45), + [3878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 2, 0, 0), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [3913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), SHIFT_REPEAT(1530), + [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), + [3918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 14), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), + [3988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2633), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 29), + [3997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 29), SHIFT_REPEAT(2332), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 15), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_pattern, 3, 0, 0), + [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), + [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), + [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 8), + [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 13), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), + [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), + [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), + [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), + [4036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1531), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [4043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), + [4045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(2217), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), + [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 36), + [4068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 36), SHIFT_REPEAT(499), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [4081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(332), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1529), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [4117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1657), + [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [4126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(353), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 72), SHIFT_REPEAT(412), + [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 72), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 51), + [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 51), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [4150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(567), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [4189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 29), SHIFT_REPEAT(2482), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [4200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 41), SHIFT_REPEAT(501), + [4203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 41), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(346), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 8), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), + [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_pattern, 3, 0, 47), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [4268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1528), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 0), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [4313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 124), SHIFT_REPEAT(1552), + [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 124), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [4322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_except_clause_repeat1, 2, 0, 107), SHIFT_REPEAT(559), + [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_except_clause_repeat1, 2, 0, 107), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [4353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(507), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(852), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), + [4371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(464), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [4398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 30), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [4412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(469), [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [4449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1655), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [4462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(148), - [4465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(361), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(848), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [4513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(242), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), SHIFT_REPEAT(399), - [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), - [4545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(847), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [4550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(573), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [4555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(330), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [4562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), - [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), - [4566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 126), - [4568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), - [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 127), - [4572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 128), - [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, 0, 54), - [4576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 34), - [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [4580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 3), - [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [4586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 112), - [4602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 31), - [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [4606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), - [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 76), - [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 32), - [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [4624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 137), - [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 77), - [4628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 138), - [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 139), - [4636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 140), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), - [4644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 33), - [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 145), - [4652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 146), - [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 147), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, 0, 149), - [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [4686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 68), - [4688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 21), - [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [4694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 22), - [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [4700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), - [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 113), - [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [4712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 34), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [4890] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [4992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 0), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [5038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [4477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1659), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [4500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(148), + [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [4511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(349), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [4524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(234), + [4527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(853), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [4548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(851), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(576), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), SHIFT_REPEAT(401), + [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), + [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 126), + [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), + [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 127), + [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 128), + [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 34), + [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 31), + [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 137), + [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 138), + [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 139), + [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 140), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [4649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 34), + [4661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), + [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 76), + [4665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 77), + [4667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 32), + [4669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lazy_import_statement, 2, 0, 0), + [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 33), + [4673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 145), + [4675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 112), + [4677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 146), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [4699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 147), + [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, 0, 149), + [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [4709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 68), + [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [4715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, 0, 54), + [4717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 21), + [4719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 22), + [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [4727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), + [4729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 113), + [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 3), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [4795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [4827] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 0), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), }; enum ts_external_scanner_symbol_identifiers { @@ -129886,30 +131151,30 @@ static const bool ts_external_scanner_states[19][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_comment] = true, }, [10] = { - [ts_external_token__dedent] = true, [ts_external_token_string_start] = true, [ts_external_token_comment] = true, [ts_external_token_except] = true, }, [11] = { + [ts_external_token__dedent] = true, [ts_external_token_string_start] = true, [ts_external_token_comment] = true, [ts_external_token_except] = true, }, [12] = { [ts_external_token_comment] = true, - [ts_external_token_RBRACK] = true, + [ts_external_token_RBRACE] = true, }, [13] = { [ts_external_token_comment] = true, - [ts_external_token_RBRACE] = true, + [ts_external_token_RBRACK] = true, }, [14] = { [ts_external_token_comment] = true, - [ts_external_token_RPAREN] = true, }, [15] = { [ts_external_token_comment] = true, + [ts_external_token_RPAREN] = true, }, [16] = { [ts_external_token__string_content] = true, diff --git a/test/corpus/statements.txt b/test/corpus/statements.txt index 77578942..a90e02db 100644 --- a/test/corpus/statements.txt +++ b/test/corpus/statements.txt @@ -116,6 +116,44 @@ from __future__ import (absolute_import, division, print_function, (dotted_name (identifier)))) +================================================================================ +Lazy import statements +================================================================================ + +lazy import json +lazy import numpy as np +lazy from pathlib import Path +lazy from os.path import join, exists +lazy = True +x = lazy + +-------------------------------------------------------------------------------- + +(module + (lazy_import_statement + (import_statement + (dotted_name (identifier)))) + (lazy_import_statement + (import_statement + (aliased_import + (dotted_name (identifier)) + (identifier)))) + (lazy_import_statement + (import_from_statement + (dotted_name (identifier)) + (dotted_name (identifier)))) + (lazy_import_statement + (import_from_statement + (dotted_name (identifier) (identifier)) + (dotted_name (identifier)) + (dotted_name (identifier)))) + (assignment + (identifier) + (true)) + (assignment + (identifier) + (identifier))) + ================================================================================ Print statements ================================================================================